12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- return [
- [
- "id" => \App\Model\RoleMenuButton::special_one,
- "title" => "分社价格",
- "sort" => -1,
- "func" => "special_show_branch_price",
- "menu_id" => 17,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_two,
- "title" => "成本",
- "sort" => -2,
- "func" => "special_show_cost",
- "menu_id" => 17,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_three,
- "title" => "分配/调配",
- "sort" => -3,
- "func" => "special_allocation",
- "menu_id" => 34,
- "is_button" => 1,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_four,
- "title" => "完结",
- "sort" => -4,
- "func" => "special_finish_construction",
- "menu_id" => 34,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_five,
- "title" => "待确认",
- "sort" => -5,
- "func" => "special_sure_construction",
- "menu_id" => 34,
- ],
- // [
- // "id" => \App\Model\RoleMenuButton::special_six,
- // "title" => "其它费用",
- // "sort" => -6,
- // "func" => "special_purchase_other_fee",
- // "menu_id" => 45,
- // ],
- // [
- // "id" => \App\Model\RoleMenuButton::special_seven,
- // "title" => "优惠金额",
- // "sort" => -7,
- // "func" => "special_purchase_discount_fee",
- // "menu_id" => 45,
- // ],
- [
- "id" => \App\Model\RoleMenuButton::special_eight,
- "title" => "仓库出库权限",
- "sort" => -8,
- "func" => "special_operation_out",
- "menu_id" => 37,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_eight,
- "title" => "仓库出库权限",
- "sort" => -8,
- "func" => "special_operation_out",
- "menu_id" => 43,
- ],
- [
- "id" => \App\Model\RoleMenuButton::special_nine,
- "title" => "客户来源可见设置",
- "sort" => -9,
- "func" => "special_show_customer_from",
- "menu_id" => 16,
- ],
- ];
|