diff --git a/Changelog.md b/Changelog.md index dc6e89b1..41c6fb56 100644 --- a/Changelog.md +++ b/Changelog.md @@ -13,4 +13,13 @@ 4.修复首页待办事项不显示 5.修复菜单badge不显示 6.删除废弃的工作流程模块 -本版本更新了个别sql需要重新导入 \ No newline at end of file +本版本更新了个别sql需要重新导入 + +2021-06-18 开源测试版 2.3.4发布 +修正 +1.角色权限设置错乱 +2.区域销售品类表无数据判断报错 +新增 +1.单据权限设置子表是否必填选项 + +本版本sql文件导入可选,没有不兼容修改 \ No newline at end of file diff --git a/README.md b/README.md index 9a35cab2..225a4ec9 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ QQ交流群: 79446405

## 安装 -1. 推荐使用宝塔面板,安装nginx 1.18.x、php-8.x(需要扩展:fileinfo)、mysql-8.x(mariaDB 10.4.x),如果你使用win请自行安装相关环境 +1. 推荐使用宝塔面板,安装nginx 1.18.x、php-8.x(需要扩展:fileinfo)、mysql-8.x(mariaDB 10.4.x),如果你使用win请自行安装相关环境,修改php参数max_input_vars = 100000 (避免变量部分丢失) 2. 创建网站和数据库, 数据库字符utf8mb4, 在网站目录中设置PHP命令行版本为php-80 3. 下载gdoo: https://gitee.com/hawind/gdoo 上传至宝塔网站根目录并解压 4. 打开Xshell并登录, 执行 composer -v 查看composer版本, 执行 composer self-update 升级composer至最新版本 diff --git a/app/Gdoo/Index/Controllers/Controller.php b/app/Gdoo/Index/Controllers/Controller.php index 4850ef72..3fc2a323 100644 --- a/app/Gdoo/Index/Controllers/Controller.php +++ b/app/Gdoo/Index/Controllers/Controller.php @@ -15,7 +15,7 @@ class Controller extends BaseController /** * @var 程序版本 */ - public $version = '2.3.3'; + public $version = '2.3.4'; /** * @var 配置参数 diff --git a/app/Gdoo/Model/Form.php b/app/Gdoo/Model/Form.php index 6f02a251..03191fd4 100644 --- a/app/Gdoo/Model/Form.php +++ b/app/Gdoo/Model/Form.php @@ -1472,12 +1472,16 @@ class Form $tabContent .= ''; } + // 保存时数据不能为空 + $saveDataNotEmpty = in_array('required', (array)$permission_option['v']); + $_options = [ 'columns' => $columns, 'data' => $rows, 'links' => $links, 'table' => $model['table'], 'title' => $model['name'], + 'saveDataNotEmpty' => $saveDataNotEmpty, ]; $js = 'gdoo.forms["'.$model['table'].'"] = gridForms("' . $table . '","' . $model['table'] . '", ' . json_encode($_options, JSON_UNESCAPED_UNICODE) . ');'; @@ -1718,7 +1722,20 @@ class Form $field = $fields[$key]; $_rules = (array)$row['v']; if ($_rules) { - $t = $model['type'] == 1 ? $table . '.rows.*.' . $key : $table . '.' . $key; + + $field_name = $fields[$key]['name']; + + if ($model['type'] == 1) { + if ($key == '@option') { + $t = $table . '.rows'; + $field_name = $model->name; + } else { + $t = $table . '.rows.*.' . $key; + } + } else { + $t = $table . '.' . $key; + } + $data_type = $field['data_type']; $data_field = $field['data_field']; $data_link = $field['data_link']; @@ -1740,7 +1757,7 @@ class Form } } $rules[$t] = join('|', $_rules); - $attributes[$t] = $fields[$key]['name']; + $attributes[$t] = $field_name; } } } diff --git a/app/Gdoo/Model/views/permission/create.blade.php b/app/Gdoo/Model/views/permission/create.blade.php index 2d69d44f..21672271 100644 --- a/app/Gdoo/Model/views/permission/create.blade.php +++ b/app/Gdoo/Model/views/permission/create.blade.php @@ -80,12 +80,10 @@ {{$submodel->table}}@option + + - - - - - diff --git a/app/Gdoo/Order/views/order/create.blade.php b/app/Gdoo/Order/views/order/create.blade.php index f4f630aa..e8e2c592 100644 --- a/app/Gdoo/Order/views/order/create.blade.php +++ b/app/Gdoo/Order/views/order/create.blade.php @@ -125,6 +125,8 @@ var form_action = '{{$action}}'; query.customer_id = customer_id; }, onSelect(row, selected) { + row.is_gift_name = '否'; + row.is_gift = 0; if (row.product_code == '99001') { row.type_id_name = '费用'; row.type_id = 5; @@ -270,6 +272,8 @@ var form_action = '{{$action}}'; var rows = $ref_promotion_data.api.getSelectedRows(); for (let i = 0; i < rows.length; i++) { var row = rows[i]; + row.is_gift_name = '是'; + row.is_gift = 1; row.quantity = row.wsy_num; row.delivery_quantity = row.quantity; row.total_weight = row.quantity * row.weight; diff --git a/app/Gdoo/Order/views/report/city.blade.php b/app/Gdoo/Order/views/report/city.blade.php index 29154a07..f0d4dd53 100644 --- a/app/Gdoo/Order/views/report/city.blade.php +++ b/app/Gdoo/Order/views/report/city.blade.php @@ -21,7 +21,7 @@ -@if(count($categorys)) +@if($categorys) @foreach($categorys as $k => $v) @if($v['parent_id'] == 226) {{$v['name']}} @@ -39,7 +39,7 @@ --> -@if(count($now_year_single['money'])) +@if($now_year_single['money']) @foreach($now_year_single['money'] as $key => $value) @@ -50,7 +50,7 @@ 销售金额(元) -@if(count($categorys)) +@if($categorys) @foreach($categorys as $k => $v) @if($v['parent_id'] == 226) @@ -96,7 +96,7 @@ 去年同期增长率 -@if(count($categorys)) +@if($categorys) @foreach($categorys as $category_id => $category) @if($category['parent_id'] == 226) @@ -133,7 +133,7 @@ 占区域该品类百分比 - @if(count($categorys)) + @if($categorys) @foreach($categorys as $k => $v) @if($v['parent_id'] == 226) diff --git a/app/Gdoo/Order/views/report/single.blade.php b/app/Gdoo/Order/views/report/single.blade.php index f43e41a7..828a7588 100644 --- a/app/Gdoo/Order/views/report/single.blade.php +++ b/app/Gdoo/Order/views/report/single.blade.php @@ -24,7 +24,7 @@  年份 - + diff --git a/app/Gdoo/User/Controllers/RoleController.php b/app/Gdoo/User/Controllers/RoleController.php index 94d3c8ce..bec4df9c 100644 --- a/app/Gdoo/User/Controllers/RoleController.php +++ b/app/Gdoo/User/Controllers/RoleController.php @@ -117,13 +117,6 @@ class RoleController extends DefaultController $rules = json_decode($assets[$asset]['rules'], true); - // 清除旧权限 - foreach ((array)$rules as $key => $rule) { - if (empty($controllers[$key])) { - unset($rules[$key]); - } - } - foreach ($controllers as $key => $actions) { unset($rules[$key][$id]); if ($actions['action']) { diff --git a/app/Gdoo/User/views/role/config.blade.php b/app/Gdoo/User/views/role/config.blade.php index 644485e7..be0b54ae 100644 --- a/app/Gdoo/User/views/role/config.blade.php +++ b/app/Gdoo/User/views/role/config.blade.php @@ -110,6 +110,7 @@ {{'';$selected = $assets[$menuKey][$groupKey.'.'.$childKey]}} diff --git a/database/gdoo-2.3.3.sql b/database/gdoo-2.3.4.sql similarity index 96% rename from database/gdoo-2.3.3.sql rename to database/gdoo-2.3.4.sql index d9910012..a5a384a8 100644 --- a/database/gdoo-2.3.3.sql +++ b/database/gdoo-2.3.4.sql @@ -11,7 +11,7 @@ Target Server Version : 100508 File Encoding : 65001 - Date: 08/06/2021 18:22:09 + Date: 18/06/2021 17:27:53 */ SET NAMES utf8mb4; @@ -420,7 +420,7 @@ CREATE TABLE `calendar` ( PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `idx_calendar_principaluri_uri`(`principaluri`, `uri`) USING BTREE, INDEX `idx_calendar_userid`(`userid`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of calendar @@ -428,6 +428,8 @@ CREATE TABLE `calendar` ( INSERT INTO `calendar` VALUES (1, 1, 'principals/1', '默认日历', '7a16a8e44b', 1, NULL, 0, '#0066FF', NULL, 1, 'VEVENT,VTODO,VJOURNAL', NULL); INSERT INTO `calendar` VALUES (2, 1, 'principals/1', '代办工作', 'e593aca02d', 1, NULL, 0, '#6633FF', NULL, 1, 'VEVENT,VTODO,VJOURNAL', NULL); INSERT INTO `calendar` VALUES (3, 6, 'principals/6', '默认日历', '0987c13489', 1, NULL, 0, NULL, NULL, 1, 'VEVENT,VTODO,VJOURNAL', NULL); +INSERT INTO `calendar` VALUES (4, 4, 'principals/4', '默认日历', '5c1ff54ef5', 1, NULL, 0, NULL, NULL, 1, 'VEVENT,VTODO,VJOURNAL', NULL); +INSERT INTO `calendar` VALUES (5, 3, 'principals/3', '默认日历', '66996f3366', 1, NULL, 0, NULL, NULL, 1, 'VEVENT,VTODO,VJOURNAL', NULL); -- ---------------------------- -- Table structure for calendar_object @@ -1478,7 +1480,7 @@ CREATE TABLE `customer_order` ( INDEX `idx_customer_order_status`(`status`) USING BTREE, INDEX `idx_customer_order_tax_id`(`tax_id`) USING BTREE, INDEX `idx_customer_order_freight_short_logistics_id`(`freight_short_logistics_id`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 1007 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB AUTO_INCREMENT = 1008 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of customer_order @@ -1488,6 +1490,7 @@ INSERT INTO `customer_order` VALUES (2, 1, 2, 'XSDD202009170001', NULL, '系统 INSERT INTO `customer_order` VALUES (1004, 1, 0, 'XSDD202010120003', NULL, '系统管理员', 1617200697, 1613142720, '系统管理员', NULL, 2, 2, 1, 1, '777', '12345678901', '028381564', '眉山', '辉丰股份', '12121515465', NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL); INSERT INTO `customer_order` VALUES (1005, 1, 2, 'XSDD202103150001', NULL, '系统管理员', 1616013229, 1615757880, '系统管理员', NULL, 1, 1, 1, 1, '66666', '15182223008', '11', '111', '111', '15182223008', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `customer_order` VALUES (1006, 1, 1, 'XSDD202104120001', NULL, '系统管理员', 1618165138, 1618164180, '系统管理员', NULL, 1, 1, 1, 1, '111', '15182223008', '11', '111', '11', '1', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `customer_order` VALUES (1007, 1, 0, 'XSDD202106180001', NULL, '系统管理员', 1623953769, 1623953580, '系统管理员', '212', 1, 1, 1, 1, '111', '15182223008', '11', '111', '11', '15182223008', NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -- ---------------------------- -- Table structure for customer_order_data @@ -1541,7 +1544,7 @@ CREATE TABLE `customer_order_data` ( INDEX `idx_customer_order_data_ref_sale_id`(`ref_sale_id`) USING BTREE, INDEX `idx_customer_order_data_ref_sale_data_id`(`ref_sale_data_id`) USING BTREE, INDEX `idx_customer_order_data_fee_category_id`(`fee_category_id`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 1012 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB AUTO_INCREMENT = 1013 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of customer_order_data @@ -4061,7 +4064,7 @@ INSERT INTO `model_permission` VALUES (27, '新建', 'create,edit', '{\"warehous INSERT INTO `model_permission` VALUES (28, '新建', 'create,edit', '{\"product_category\":{\"name\":{\"w\":\"1\",\"v\":[\"required\"]},\"code\":{\"w\":\"1\"},\"parent_id\":{\"w\":\"1\"},\"sort\":{\"w\":\"1\"},\"status\":{\"w\":\"1\"}}}', 0, 1, 'all', '全体人员', 0, 1, NULL, '', 0, 1576165753, 36); INSERT INTO `model_permission` VALUES (29, '新建', 'create', '{\"customer\":{\"code\":{\"w\":\"1\",\"v\":[\"required\",\"unique\"]},\"name\":{\"w\":\"1\",\"v\":[\"required\"]},\"password\":{\"w\":\"1\"},\"region3_id\":{\"w\":\"1\"},\"region2_id\":{\"w\":\"1\"},\"region_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"contact_id\":{\"w\":\"1\"},\"head_name\":{\"w\":\"1\"},\"head_phone\":{\"w\":\"1\"},\"head_birthday\":{\"w\":\"1\"},\"manage_name\":{\"w\":\"1\"},\"manage_phone\":{\"w\":\"1\"},\"manage_weixin\":{\"w\":\"1\"},\"finance_name\":{\"w\":\"1\"},\"finance_phone\":{\"w\":\"1\"},\"cost_name\":{\"w\":\"1\"},\"cost_phone\":{\"w\":\"1\"},\"attachment\":{\"w\":\"1\"},\"tel\":{\"w\":\"1\"},\"fax\":{\"w\":\"1\"},\"email\":{\"w\":\"1\"},\"address\":{\"w\":\"1\"},\"warehouse_address\":{\"w\":\"1\"},\"warehouse_contact\":{\"w\":\"1\"},\"warehouse_phone\":{\"w\":\"1\"},\"warehouse_tel\":{\"w\":\"1\"},\"warehouse_size\":{\"w\":\"1\"},\"region\":{\"w\":\"1\"},\"province_id\":{\"w\":\"1\"},\"city_id\":{\"w\":\"1\"},\"county_id\":{\"w\":\"1\"},\"class2_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"type_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"grade_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"is_allocate\":{\"w\":\"1\"},\"is_direct\":{\"w\":\"1\"},\"general_taxpayer\":{\"w\":\"1\"},\"class_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"department_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"remark\":{\"w\":\"1\"},\"status\":{\"w\":\"1\",\"v\":[\"required\"]}}}', 0, 1, 'all', '全体人员', 0, 1, NULL, '系统管理员', 0, 1620467015, 27); INSERT INTO `model_permission` VALUES (30, '新建', 'create,edit', '{\"customer_contact\":{\"code\":{\"w\":\"1\",\"v\":[\"required\"]},\"name\":{\"w\":\"1\",\"v\":[\"required\"]},\"customer_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"password\":{\"w\":\"1\"},\"phone\":{\"w\":\"1\",\"v\":[\"required\"]},\"birthday\":{\"w\":\"1\"},\"position\":{\"w\":\"1\"},\"address\":{\"w\":\"1\"},\"remark\":{\"w\":\"1\"}}}', 0, 1, 'all', '全体人员', 0, 1, NULL, '系统管理员', 0, 1592674110, 39); -INSERT INTO `model_permission` VALUES (31, '新建', 'create', '{\"customer_order\":{\"sn\":{\"w\":\"1\",\"v\":[\"required\"],\"m\":\"1\"},\"created_at\":{\"w\":\"1\",\"v\":[\"required\"],\"m\":\"1\"},\"customer_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"warehouse_contact\":{\"w\":\"1\",\"v\":[\"required\"]},\"warehouse_phone\":{\"w\":\"1\",\"v\":[\"required\",\"regex:\\/^(1)[0-9]{10}$\\/\"]},\"warehouse_tel\":{\"w\":\"1\",\"v\":[\"required\"]},\"warehouse_address\":{\"w\":\"1\",\"v\":[\"required\"]},\"found_contact\":{\"w\":\"1\",\"v\":[\"required\"]},\"found_phone\":{\"w\":\"1\",\"v\":[\"required\"]},\"type_id\":{\"v\":[\"required\"]},\"export_country\":{\"w\":\"1\"},\"plan_delivery_dt\":{\"w\":\"1\"},\"pay_dt\":{\"w\":\"1\"},\"tax_type\":{\"w\":\"1\",\"v\":[\"required\"]},\"tax_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"attachment\":{\"w\":\"1\"},\"created_by\":{\"w\":\"1\",\"v\":[\"required\"],\"m\":\"1\"},\"remark\":{\"w\":\"1\"}},\"customer_order_data\":{\"@option\":{\"w\":\"1\",\"d\":\"1\"},\"type_id\":{\"w\":\"1\"},\"is_gift\":{\"w\":\"1\"},\"product_name\":{\"w\":\"1\"},\"quantity\":{\"w\":\"1\",\"v\":[\"required\",\"numeric_than:0\"]},\"delivery_quantity\":{\"w\":\"1\",\"v\":[\"required\",\"numeric_than:0\"]},\"price\":{\"w\":\"1\"},\"money\":{\"w\":\"1\"},\"batch_sn\":{\"w\":\"1\"},\"customer_stock\":{\"w\":\"1\"},\"customer_stock_dt\":{\"w\":\"1\"},\"remark\":{\"w\":\"1\"}}}', 0, 1, 'all', '全体人员', 0, 1, NULL, '系统管理员', 0, 1615758267, 23); +INSERT INTO `model_permission` VALUES (31, '新建', 'create', '{\"customer_order\":{\"sn\":{\"w\":\"1\",\"v\":[\"required\"],\"m\":\"1\"},\"created_at\":{\"w\":\"1\",\"v\":[\"required\"],\"m\":\"1\"},\"customer_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"warehouse_contact\":{\"w\":\"1\",\"v\":[\"required\"]},\"warehouse_phone\":{\"w\":\"1\",\"v\":[\"required\",\"regex:\\/^(1)[0-9]{10}$\\/\"]},\"warehouse_tel\":{\"w\":\"1\",\"v\":[\"required\"]},\"warehouse_address\":{\"w\":\"1\",\"v\":[\"required\"]},\"found_contact\":{\"w\":\"1\",\"v\":[\"required\"]},\"found_phone\":{\"w\":\"1\",\"v\":[\"required\"]},\"type_id\":{\"v\":[\"required\"]},\"export_country\":{\"w\":\"1\"},\"plan_delivery_dt\":{\"w\":\"1\"},\"pay_dt\":{\"w\":\"1\"},\"tax_type\":{\"w\":\"1\",\"v\":[\"required\"]},\"tax_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"attachment\":{\"w\":\"1\"},\"created_by\":{\"w\":\"1\",\"v\":[\"required\"],\"m\":\"1\"},\"remark\":{\"w\":\"1\"}},\"customer_order_data\":{\"@option\":{\"w\":\"1\",\"d\":\"1\"},\"type_id\":{\"w\":\"1\"},\"is_gift\":{\"w\":\"1\"},\"product_name\":{\"w\":\"1\"},\"quantity\":{\"w\":\"1\",\"v\":[\"required\",\"numeric_than:0\"]},\"delivery_quantity\":{\"w\":\"1\",\"v\":[\"required\",\"numeric_than:0\"]},\"price\":{\"w\":\"1\"},\"money\":{\"w\":\"1\"},\"batch_sn\":{\"w\":\"1\"},\"customer_stock\":{\"w\":\"1\"},\"customer_stock_dt\":{\"w\":\"1\"},\"remark\":{\"w\":\"1\"}}}', 0, 1, 'all', '全体人员', 0, 1, NULL, '系统管理员', 0, 1623953737, 23); INSERT INTO `model_permission` VALUES (32, '新建', 'create,edit', '{\"department\":{\"name\":{\"w\":\"1\",\"v\":[\"required\"]},\"code\":{\"w\":\"1\"},\"parent_id\":{\"w\":\"1\"},\"manager\":{\"w\":\"1\"},\"sort\":{\"w\":\"1\"},\"remark\":{\"w\":\"1\"}}}', 0, 1, 'all', '全体人员', 0, 1, NULL, '系统管理员', 0, 1591608927, 31); INSERT INTO `model_permission` VALUES (33, '新建', 'create,edit', '{\"role\":{\"name\":{\"w\":\"1\",\"v\":[\"required\"]},\"code\":{\"w\":\"1\"},\"parent_id\":{\"w\":\"1\"},\"access\":{\"w\":\"1\",\"v\":[\"required\"]},\"sort\":{\"w\":\"1\"},\"remark\":{\"w\":\"1\"}}}', 0, 1, 'all', '全体人员', 0, 1, NULL, '系统管理员', 0, 1614412844, 32); INSERT INTO `model_permission` VALUES (34, '新建', 'create,edit', '{\"product\":{\"images\":{\"w\":\"1\"},\"name\":{\"w\":\"1\",\"v\":[\"required\"]},\"spec\":{\"w\":\"1\"},\"code\":{\"w\":\"1\"},\"barcode\":{\"w\":\"1\"},\"category_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"unit_id\":{\"w\":\"1\",\"v\":[\"required\"]},\"net_weight\":{\"w\":\"1\"},\"weight\":{\"w\":\"1\",\"v\":[\"required\"]},\"price1\":{\"w\":\"1\"},\"price2\":{\"w\":\"1\"},\"price5\":{\"w\":\"1\"},\"price3\":{\"w\":\"1\"},\"price4\":{\"w\":\"1\"},\"scale_quantity\":{\"w\":\"1\"},\"mini_quantity\":{\"w\":\"1\"},\"department_id\":{\"w\":\"1\"},\"is_produce_plan\":{\"w\":\"1\"},\"is_export\":{\"w\":\"1\"},\"is_purchase\":{\"w\":\"1\"},\"purchase_price\":{\"w\":\"1\"},\"purchase_tax_rate\":{\"w\":\"1\"},\"is_sale\":{\"w\":\"1\"},\"is_freight\":{\"w\":\"1\"},\"carton_barcode\":{\"w\":\"1\"},\"carton_size\":{\"w\":\"1\"},\"min_quantity\":{\"w\":\"1\"},\"freight_price\":{\"w\":\"1\"},\"product_type\":{\"w\":\"1\"},\"material_type\":{\"w\":\"1\"},\"remark\":{\"w\":\"1\"},\"sort\":{\"w\":\"1\"},\"status\":{\"w\":\"1\"}}}', 0, 1, 'all', '全体人员', 0, 1, NULL, '系统管理员', 0, 1614446102, 26); @@ -4344,6 +4347,7 @@ INSERT INTO `model_seq_no` VALUES (23, '20200917', 1); INSERT INTO `model_seq_no` VALUES (23, '20201012', 3); INSERT INTO `model_seq_no` VALUES (23, '20210315', 1); INSERT INTO `model_seq_no` VALUES (23, '20210412', 1); +INSERT INTO `model_seq_no` VALUES (23, '20210618', 1); INSERT INTO `model_seq_no` VALUES (43, '20201023', 1); INSERT INTO `model_seq_no` VALUES (43, '20210301', 1); INSERT INTO `model_seq_no` VALUES (43, '20210526', 3); @@ -6068,9 +6072,9 @@ CREATE TABLE `project` ( -- ---------------------------- -- Records of project -- ---------------------------- -INSERT INTO `project` VALUES (19, 1, '演示项目流程甘特图', '豆瓣酱系列新品计划', 255, 1, 1601683538, '系统管理员', '278', 0, 1530951979, 1, 1); -INSERT INTO `project` VALUES (23, 4, '好机会', '订单分成', NULL, 1, 1616255445, '系统管理员', '系统管理员', 0, 1602515099, 1, 1); -INSERT INTO `project` VALUES (24, 1, '新项目测试', '新项目测试', NULL, 1, NULL, NULL, '系统管理员', 0, 1616270653, 1, NULL); +INSERT INTO `project` VALUES (19, 1, '演示项目流程甘特图', '豆瓣酱系列新品计划', 255, 1, 1623610503, '系统管理员', '278', 0, 1530951979, 1, 1); +INSERT INTO `project` VALUES (23, 3, '好机会', '订单分成', NULL, 1, 1623573986, '系统管理员', '系统管理员', 1, 1602515099, 1, 1); +INSERT INTO `project` VALUES (24, 1, '新项目测试', '新项目测试', NULL, 1, 1623574011, '系统管理员', '系统管理员', 1, 1616270653, 1, 1); -- ---------------------------- -- Table structure for project_task @@ -6084,53 +6088,59 @@ CREATE TABLE `project_task` ( `type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL, `progress` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '百分比', `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', - `start_at` int(11) NULL DEFAULT NULL COMMENT '结束时间', - `end_at` int(11) NULL DEFAULT NULL COMMENT '开始时间', + `start_at` int(10) NULL DEFAULT NULL COMMENT '结束时间', + `end_at` int(10) NULL DEFAULT NULL COMMENT '开始时间', `attachment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '附件', `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '运营经理审批(意见)', `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '运营经理审批(时间)', `status` tinyint(4) NULL DEFAULT NULL COMMENT '订单状态', + `sort` smallint(6) NULL DEFAULT NULL, `created_at` int(11) NULL DEFAULT NULL COMMENT '新建时间', `updated_at` int(11) NULL DEFAULT NULL COMMENT '更新时间', `updated_by` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '更新账户编号', `created_by` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '新建用户编号', - `sort` smallint(6) NULL DEFAULT NULL, `updated_id` int(11) NULL DEFAULT NULL COMMENT '更新账户编号', `created_id` int(11) NULL DEFAULT NULL COMMENT '新建用户编号', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_project_task_user_id`(`user_id`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 294 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB AUTO_INCREMENT = 304 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of project_task -- ---------------------------- -INSERT INTO `project_task` VALUES (221, 19, 0, 0, 'item', '0', '', 0, 0, '', '1.产品计划', '', 0, 1530951995, 1616270411, '系统管理员', '278', 0, 1, NULL); -INSERT INTO `project_task` VALUES (222, 19, 221, 1, 'task', '1', '', 1532448000, 1532534400, '19,21', '1.1产品品名计划', '', 0, 1530952028, 1616272549, '系统管理员', '278', 0, 1, NULL); -INSERT INTO `project_task` VALUES (223, 19, 0, 0, 'item', '', '', 0, 0, '', '2.包装计划', '', 0, 1530952044, 1533095884, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (224, 19, 0, 0, 'item', '', '', 0, 0, '', '3.生产计划', '', 0, 1530952085, 1533095934, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (225, 19, 0, 0, 'item', '0', '', 0, 0, '', '销售计划', '', 0, 1530952095, 0, '0', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (226, 19, 223, 278, 'task', '1', '7月23日完成', 1532308860, 1532361600, '', '2.1包装样板设计【袋子】', '', 0, 1530952159, 1533095893, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (227, 19, 223, 5672, 'task', '1', '', 1532308860, 1532361600, '', '2.2包装样板确认', '', 0, 1530952205, 1544472565, '1', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (228, 19, 221, 1387, 'task', '1', '', 1532448000, 1532534400, '', '1.2产品品名确认', '', 0, 1530952253, 1533095858, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (229, 19, 223, 278, 'task', '', '', 1532448000, 1532966400, '', '2.3系列包装设计', '', 0, 1530952290, 1533095911, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (230, 19, 221, 1, 'task', NULL, '乳房sea', 1532534400, 1532966400, '3427', '1.3产品配方', '', 0, 1597331713, 1603465290, '系统管理员', '278', 0, 1, NULL); -INSERT INTO `project_task` VALUES (231, 19, 223, 1387, 'task', '', '', 1533052800, 1533225600, '', '2.4系列包装确认', '', 0, 1530952385, 1533095916, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (232, 19, 225, 278, 'task', '0', '', 1532620800, 1532707200, '', '内部销售操作方案及公告', '', 0, 1530952430, 1532308401, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (233, 19, 225, 299, 'task', '', '', 1532707200, 1532793600, '', '销售商经销商公告及系统建立', '', 0, 1530952471, 1532308405, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (234, 19, 224, 1153, 'task', '', '', 1532966400, 1533225600, '', '1.确定供应商及价格', '', 0, 1530952502, 1533095939, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (235, 19, 224, 1016, 'task', '0', '', 1533225600, 1533312000, '', '向包装供应商订单', '', 0, 1530952562, 1532308386, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (236, 19, 224, 940, 'task', '0', '', 1533312000, 1533657600, '', '生产试样生产', '', 0, 1530952592, 1532308392, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (237, 19, 224, 1016, 'task', NULL, '', 1532275200, 1533657600, '', '供应商交付包装物', '', 0, 1530952713, 1601682207, '系统管理员', '278', 0, 1, NULL); -INSERT INTO `project_task` VALUES (238, 19, 224, 940, 'task', '0', '', 1533398400, 1533484800, '', '首批订单生产', '', 0, 1530952768, 1530952776, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (239, 19, 225, 834, 'task', '0', '', 1533484800, 1533571200, '', '经销商下订单', '', 0, 1530952802, 1532308410, '278', '278', 0, NULL, NULL); -INSERT INTO `project_task` VALUES (285, 23, 0, 0, 'item', NULL, '2212', 0, 0, NULL, '12', NULL, NULL, 1614208442, NULL, NULL, '系统管理员', NULL, NULL, 1); -INSERT INTO `project_task` VALUES (286, 23, 285, 1, 'task', '0', '212', 1614355200, 1614441600, NULL, '发生大幅杀跌', NULL, NULL, 1614208453, 1616252346, '系统管理员', '系统管理员', NULL, 1, 1); -INSERT INTO `project_task` VALUES (287, 23, 285, 3, 'task', '0', '没有', 1614208440, 1614441600, '17', '测试任务', NULL, NULL, 1614208493, 1616255431, '系统管理员', '系统管理员', NULL, 1, 1); -INSERT INTO `project_task` VALUES (288, 23, 287, 1, 'subtask', '1', '212', 1616252340, 1615305600, NULL, 'hahah', NULL, NULL, 1616252409, 1616271378, '系统管理员', '系统管理员', NULL, 1, 1); -INSERT INTO `project_task` VALUES (290, 24, 0, 0, 'item', '0', NULL, 0, 0, NULL, '需求', NULL, NULL, 1616271432, 1616271446, '系统管理员', '系统管理员', NULL, 1, 1); -INSERT INTO `project_task` VALUES (291, 24, 0, 0, 'item', NULL, NULL, 0, 0, NULL, '合同', NULL, NULL, 1616271449, NULL, NULL, '系统管理员', NULL, NULL, 1); -INSERT INTO `project_task` VALUES (292, 24, 0, 0, 'item', NULL, NULL, 0, 0, NULL, '测试', NULL, NULL, 1616271455, NULL, NULL, '系统管理员', NULL, NULL, 1); -INSERT INTO `project_task` VALUES (293, 24, 0, 0, 'item', NULL, NULL, 0, 0, NULL, '完成', NULL, NULL, 1616271460, NULL, NULL, '系统管理员', NULL, NULL, 1); +INSERT INTO `project_task` VALUES (221, 19, 0, 0, 'item', '0', '', 0, 0, '', '1.产品计划', '', 0, 0, 1530951995, 1616270411, '系统管理员', '278', 1, NULL); +INSERT INTO `project_task` VALUES (222, 19, 221, 1, 'task', '1', '', 1532448000, 1532534400, '19,21', '1.1产品品名计划', '', 0, 0, 1530952028, 1616272549, '系统管理员', '278', 1, NULL); +INSERT INTO `project_task` VALUES (223, 19, 0, 0, 'item', '', '', 0, 0, '', '2.包装计划', '', 0, 0, 1530952044, 1533095884, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (224, 19, 0, 0, 'item', '', '', 0, 0, '', '3.生产计划', '', 0, 0, 1530952085, 1533095934, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (225, 19, 0, 0, 'item', '0', '', 0, 0, '', '销售计划', '', 0, 0, 1530952095, 0, '0', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (226, 19, 223, 278, 'task', '1', '7月23日完成', 1532308860, 1532361600, '', '2.1包装样板设计【袋子】', '', 0, 0, 1530952159, 1533095893, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (227, 19, 223, 5672, 'task', '1', '', 1532308860, 1532361600, '', '2.2包装样板确认', '', 0, 0, 1530952205, 1544472565, '1', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (228, 19, 221, 1387, 'task', '1', '', 1532448000, 1532534400, '', '1.2产品品名确认', '', 0, 0, 1530952253, 1533095858, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (229, 19, 223, 278, 'task', '', '', 1532448000, 1532966400, '', '2.3系列包装设计', '', 0, 0, 1530952290, 1533095911, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (230, 19, 221, 1, 'task', NULL, '乳房sea', 1532534400, 1532966400, '3427', '1.3产品配方', '', 0, 0, 1597331713, 1603465290, '系统管理员', '278', 1, NULL); +INSERT INTO `project_task` VALUES (231, 19, 223, 1387, 'task', '', '', 1533052800, 1533225600, '', '2.4系列包装确认', '', 0, 0, 1530952385, 1533095916, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (232, 19, 225, 278, 'task', '0', '', 1532620800, 1532707200, '', '内部销售操作方案及公告', '', 0, 0, 1530952430, 1532308401, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (233, 19, 225, 299, 'task', '', '', 1532707200, 1532793600, '', '销售商经销商公告及系统建立', '', 0, 0, 1530952471, 1532308405, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (234, 19, 224, 1153, 'task', '', '', 1532966400, 1533225600, '', '1.确定供应商及价格', '', 0, 0, 1530952502, 1533095939, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (235, 19, 224, 1016, 'task', '0', '', 1533225600, 1533312000, '', '向包装供应商订单', '', 0, 0, 1530952562, 1532308386, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (236, 19, 224, 940, 'task', '0', '', 1533312000, 1533657600, '', '生产试样生产', '', 0, 0, 1530952592, 1532308392, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (237, 19, 224, 1016, 'task', NULL, '', 1532275200, 1533657600, '', '供应商交付包装物', '', 0, 0, 1530952713, 1601682207, '系统管理员', '278', 1, NULL); +INSERT INTO `project_task` VALUES (238, 19, 224, 940, 'task', '0', '', 1533398400, 1533484800, '', '首批订单生产', '', 0, 0, 1530952768, 1530952776, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (239, 19, 225, 834, 'task', '0', '', 1533484800, 1533571200, '', '经销商下订单', '', 0, 0, 1530952802, 1532308410, '278', '278', NULL, NULL); +INSERT INTO `project_task` VALUES (286, 23, 298, 1, 'task', '0', '212', 1614355200, 1614441600, NULL, '发生大幅杀跌', NULL, NULL, NULL, 1614208453, 1623575671, '赵云', '系统管理员', 3, 1); +INSERT INTO `project_task` VALUES (287, 23, 298, 3, 'task', '0', '没有', 1614208440, 1614441600, '17', '测试任务', NULL, NULL, NULL, 1614208493, 1623575678, '赵云', '系统管理员', 3, 1); +INSERT INTO `project_task` VALUES (288, 23, 287, 1, 'subtask', '1', '212', 1616252340, 1615305600, NULL, 'hahah', NULL, NULL, NULL, 1616252409, 1623575510, '赵云', '系统管理员', 3, 1); +INSERT INTO `project_task` VALUES (290, 24, 0, 0, 'item', '0', NULL, 0, 0, NULL, '需求', NULL, NULL, NULL, 1616271432, 1616271446, '系统管理员', '系统管理员', 1, 1); +INSERT INTO `project_task` VALUES (291, 24, 0, 0, 'item', NULL, NULL, 0, 0, NULL, '合同', NULL, NULL, NULL, 1616271449, NULL, NULL, '系统管理员', NULL, 1); +INSERT INTO `project_task` VALUES (292, 24, 0, 0, 'item', '0', NULL, 0, 0, NULL, '测试', NULL, NULL, NULL, 1616271455, 1623575315, '系统管理员', '系统管理员', 1, 1); +INSERT INTO `project_task` VALUES (293, 24, 0, 0, 'item', NULL, NULL, 0, 0, NULL, '完成', NULL, NULL, NULL, 1616271460, NULL, NULL, '系统管理员', NULL, 1); +INSERT INTO `project_task` VALUES (294, 24, 293, 1, 'task', '0', '123', 1623574200, 1623686400, NULL, '大润发', NULL, NULL, NULL, 1623574237, 1623953918, '系统管理员', '系统管理员', 1, 1); +INSERT INTO `project_task` VALUES (295, 24, 0, 0, 'item', '0', '21212', 0, 0, NULL, '222', NULL, NULL, NULL, 1623575306, 1623953911, '系统管理员', '系统管理员', 1, 1); +INSERT INTO `project_task` VALUES (298, 23, 0, 0, 'item', NULL, '56456', 1623575665, 0, NULL, '55', NULL, NULL, NULL, 1623575665, NULL, NULL, '赵云', NULL, 3); +INSERT INTO `project_task` VALUES (299, 23, 0, 0, 'item', '0', 'gfdg', 0, 0, NULL, 'gfdg', NULL, NULL, NULL, 1623575690, 1623575784, '赵云', '赵云', 3, 3); +INSERT INTO `project_task` VALUES (300, 23, 0, 0, 'item', NULL, '21212', 1623575790, 0, NULL, '2121', NULL, NULL, NULL, 1623575790, NULL, NULL, '赵云', NULL, 3); +INSERT INTO `project_task` VALUES (301, 23, 0, 0, 'item', '0', 'gfd', 0, 0, NULL, 'gfdgfd', NULL, NULL, NULL, 1623575802, 1623575868, '赵云', '赵云', 3, 3); +INSERT INTO `project_task` VALUES (302, 23, 301, 3, 'task', '0', '212', 1623513600, 1624377600, NULL, '21212', NULL, NULL, NULL, 1623575819, 1623602029, '赵云', '赵云', 3, 3); -- ---------------------------- -- Table structure for project_task_log @@ -11053,7 +11063,7 @@ CREATE TABLE `system_log` ( `type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '日志类型', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_action_log_created_id`(`created_id`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 36 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB AUTO_INCREMENT = 37 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of system_log @@ -11125,9 +11135,9 @@ CREATE TABLE `user` ( -- ---------------------------- -- Records of user -- ---------------------------- -INSERT INTO `user` VALUES (1, 'admin', '系统管理员', 20, 1, 3, 0, 0, 1, 0, '', 0, NULL, 't6qmROtfrFLzlpJ5xu3OPPVhcvHq5o666KYQysVQXLj3XejBVjBJtGkKKEsx', 1, 1, '2020-10-05', 0, '', '', 3, '028-12345678', '', '', '24', '', 1, '$2y$10$DFN0jlZa0x3IGcZAkolJTuYMnJpOnX78L9XG2Q5N2Y32FuAST8UwO', '123456', 'fvzone@qq.com', 0, '0', 0, 'blue2', '系统管理员', 1620589699, 0, '', 0, NULL, '', '15182223008', 24); +INSERT INTO `user` VALUES (1, 'admin', '系统管理员', 20, 1, 3, 0, 0, 1, 0, '', 0, NULL, '18vYWCCr4QiK2fTooowr5iWw9A70Ui6fQSTHs5ZAJzxbZuwSnbmH8f1Gr0Cn', 1, 1, '2020-10-05', 0, '', '', 3, '028-12345678', '', '', '24', '', 1, '$2y$10$DFN0jlZa0x3IGcZAkolJTuYMnJpOnX78L9XG2Q5N2Y32FuAST8UwO', '123456', 'fvzone@qq.com', 0, '0', 0, 'blue2', '系统管理员', 1623574074, 0, '', 0, NULL, '', '15182223008', 24); INSERT INTO `user` VALUES (2, '01001', '王二小食品有限公司', 1, 2, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, 1594147787, '系统管理员', NULL, NULL, '系统管理员', 1615757797, NULL, NULL, 1, NULL, NULL, '213', NULL); -INSERT INTO `user` VALUES (3, 'zhaoyun', '赵云', 3, 1, 0, NULL, NULL, 1, NULL, NULL, NULL, NULL, 'jzzOIclqiE5180Lj27Ir8fEkP7THFHhHKDuzj8IlYWd8025ROeDJRCflDZAs', 0, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, '$2y$10$qkonB.DXNaXvAzNQinz9UeXLAmIybudyYCN4FWiTf6JyeQk4BXT8W', '123456', NULL, 1601234908, '系统管理员', NULL, 'blue2', '系统管理员', 1613464164, NULL, NULL, 1, NULL, NULL, '15182223008', 0); +INSERT INTO `user` VALUES (3, '赵云', '赵云', 3, 1, 0, NULL, NULL, 1, NULL, NULL, 0, NULL, 'jzzOIclqiE5180Lj27Ir8fEkP7THFHhHKDuzj8IlYWd8025ROeDJRCflDZAs', 0, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, '$2y$10$qkonB.DXNaXvAzNQinz9UeXLAmIybudyYCN4FWiTf6JyeQk4BXT8W', '123456', NULL, 1601234908, '系统管理员', NULL, 'blue2', '赵云', 1623574086, NULL, NULL, 0, NULL, NULL, '15182223008', 0); INSERT INTO `user` VALUES (4, '关羽', '关羽', 19, 83, 0, NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, '$2y$10$a/sqD3GeTkC5UkB4BDyOvu67uQIoGm1sRLVS5TFyQsePC0qm0cT8m', '123456', NULL, 1601369401, '系统管理员', NULL, NULL, '系统管理员', 1614397204, NULL, NULL, 1, NULL, NULL, '15182223008', 0); INSERT INTO `user` VALUES (5, '52347', '刘洋', NULL, 95, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, 1603204082, '系统管理员', NULL, NULL, '系统管理员', 1612575522, NULL, NULL, NULL, NULL, NULL, '15879653821', NULL); INSERT INTO `user` VALUES (6, '100002', '四川幺麻子食品公司', 17, 2, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, '$2y$10$Gb4n4ea3nlMGxJsPKSWBUug8hZFLj4xI831Gru.s78ZX314UwyEOm', '123456', NULL, 1620468708, '系统管理员', NULL, NULL, '系统管理员', 1620470105, NULL, NULL, NULL, NULL, NULL, NULL, NULL); @@ -11150,33 +11160,31 @@ CREATE TABLE `user_asset` ( -- ---------------------------- -- Records of user_asset -- ---------------------------- -INSERT INTO `user_asset` VALUES (3, 'order', '{\"order.index\":{\"17\":\"4\",\"32\":\"1\",\"47\":\"1\",\"56\":\"1\",\"117\":\"1\",\"153\":\"4\",\"100\":\"4\",\"134\":\"1\",\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"31\":\"4\",\"64\":\"4\",\"11\":\"4\",\"35\":\"1\",\"42\":\"5\",\"10\":\"4\",\"34\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"18\":\"2\",\"23\":\"4\",\"28\":\"1\",\"33\":\"4\",\"66\":\"4\",\"27\":\"4\",\"63\":\"4\",\"95\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"order.show\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"23\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"order.audit\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"18\":\"1\",\"66\":\"1\",\"2\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"74\":\"1\",\"84\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"cancel.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"31\":\"4\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"34\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"33\":\"4\",\"30\":\"4\",\"66\":\"4\",\"27\":\"4\",\"63\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"cancel.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"order.recall\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"74\":\"1\",\"84\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"order.detail\":{\"1\":\"1\"},\"order.delivery\":{\"1\":\"1\"},\"order.deliveryPlan\":{\"1\":\"1\"},\"order.abort\":{\"1\":\"1\"},\"order.create\":{\"1\":\"1\"},\"order.edit\":{\"1\":\"1\"},\"order.print\":{\"1\":\"1\"},\"order.delete\":{\"1\":\"1\"},\"order.logisticsPlan\":{\"1\":\"1\"},\"order.deliveryEdit\":{\"1\":\"1\"},\"order.closeRow\":{\"1\":\"1\"},\"order.closeAllRow\":{\"1\":\"1\"},\"order.batchEdit\":{\"1\":\"1\"},\"cancel.audit\":{\"1\":\"1\"},\"cancel.recall\":{\"1\":\"1\"},\"cancel.abort\":{\"1\":\"1\"},\"cancel.create\":{\"1\":\"1\"},\"cancel.edit\":{\"1\":\"1\"},\"cancel.print\":{\"1\":\"1\"},\"cancel.delete\":{\"1\":\"1\"},\"sampleApply.index\":{\"1\":\"1\"},\"sampleApply.detail\":{\"1\":\"1\"},\"sampleApply.audit\":{\"1\":\"1\"},\"sampleApply.recall\":{\"1\":\"1\"},\"sampleApply.abort\":{\"1\":\"1\"},\"sampleApply.show\":{\"1\":\"1\"},\"sampleApply.create\":{\"1\":\"1\"},\"sampleApply.edit\":{\"1\":\"1\"},\"sampleApply.close\":{\"1\":\"1\"},\"sampleApply.print\":{\"1\":\"1\"},\"sampleApply.delete\":{\"1\":\"1\"},\"plan.index\":{\"1\":\"1\"},\"plan.produce\":{\"1\":\"1\"},\"plan.export_sale\":{\"1\":\"1\"},\"plan.produce_save\":{\"1\":\"1\"},\"plan.produce_submit\":{\"1\":\"1\"},\"type.index\":{\"1\":\"1\"},\"type.create\":{\"1\":\"1\"},\"type.edit\":{\"1\":\"1\"},\"type.delete\":{\"1\":\"1\"},\"logistics.index\":{\"1\":\"1\"},\"logistics.create\":{\"1\":\"1\"},\"logistics.edit\":{\"1\":\"1\"},\"logistics.show\":{\"1\":\"1\"},\"logistics.delete\":{\"1\":\"1\"},\"report.index\":{\"1\":\"1\"},\"report.category\":{\"1\":\"1\"},\"report.single\":{\"1\":\"1\"},\"report.city\":{\"1\":\"1\"},\"report.client\":{\"1\":\"1\"},\"report.ranking\":{\"1\":\"1\"},\"report.newclient\":{\"1\":\"1\"},\"report.stockmonth\":{\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (4, 'calendar', '{\"calendar.index\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"calendar.calendar\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"calendar.add\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"calendar.delete\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"calendar.active\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"event.index\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"event.view\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"event.add\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"event.edit\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"event.delete\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"event.move\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"event.resize\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"calendar.view\":{\"17\":\"1\",\"55\":\"1\",\"38\":\"1\",\"52\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (3, 'order', '{\"order.index\":{\"17\":\"4\",\"32\":\"1\",\"47\":\"1\",\"56\":\"1\",\"117\":\"1\",\"153\":\"4\",\"100\":\"4\",\"134\":\"1\",\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"31\":\"4\",\"64\":\"4\",\"11\":\"4\",\"35\":\"1\",\"42\":\"5\",\"10\":\"4\",\"34\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"18\":\"2\",\"23\":\"4\",\"28\":\"1\",\"33\":\"4\",\"66\":\"4\",\"27\":\"4\",\"63\":\"4\",\"95\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"order.show\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"23\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"cancel.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"31\":\"4\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"34\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"33\":\"4\",\"30\":\"4\",\"66\":\"4\",\"27\":\"4\",\"63\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"cancel.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"order.detail\":{\"1\":\"1\",\"7\":\"1\"},\"order.delivery\":{\"1\":\"1\",\"7\":\"1\"},\"order.deliveryPlan\":{\"1\":\"1\",\"7\":\"1\"},\"order.audit\":{\"1\":\"1\",\"7\":\"1\"},\"order.recall\":{\"1\":\"1\",\"7\":\"1\"},\"order.abort\":{\"1\":\"1\",\"7\":\"1\"},\"order.create\":{\"1\":\"1\",\"7\":\"1\"},\"order.edit\":{\"1\":\"1\",\"7\":\"1\"},\"order.print\":{\"1\":\"1\",\"7\":\"1\"},\"order.delete\":{\"1\":\"1\",\"7\":\"1\"},\"order.logisticsPlan\":{\"1\":\"1\",\"7\":\"1\"},\"order.deliveryEdit\":{\"1\":\"1\",\"7\":\"1\"},\"order.closeRow\":{\"1\":\"1\",\"7\":\"1\"},\"order.closeAllRow\":{\"1\":\"1\",\"7\":\"1\"},\"order.batchEdit\":{\"1\":\"1\",\"7\":\"1\"},\"cancel.audit\":{\"1\":\"1\",\"7\":\"1\"},\"cancel.recall\":{\"1\":\"1\",\"7\":\"1\"},\"cancel.abort\":{\"1\":\"1\",\"7\":\"1\"},\"cancel.create\":{\"1\":\"1\",\"7\":\"1\"},\"cancel.edit\":{\"1\":\"1\",\"7\":\"1\"},\"cancel.print\":{\"1\":\"1\",\"7\":\"1\"},\"cancel.delete\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.index\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.detail\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.audit\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.recall\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.abort\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.show\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.create\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.edit\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.close\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.print\":{\"1\":\"1\",\"7\":\"1\"},\"sampleApply.delete\":{\"1\":\"1\",\"7\":\"1\"},\"plan.index\":{\"1\":\"1\",\"7\":\"1\"},\"plan.produce\":{\"1\":\"1\",\"7\":\"1\"},\"plan.export_sale\":{\"1\":\"1\",\"7\":\"1\"},\"plan.produce_save\":{\"1\":\"1\",\"7\":\"1\"},\"plan.produce_submit\":{\"1\":\"1\",\"7\":\"1\"},\"type.index\":{\"1\":\"1\",\"7\":\"1\"},\"type.create\":{\"1\":\"1\",\"7\":\"1\"},\"type.edit\":{\"1\":\"1\",\"7\":\"1\"},\"type.delete\":{\"1\":\"1\",\"7\":\"1\"},\"logistics.index\":{\"1\":\"1\",\"7\":\"1\"},\"logistics.create\":{\"1\":\"1\",\"7\":\"1\"},\"logistics.edit\":{\"1\":\"1\",\"7\":\"1\"},\"logistics.show\":{\"1\":\"1\",\"7\":\"1\"},\"logistics.delete\":{\"1\":\"1\",\"7\":\"1\"},\"report.index\":{\"1\":\"1\",\"7\":\"1\"},\"report.category\":{\"1\":\"1\",\"7\":\"1\"},\"report.single\":{\"1\":\"1\",\"7\":\"1\"},\"report.city\":{\"1\":\"1\",\"7\":\"1\"},\"report.client\":{\"1\":\"1\",\"7\":\"1\"},\"report.ranking\":{\"1\":\"1\",\"7\":\"1\"},\"report.newclient\":{\"1\":\"1\",\"7\":\"1\"},\"report.stockmonth\":{\"1\":\"1\",\"7\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (4, 'calendar', '{\"calendar.index\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"calendar.calendar\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"calendar.add\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"calendar.delete\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"calendar.active\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"event.index\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"event.view\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"event.add\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"event.edit\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"event.delete\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"event.move\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"event.resize\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"calendar.view\":{\"17\":\"1\",\"55\":\"1\",\"38\":\"1\",\"52\":\"1\",\"53\":\"1\",\"26\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"62\":\"1\",\"91\":\"1\",\"90\":\"1\",\"92\":\"1\",\"93\":\"1\",\"12\":\"1\",\"13\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"19\":\"1\",\"94\":\"1\",\"96\":\"1\",\"58\":\"1\",\"72\":\"1\",\"75\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"}}'); INSERT INTO `user_asset` VALUES (5, 'message', '{\"message.index\":{\"17\":\"1\",\"26\":\"1\",\"27\":\"1\",\"52\":\"1\",\"16\":\"1\",\"33\":\"1\",\"51\":\"1\",\"24\":\"1\",\"53\":\"1\",\"19\":\"1\",\"47\":\"1\",\"32\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"30\":\"1\",\"28\":\"1\",\"43\":\"1\",\"44\":\"1\",\"37\":\"1\",\"42\":\"1\",\"29\":\"1\",\"45\":\"1\",\"25\":\"1\",\"38\":\"1\",\"46\":\"1\",\"39\":\"1\",\"50\":\"1\",\"31\":\"1\",\"49\":\"1\",\"40\":\"1\",\"34\":\"1\",\"48\":\"1\",\"35\":\"1\",\"36\":\"1\",\"56\":\"1\",\"60\":\"1\",\"54\":\"1\",\"82\":\"1\",\"83\":\"1\",\"84\":\"1\",\"18\":\"1\",\"69\":\"1\",\"2\":\"1\",\"41\":\"1\"},\"message.view\":{\"16\":\"1\",\"17\":\"1\",\"19\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"26\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"32\":\"1\",\"33\":\"1\",\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"42\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"46\":\"1\",\"47\":\"1\",\"48\":\"1\",\"49\":\"1\",\"50\":\"1\",\"52\":\"1\",\"53\":\"1\",\"51\":\"1\",\"56\":\"1\",\"60\":\"1\",\"54\":\"1\",\"18\":\"1\",\"69\":\"1\",\"2\":\"1\",\"41\":\"1\"},\"message.add\":{\"17\":\"1\",\"26\":\"1\",\"27\":\"1\",\"52\":\"1\",\"16\":\"1\",\"33\":\"1\",\"51\":\"1\",\"24\":\"1\",\"53\":\"1\",\"19\":\"1\",\"47\":\"1\",\"32\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"30\":\"1\",\"28\":\"1\",\"43\":\"1\",\"44\":\"1\",\"37\":\"1\",\"42\":\"1\",\"29\":\"1\",\"45\":\"1\",\"25\":\"1\",\"38\":\"1\",\"46\":\"1\",\"39\":\"1\",\"50\":\"1\",\"31\":\"1\",\"49\":\"1\",\"40\":\"1\",\"34\":\"1\",\"48\":\"1\",\"35\":\"1\",\"36\":\"1\",\"56\":\"1\",\"60\":\"1\",\"54\":\"1\",\"18\":\"1\",\"69\":\"1\",\"41\":\"1\"},\"message.delete\":{\"17\":\"1\",\"26\":\"1\",\"27\":\"1\",\"52\":\"1\",\"33\":\"1\",\"51\":\"1\",\"24\":\"1\",\"53\":\"1\",\"19\":\"1\",\"47\":\"1\",\"32\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"30\":\"1\",\"28\":\"1\",\"43\":\"1\",\"44\":\"1\",\"37\":\"1\",\"42\":\"1\",\"16\":\"1\",\"29\":\"1\",\"45\":\"1\",\"25\":\"1\",\"38\":\"1\",\"46\":\"1\",\"39\":\"1\",\"50\":\"1\",\"31\":\"1\",\"49\":\"1\",\"40\":\"1\",\"34\":\"1\",\"48\":\"1\",\"35\":\"1\",\"36\":\"1\",\"56\":\"1\",\"60\":\"1\",\"54\":\"1\",\"82\":\"1\",\"83\":\"1\",\"84\":\"1\",\"18\":\"1\",\"69\":\"1\",\"41\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (6, 'forum', '{\"post.index\":{\"17\":\"4\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"4\",\"61\":\"4\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"35\":\"1\",\"50\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"3\",\"63\":\"1\",\"2\":\"1\",\"58\":\"1\",\"75\":\"1\",\"89\":\"1\",\"\":\"me\",\"1\":\"1\"},\"post.view\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"35\":\"1\",\"50\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"58\":\"1\",\"75\":\"1\",\"89\":\"1\",\"\":\"me\",\"1\":\"1\"},\"post.add\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"35\":\"1\",\"50\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"58\":\"1\",\"75\":\"1\",\"89\":\"1\",\"\":\"me\",\"1\":\"1\"},\"post.delete\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"48\":\"1\",\"51\":\"1\",\"56\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"35\":\"1\",\"50\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"2\":\"1\",\"75\":\"1\",\"89\":\"1\",\"\":\"me\",\"1\":\"1\"},\"category.index\":{\"17\":\"1\",\"52\":\"1\",\"55\":\"1\",\"61\":\"1\",\"37\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"34\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"category.add\":{\"17\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"34\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"category.delete\":{\"17\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"category.view\":{\"17\":\"1\",\"52\":\"1\",\"55\":\"1\",\"61\":\"1\",\"37\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"34\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"post.category\":{\"17\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"30\":\"1\",\"27\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"post.reply\":{\"17\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"63\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (6, 'forum', '{\"post.index\":{\"17\":\"4\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"4\",\"61\":\"4\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"35\":\"1\",\"50\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"3\",\"63\":\"1\",\"2\":\"1\",\"58\":\"1\",\"75\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"post.view\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"35\":\"1\",\"50\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"58\":\"1\",\"75\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"post.add\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"52\":\"1\",\"56\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"35\":\"1\",\"50\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"58\":\"1\",\"75\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"post.delete\":{\"17\":\"1\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"48\":\"1\",\"51\":\"1\",\"56\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"35\":\"1\",\"50\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"2\":\"1\",\"75\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"category.index\":{\"17\":\"1\",\"52\":\"1\",\"55\":\"1\",\"61\":\"1\",\"37\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"34\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"category.add\":{\"17\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"34\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"category.delete\":{\"17\":\"1\",\"61\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"category.view\":{\"17\":\"1\",\"52\":\"1\",\"55\":\"1\",\"61\":\"1\",\"37\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"34\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"post.category\":{\"17\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"30\":\"1\",\"27\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"post.reply\":{\"17\":\"1\",\"55\":\"1\",\"61\":\"1\",\"117\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"119\":\"1\",\"134\":\"1\",\"79\":\"1\",\"63\":\"1\",\"58\":\"1\",\"75\":\"1\",\"1\":\"1\"}}'); INSERT INTO `user_asset` VALUES (7, 'workflow', '{\"bill.index\":{\"1\":\"1\"},\"bill.show\":{\"1\":\"1\"},\"bill.create\":{\"1\":\"1\"},\"bill.edit\":{\"1\":\"1\"},\"bill.delete\":{\"1\":\"1\"},\"category.index\":{\"1\":\"1\"},\"category.create\":{\"1\":\"1\"},\"category.edit\":{\"1\":\"1\"},\"category.delete\":{\"1\":\"1\"},\"template.index\":{\"1\":\"1\"},\"template.create\":{\"1\":\"1\"},\"template.edit\":{\"1\":\"1\"},\"template.delete\":{\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (11, 'promotion', '{\"promotion.index\":{\"17\":\"4\",\"40\":\"4\",\"56\":\"2\",\"134\":\"1\",\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"18\":\"2\",\"21\":\"4\",\"63\":\"4\",\"95\":\"5\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"1\",\"84\":\"5\",\"85\":\"5\",\"89\":\"4\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"promotion.delete\":{\"17\":\"1\",\"56\":\"1\",\"134\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"18\":\"1\",\"21\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"promotion.show\":{\"17\":\"1\",\"40\":\"1\",\"56\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"64\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"21\":\"1\",\"63\":\"1\",\"95\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"promotion.create\":{\"17\":\"1\",\"56\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"18\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"material.index\":{\"17\":\"4\",\"56\":\"2\",\"87\":\"5\",\"81\":\"5\",\"9\":\"4\",\"42\":\"5\",\"82\":\"5\",\"41\":\"5\",\"8\":\"4\",\"70\":\"4\",\"18\":\"2\",\"21\":\"4\",\"95\":\"5\",\"2\":\"1\",\"73\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"material.show\":{\"17\":\"1\",\"56\":\"1\",\"87\":\"1\",\"81\":\"1\",\"9\":\"1\",\"42\":\"1\",\"82\":\"1\",\"41\":\"1\",\"8\":\"1\",\"70\":\"1\",\"18\":\"1\",\"21\":\"1\",\"95\":\"1\",\"2\":\"1\",\"73\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"promotion.edit\":{\"17\":\"1\",\"56\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"promotion.print\":{\"17\":\"1\",\"40\":\"1\",\"56\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"promotion.audit\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"promotion.recall\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.index\":{\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"1\",\"84\":\"5\",\"85\":\"5\",\"83\":\"1\",\"1\":\"1\"},\"review.show\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.create\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.edit\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.audit\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.recall\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.print\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.delete\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (15, 'product', '{\"product.index\":{\"17\":\"1\",\"56\":\"1\",\"36\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"37\":\"1\",\"117\":\"1\",\"88\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"41\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"23\":\"1\",\"24\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"1\":\"1\"},\"product.delete\":{\"17\":\"1\",\"117\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"category.index\":{\"17\":\"1\",\"56\":\"1\",\"36\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"37\":\"1\",\"117\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"66\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"1\":\"1\"},\"category.delete\":{\"17\":\"1\",\"117\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"product.import\":{\"1\":\"1\"},\"category.create\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"category.edit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"product.create\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"product.edit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"66\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"74\":\"1\",\"1\":\"1\"},\"unit.index\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"66\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"unit.create\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"unit.edit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"unit.delete\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"material.index\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"material.create\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"1\":\"1\"},\"material.edit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"material.delete\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (16, 'file', '{\"certificate.index\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"33\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"certificate.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"33\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"certificate.download\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"33\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"94\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"inspectReport.index\":{\"1\":\"1\"},\"inspectReport.show\":{\"1\":\"1\"},\"inspectReport.create\":{\"1\":\"1\"},\"inspectReport.download\":{\"1\":\"1\"},\"inspectReport.delete\":{\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (17, 'user', '{\"user.index\":{\"17\":\"1\",\"26\":\"1\",\"29\":\"1\",\"38\":\"1\",\"52\":\"1\",\"16\":\"1\",\"\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"28\":\"1\",\"33\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"user.delete\":{\"17\":\"1\",\"52\":\"1\",\"\":\"1\",\"77\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"user.secret\":{\"17\":\"1\",\"52\":\"1\",\"\":\"1\",\"77\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"group.index\":{\"17\":\"1\",\"16\":\"1\",\"\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"group.delete\":{\"17\":\"1\",\"\":\"1\",\"77\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"position.index\":{\"17\":\"1\",\"16\":\"1\",\"\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"position.delete\":{\"17\":\"1\",\"\":\"1\",\"77\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"role.index\":{\"17\":\"1\",\"16\":\"1\",\"\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"role.config\":{\"17\":\"1\",\"\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"70\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"department.index\":{\"17\":\"1\",\"16\":\"1\",\"\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"department.delete\":{\"17\":\"1\",\"\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"70\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"role.delete\":{\"17\":\"1\",\"\":\"1\",\"77\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"position.create\":{\"\":\"1\",\"77\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"position.edit\":{\"\":\"1\",\"77\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"group.create\":{\"\":\"1\",\"77\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"group.edit\":{\"\":\"1\",\"77\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"user.show\":{\"16\":\"1\",\"\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"user.create\":{\"\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"user.edit\":{\"\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"department.show\":{\"16\":\"1\",\"\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"department.create\":{\"\":\"1\",\"11\":\"1\",\"10\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"department.edit\":{\"\":\"1\",\"11\":\"1\",\"10\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"role.show\":{\"16\":\"1\",\"\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"role.create\":{\"\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"role.edit\":{\"\":\"1\",\"60\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"user.import\":{\"\":\"1\",\"72\":\"1\",\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (18, 'model', '{\"model.index\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"model.delete\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"field.index\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"field.type\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"field.delete\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.index\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.delete\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"model.create\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"field.create\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.create\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.edit\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.save\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"template.index\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"template.create\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.condition\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"template.delete\":{\"1\":\"1\"},\"step.move\":{\"1\":\"1\"},\"module.index\":{\"1\":\"1\"},\"module.create\":{\"1\":\"1\"},\"module.edit\":{\"1\":\"1\"},\"module.save\":{\"1\":\"1\"},\"module.delete\":{\"1\":\"1\"},\"bill.index\":{\"1\":\"1\"},\"bill.create\":{\"1\":\"1\"},\"bill.show\":{\"1\":\"1\"},\"bill.delete\":{\"\":\"me\",\"1\":\"1\"},\"bill.edit\":{\"1\":\"1\"},\"model.edit\":{\"1\":\"1\"},\"template.edit\":{\"1\":\"1\"},\"field.edit\":{\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (11, 'promotion', '{\"promotion.index\":{\"17\":\"4\",\"40\":\"4\",\"56\":\"2\",\"134\":\"1\",\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"18\":\"2\",\"21\":\"4\",\"63\":\"4\",\"95\":\"5\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"1\",\"85\":\"5\",\"89\":\"4\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"promotion.show\":{\"17\":\"1\",\"40\":\"1\",\"56\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"64\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"21\":\"1\",\"63\":\"1\",\"95\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"89\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"material.index\":{\"17\":\"4\",\"56\":\"2\",\"87\":\"5\",\"81\":\"5\",\"9\":\"4\",\"42\":\"5\",\"82\":\"5\",\"41\":\"5\",\"8\":\"4\",\"70\":\"4\",\"18\":\"2\",\"21\":\"4\",\"95\":\"5\",\"2\":\"1\",\"73\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"material.show\":{\"17\":\"1\",\"56\":\"1\",\"87\":\"1\",\"81\":\"1\",\"9\":\"1\",\"42\":\"1\",\"82\":\"1\",\"41\":\"1\",\"8\":\"1\",\"70\":\"1\",\"18\":\"1\",\"21\":\"1\",\"95\":\"1\",\"2\":\"1\",\"73\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"promotion.edit\":{\"17\":\"1\",\"56\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"89\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"promotion.print\":{\"17\":\"1\",\"40\":\"1\",\"56\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"89\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"promotion.audit\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"review.index\":{\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"1\",\"85\":\"5\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"review.show\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"review.edit\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"review.audit\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"review.recall\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"review.print\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"promotion.create\":{\"1\":\"1\",\"7\":\"1\"},\"promotion.recall\":{\"1\":\"1\",\"7\":\"1\"},\"promotion.abort\":{\"1\":\"1\",\"7\":\"1\"},\"promotion.delete\":{\"1\":\"1\",\"7\":\"1\"},\"promotion.close\":{\"1\":\"1\",\"7\":\"1\"},\"promotion.batchEdit\":{\"1\":\"1\",\"7\":\"1\"},\"review.create\":{\"1\":\"1\",\"7\":\"1\"},\"review.abort\":{\"1\":\"1\",\"7\":\"1\"},\"review.delete\":{\"1\":\"1\",\"7\":\"1\"},\"review.batchEdit\":{\"1\":\"1\",\"7\":\"1\"},\"material.audit\":{\"1\":\"1\",\"7\":\"1\"},\"material.delete\":{\"1\":\"1\",\"7\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (15, 'product', '{\"product.index\":{\"17\":\"1\",\"56\":\"1\",\"36\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"37\":\"1\",\"117\":\"1\",\"88\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"41\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"23\":\"1\",\"24\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"category.index\":{\"17\":\"1\",\"56\":\"1\",\"36\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"37\":\"1\",\"117\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"66\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"unit.index\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"66\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"material.index\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"product.create\":{\"7\":\"1\"},\"product.edit\":{\"7\":\"1\"},\"product.import\":{\"7\":\"1\"},\"product.delete\":{\"7\":\"1\"},\"unit.create\":{\"7\":\"1\"},\"unit.edit\":{\"7\":\"1\"},\"unit.delete\":{\"7\":\"1\"},\"material.create\":{\"7\":\"1\"},\"material.edit\":{\"7\":\"1\"},\"material.delete\":{\"7\":\"1\"},\"category.create\":{\"7\":\"1\"},\"category.edit\":{\"7\":\"1\"},\"category.delete\":{\"7\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (16, 'file', '{\"certificate.index\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"33\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"94\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"certificate.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"33\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"94\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"certificate.download\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"33\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"94\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (17, 'user', '{\"user.index\":{\"17\":\"1\",\"26\":\"1\",\"29\":\"1\",\"38\":\"1\",\"52\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"28\":\"1\",\"33\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"group.index\":{\"17\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"position.index\":{\"17\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"role.index\":{\"17\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"department.index\":{\"17\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"77\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"user.show\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"department.show\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"role.show\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"role.config\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"60\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"role.create\":{\"1\":\"1\",\"7\":\"1\"},\"role.edit\":{\"1\":\"1\",\"7\":\"1\"},\"role.delete\":{\"1\":\"1\",\"7\":\"1\"},\"user.create\":{\"1\":\"1\"},\"user.edit\":{\"1\":\"1\"},\"user.import\":{\"1\":\"1\"},\"user.delete\":{\"1\":\"1\"},\"user.secret\":{\"1\":\"1\"},\"department.create\":{\"1\":\"1\"},\"department.edit\":{\"1\":\"1\"},\"department.delete\":{\"1\":\"1\"},\"group.create\":{\"1\":\"1\"},\"group.edit\":{\"1\":\"1\"},\"group.delete\":{\"1\":\"1\"},\"position.create\":{\"1\":\"1\"},\"position.edit\":{\"1\":\"1\"},\"position.delete\":{\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (18, 'model', '{\"model.index\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"model.delete\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"field.index\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"field.type\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"field.delete\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.index\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.delete\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"model.create\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"field.create\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.create\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.edit\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.save\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"template.index\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"template.create\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"step.condition\":{\"17\":\"1\",\"69\":\"1\",\"1\":\"1\"},\"template.delete\":{\"1\":\"1\"},\"step.move\":{\"1\":\"1\"},\"module.index\":{\"1\":\"1\"},\"module.create\":{\"1\":\"1\"},\"module.edit\":{\"1\":\"1\"},\"module.save\":{\"1\":\"1\"},\"module.delete\":{\"1\":\"1\"},\"bill.index\":{\"1\":\"1\"},\"bill.create\":{\"1\":\"1\"},\"bill.show\":{\"1\":\"1\"},\"bill.delete\":{\"1\":\"1\"},\"bill.edit\":{\"1\":\"1\"},\"model.edit\":{\"1\":\"1\"},\"template.edit\":{\"1\":\"1\"},\"field.edit\":{\"1\":\"1\"}}'); INSERT INTO `user_asset` VALUES (19, 'access', '{\"role.index\":{\"1\":1,\"17\":1},\"role.add\":{\"1\":1},\"role.config\":{\"1\":1,\"17\":1},\"department.index\":{\"1\":1,\"17\":1},\"department.add\":{\"1\":1,\"17\":1},\"department.delete\":{\"1\":1,\"17\":1}}'); INSERT INTO `user_asset` VALUES (20, 'setting', '{\"setting.base\":{\"1\":\"1\",\"17\":\"1\"},\"setting.mail\":{\"1\":\"1\",\"17\":\"1\"},\"setting.im\":{\"1\":\"1\",\"17\":\"1\"},\"setting.upload\":{\"1\":\"1\"},\"setting.image\":{\"1\":\"1\",\"17\":\"1\"},\"setting.sms\":{\"1\":\"1\",\"17\":\"1\"},\"setting.security\":[],\"setting.add\":{\"1\":1},\"cron.index\":{\"1\":\"1\",\"17\":\"1\"},\"cron.add\":{\"1\":\"1\",\"17\":\"1\"},\"cron.run\":{\"1\":\"1\",\"17\":\"1\"},\"cron.delete\":{\"1\":\"1\",\"17\":\"1\"},\"menu.index\":{\"1\":\"1\",\"17\":\"1\"},\"menu.add\":{\"1\":\"1\"},\"menu.delete\":{\"1\":\"1\",\"17\":\"1\"},\"dropdown.index\":{\"1\":1},\"dropdown.add\":{\"1\":1},\"dropdown.delete\":{\"1\":1},\"setting.mail_test\":{\"1\":\"1\",\"17\":\"1\"},\"setting.datetime\":[],\"setting.store\":{\"1\":\"1\",\"17\":\"1\"},\"dictionary.index\":{\"1\":\"1\",\"17\":\"1\"},\"dictionary.create\":{\"1\":\"1\",\"17\":\"1\"},\"dictionary.delete\":{\"1\":\"1\",\"17\":\"1\"},\"setting.index\":{\"1\":\"1\"},\"dict.index\":{\"1\":\"1\",\"17\":\"1\"},\"dict.create\":{\"1\":\"1\",\"17\":\"1\"},\"dict.delete\":{\"1\":\"1\",\"17\":\"1\"},\"widget.index\":{\"17\":\"1\",\"1\":\"1\"},\"widget.create\":{\"17\":\"1\",\"1\":\"1\"},\"widget.delete\":{\"17\":\"1\",\"1\":\"1\"},\"mail.index\":{\"1\":\"1\"},\"mail.create\":{\"1\":\"1\"},\"mail.delete\":{\"1\":\"1\"},\"menu.create\":{\"1\":\"1\",\"17\":\"1\"},\"option.index\":{\"1\":\"1\",\"17\":\"1\"},\"option.create\":{\"1\":\"1\",\"17\":\"1\"},\"option.delete\":{\"1\":\"1\",\"17\":\"1\"},\"mail.add\":{\"1\":\"1\"},\"mail.edit\":{\"1\":\"1\"},\"mail.store\":{\"1\":\"1\"},\"sms.index\":{\"1\":\"1\"},\"sms.add\":{\"1\":\"1\"},\"sms.edit\":{\"1\":\"1\"},\"sms.store\":{\"1\":\"1\"},\"sms.delete\":{\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (22, 'article', '{\"article.index\":{\"17\":\"4\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"3\",\"38\":\"4\",\"39\":\"3\",\"40\":\"3\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"52\":\"4\",\"54\":\"1\",\"56\":\"1\",\"55\":\"4\",\"53\":\"1\",\"26\":\"1\",\"61\":\"4\",\"68\":\"4\",\"117\":\"3\",\"88\":\"4\",\"119\":\"1\",\"153\":\"1\",\"100\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"134\":\"1\",\"16\":\"3\",\"87\":\"1\",\"81\":\"1\",\"15\":\"3\",\"14\":\"3\",\"9\":\"1\",\"78\":\"3\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"11\":\"3\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"3\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"77\":\"4\",\"71\":\"3\",\"8\":\"1\",\"86\":\"3\",\"70\":\"4\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"4\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"58\":\"3\",\"72\":\"3\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"article.create\":{\"1\":\"1\"},\"article.edit\":{\"1\":\"1\"},\"article.show\":{\"1\":\"1\"},\"article.reader\":{\"1\":\"1\"},\"article.delete\":{\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (22, 'article', '{\"article.index\":{\"17\":\"4\",\"29\":\"1\",\"32\":\"1\",\"36\":\"1\",\"37\":\"3\",\"38\":\"4\",\"39\":\"3\",\"40\":\"3\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"47\":\"1\",\"48\":\"1\",\"51\":\"1\",\"52\":\"4\",\"54\":\"1\",\"56\":\"1\",\"55\":\"4\",\"53\":\"1\",\"26\":\"1\",\"61\":\"4\",\"68\":\"4\",\"117\":\"3\",\"88\":\"4\",\"119\":\"1\",\"153\":\"1\",\"100\":\"1\",\"156\":\"1\",\"157\":\"1\",\"158\":\"1\",\"159\":\"1\",\"80\":\"1\",\"135\":\"1\",\"115\":\"1\",\"118\":\"1\",\"120\":\"1\",\"149\":\"1\",\"134\":\"1\",\"16\":\"3\",\"87\":\"1\",\"81\":\"1\",\"15\":\"3\",\"14\":\"3\",\"9\":\"1\",\"78\":\"3\",\"79\":\"1\",\"31\":\"1\",\"64\":\"1\",\"11\":\"3\",\"35\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"3\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"77\":\"4\",\"71\":\"3\",\"8\":\"1\",\"86\":\"3\",\"70\":\"4\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"4\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"3\",\"72\":\"3\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"article.create\":{\"1\":\"1\"},\"article.edit\":{\"1\":\"1\"},\"article.show\":{\"1\":\"1\"},\"article.reader\":{\"1\":\"1\"},\"article.delete\":{\"1\":\"1\"}}'); INSERT INTO `user_asset` VALUES (23, 'task', '{\"task.index\":{\"17\":\"4\",\"52\":\"1\",\"19\":\"1\",\"29\":\"1\",\"33\":\"3\",\"51\":\"1\",\"24\":\"1\",\"27\":\"4\",\"26\":\"1\",\"53\":\"1\",\"55\":\"1\",\"47\":\"1\",\"32\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"30\":\"1\",\"28\":\"1\",\"43\":\"1\",\"44\":\"1\",\"37\":\"1\",\"41\":\"1\",\"42\":\"1\",\"16\":\"1\",\"45\":\"1\",\"38\":\"1\",\"46\":\"1\",\"39\":\"1\",\"50\":\"1\",\"40\":\"1\",\"2\":\"1\",\"34\":\"1\",\"48\":\"1\",\"35\":\"1\",\"36\":\"1\",\"25\":\"1\",\"18\":\"1\",\"56\":\"1\",\"58\":\"1\",\"60\":\"1\",\"64\":\"1\",\"61\":\"1\",\"65\":\"1\",\"31\":\"3\",\"66\":\"1\"},\"task.receive\":{\"1\":\"1\",\"2\":\"1\",\"16\":\"1\",\"17\":\"4\",\"18\":\"1\",\"19\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"32\":\"1\",\"33\":\"1\",\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"41\":\"1\",\"42\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"46\":\"1\",\"47\":\"1\",\"48\":\"1\",\"49\":\"1\",\"50\":\"1\",\"52\":\"1\",\"56\":\"1\"},\"task.analysis\":{\"17\":\"1\",\"40\":\"1\",\"52\":\"1\",\"19\":\"1\",\"27\":\"1\",\"55\":\"1\",\"58\":\"1\",\"64\":\"1\",\"61\":\"1\",\"33\":\"1\",\"66\":\"1\"},\"task.view\":{\"2\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"32\":\"1\",\"33\":\"1\",\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"41\":\"1\",\"42\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"46\":\"1\",\"47\":\"1\",\"48\":\"1\",\"49\":\"1\",\"50\":\"1\",\"52\":\"1\",\"56\":\"1\",\"51\":\"1\",\"26\":\"1\",\"53\":\"1\",\"55\":\"1\",\"58\":\"1\",\"60\":\"1\",\"64\":\"1\",\"61\":\"1\",\"65\":\"1\",\"66\":\"1\"},\"task.add\":{\"17\":\"1\",\"52\":\"1\",\"19\":\"1\",\"27\":\"1\",\"55\":\"1\",\"58\":\"1\",\"64\":\"1\",\"61\":\"1\",\"33\":\"1\"},\"task.delete\":{\"17\":\"1\",\"52\":\"1\",\"27\":\"1\",\"55\":\"1\",\"58\":\"1\",\"64\":\"1\",\"61\":\"1\"},\"task.audit\":{\"17\":\"1\",\"52\":\"1\",\"27\":\"1\",\"55\":\"1\",\"58\":\"1\",\"64\":\"1\",\"61\":\"1\",\"33\":\"1\"},\"task.comment\":{\"2\":\"1\",\"16\":\"1\",\"17\":\"1\",\"18\":\"1\",\"19\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"27\":\"1\",\"28\":\"1\",\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"32\":\"1\",\"33\":\"1\",\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\",\"39\":\"1\",\"40\":\"1\",\"41\":\"1\",\"42\":\"1\",\"43\":\"1\",\"44\":\"1\",\"45\":\"1\",\"46\":\"1\",\"47\":\"1\",\"48\":\"1\",\"49\":\"1\",\"50\":\"1\",\"52\":\"1\",\"56\":\"1\",\"26\":\"1\",\"53\":\"1\",\"55\":\"1\",\"58\":\"1\",\"60\":\"1\",\"64\":\"1\",\"61\":\"1\",\"65\":\"1\",\"66\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (26, 'customer', '{\"complaint.index\":{\"10\":\"4\",\"34\":\"4\",\"46\":\"4\",\"82\":\"5\",\"49\":\"4\",\"70\":\"4\",\"33\":\"4\",\"72\":\"4\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"complaint.audit\":{\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"complaint.recall\":{\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"complaint.show\":{\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"complaint.create\":{\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"complaint.edit\":{\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"customer.index\":{\"83\":\"1\",\"1\":\"1\"},\"customer.show\":{\"83\":\"1\",\"1\":\"1\"},\"customer.create\":{\"83\":\"1\",\"1\":\"1\"},\"customer.edit\":{\"83\":\"1\",\"1\":\"1\"},\"tax.index\":{\"83\":\"1\",\"1\":\"1\"},\"tax.create\":{\"83\":\"1\",\"1\":\"1\"},\"tax.edit\":{\"83\":\"1\",\"1\":\"1\"},\"tax.show\":{\"83\":\"1\",\"1\":\"1\"},\"tax.audit\":{\"83\":\"1\",\"1\":\"1\"},\"tax.abort\":{\"83\":\"1\",\"1\":\"1\"},\"contact.index\":{\"83\":\"1\",\"1\":\"1\"},\"contact.show\":{\"83\":\"1\",\"1\":\"1\"},\"contact.create\":{\"83\":\"1\",\"1\":\"1\"},\"contact.edit\":{\"83\":\"1\",\"1\":\"1\"},\"price.index\":{\"83\":\"1\",\"1\":\"1\"},\"price.show\":{\"83\":\"1\",\"1\":\"1\"},\"complaint.print\":{\"83\":\"1\",\"1\":\"1\"},\"complaint.delete\":{\"83\":\"1\",\"1\":\"1\"},\"deliveryAddress.index\":{\"83\":\"1\",\"1\":\"1\"},\"deliveryAddress.show\":{\"83\":\"1\",\"1\":\"1\"},\"deliveryAddress.create\":{\"83\":\"1\",\"1\":\"1\"},\"deliveryAddress.edit\":{\"83\":\"1\",\"1\":\"1\"},\"deliveryAddress.delete\":{\"83\":\"1\",\"1\":\"1\"},\"customer.batchEdit\":{\"1\":\"1\"},\"customer.priceEdit\":{\"1\":\"1\"},\"customer.delete\":{\"1\":\"1\"},\"customer.import\":{\"1\":\"1\"},\"type.index\":{\"1\":\"1\"},\"type.create\":{\"1\":\"1\"},\"type.edit\":{\"1\":\"1\"},\"type.delete\":{\"1\":\"1\"},\"customerClass.index\":{\"1\":\"1\"},\"customerClass.create\":{\"1\":\"1\"},\"customerClass.edit\":{\"1\":\"1\"},\"customerClass.delete\":{\"1\":\"1\"},\"region.index\":{\"1\":\"1\"},\"region.show\":{\"1\":\"1\"},\"region.create\":{\"1\":\"1\"},\"region.edit\":{\"1\":\"1\"},\"region.delete\":{\"1\":\"1\"},\"tax.delete\":{\"1\":\"1\"},\"tax.batchEdit\":{\"1\":\"1\"},\"contact.delete\":{\"1\":\"1\"},\"task.index\":{\"1\":\"1\"},\"task.show\":{\"1\":\"1\"},\"task.create\":{\"1\":\"1\"},\"task.edit\":{\"1\":\"1\"},\"task.audit\":{\"1\":\"1\"},\"task.abort\":{\"1\":\"1\"},\"task.delete\":{\"1\":\"1\"},\"task.progress\":{\"1\":\"1\"},\"regionTask.index\":{\"1\":\"1\"},\"regionTask.show\":{\"1\":\"1\"},\"regionTask.create\":{\"1\":\"1\"},\"regionTask.edit\":{\"1\":\"1\"},\"regionTask.audit\":{\"1\":\"1\"},\"regionTask.abort\":{\"1\":\"1\"},\"regionTask.delete\":{\"1\":\"1\"},\"regionTask.progress\":{\"1\":\"1\"},\"price.create\":{\"1\":\"1\"},\"price.edit\":{\"1\":\"1\"},\"price.import\":{\"1\":\"1\"},\"price.delete\":{\"1\":\"1\"},\"customerApply.index\":{\"1\":\"1\"},\"customerApply.show\":{\"1\":\"1\"},\"customerApply.create\":{\"1\":\"1\"},\"customerApply.edit\":{\"1\":\"1\"},\"customerApply.delete\":{\"1\":\"1\"},\"customerApply.audit\":{\"1\":\"1\"},\"customerApply.recall\":{\"1\":\"1\"},\"customerApply.abort\":{\"1\":\"1\"},\"complaint.abort\":{\"1\":\"1\"},\"report.accountStatement\":{\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (26, 'customer', '{\"complaint.index\":{\"10\":\"4\",\"34\":\"4\",\"46\":\"4\",\"82\":\"5\",\"49\":\"4\",\"70\":\"4\",\"33\":\"4\",\"72\":\"4\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"complaint.audit\":{\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"complaint.recall\":{\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"complaint.show\":{\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"complaint.create\":{\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"complaint.edit\":{\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"82\":\"1\",\"49\":\"1\",\"70\":\"1\",\"33\":\"1\",\"72\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"customer.index\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"customer.show\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"customer.create\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"customer.edit\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"tax.index\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"tax.create\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"tax.edit\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"tax.show\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"tax.audit\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"tax.abort\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"contact.index\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"contact.show\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"contact.create\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"contact.edit\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"price.index\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"price.show\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"complaint.print\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"complaint.delete\":{\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"customer.batchEdit\":{\"1\":\"1\",\"7\":\"1\"},\"customer.priceEdit\":{\"1\":\"1\",\"7\":\"1\"},\"customer.delete\":{\"1\":\"1\",\"7\":\"1\"},\"customer.import\":{\"1\":\"1\",\"7\":\"1\"},\"type.index\":{\"1\":\"1\",\"7\":\"1\"},\"type.create\":{\"1\":\"1\",\"7\":\"1\"},\"type.edit\":{\"1\":\"1\",\"7\":\"1\"},\"type.delete\":{\"1\":\"1\",\"7\":\"1\"},\"customerClass.index\":{\"1\":\"1\",\"7\":\"1\"},\"customerClass.create\":{\"1\":\"1\",\"7\":\"1\"},\"customerClass.edit\":{\"1\":\"1\",\"7\":\"1\"},\"customerClass.delete\":{\"1\":\"1\",\"7\":\"1\"},\"region.index\":{\"1\":\"1\",\"7\":\"1\"},\"region.show\":{\"1\":\"1\",\"7\":\"1\"},\"region.create\":{\"1\":\"1\",\"7\":\"1\"},\"region.edit\":{\"1\":\"1\",\"7\":\"1\"},\"region.delete\":{\"1\":\"1\",\"7\":\"1\"},\"tax.delete\":{\"1\":\"1\",\"7\":\"1\"},\"tax.batchEdit\":{\"1\":\"1\",\"7\":\"1\"},\"contact.delete\":{\"1\":\"1\",\"7\":\"1\"},\"task.index\":{\"1\":\"1\",\"7\":\"1\"},\"task.show\":{\"1\":\"1\",\"7\":\"1\"},\"task.create\":{\"1\":\"1\",\"7\":\"1\"},\"task.edit\":{\"1\":\"1\",\"7\":\"1\"},\"task.audit\":{\"1\":\"1\",\"7\":\"1\"},\"task.abort\":{\"1\":\"1\",\"7\":\"1\"},\"task.delete\":{\"1\":\"1\",\"7\":\"1\"},\"task.progress\":{\"1\":\"1\",\"7\":\"1\"},\"regionTask.index\":{\"1\":\"1\",\"7\":\"1\"},\"regionTask.show\":{\"1\":\"1\",\"7\":\"1\"},\"regionTask.create\":{\"1\":\"1\",\"7\":\"1\"},\"regionTask.edit\":{\"1\":\"1\",\"7\":\"1\"},\"regionTask.audit\":{\"1\":\"1\",\"7\":\"1\"},\"regionTask.abort\":{\"1\":\"1\",\"7\":\"1\"},\"regionTask.delete\":{\"1\":\"1\",\"7\":\"1\"},\"regionTask.progress\":{\"1\":\"1\",\"7\":\"1\"},\"price.create\":{\"1\":\"1\",\"7\":\"1\"},\"price.edit\":{\"1\":\"1\",\"7\":\"1\"},\"price.import\":{\"1\":\"1\",\"7\":\"1\"},\"price.delete\":{\"1\":\"1\",\"7\":\"1\"},\"customerApply.index\":{\"1\":\"1\",\"7\":\"1\"},\"customerApply.show\":{\"1\":\"1\",\"7\":\"1\"},\"customerApply.create\":{\"1\":\"1\",\"7\":\"1\"},\"customerApply.edit\":{\"1\":\"1\",\"7\":\"1\"},\"customerApply.delete\":{\"1\":\"1\",\"7\":\"1\"},\"customerApply.audit\":{\"1\":\"1\",\"7\":\"1\"},\"customerApply.recall\":{\"1\":\"1\",\"7\":\"1\"},\"customerApply.abort\":{\"1\":\"1\",\"7\":\"1\"},\"complaint.abort\":{\"1\":\"1\",\"7\":\"1\"}}'); INSERT INTO `user_asset` VALUES (29, 'supplier', '{\"supplier.index\":{\"17\":\"4\",\"34\":\"4\",\"31\":\"4\",\"54\":\"1\",\"49\":\"4\",\"27\":\"4\",\"52\":\"1\",\"37\":\"4\",\"64\":\"4\",\"45\":\"4\"},\"supplier.search\":{\"17\":\"1\",\"34\":\"1\",\"31\":\"1\",\"27\":\"1\",\"52\":\"1\",\"49\":\"1\",\"37\":\"1\",\"64\":\"1\"},\"supplier.show\":{\"17\":\"1\",\"34\":\"1\",\"31\":\"1\",\"54\":\"1\",\"49\":\"1\",\"27\":\"1\",\"52\":\"1\",\"37\":\"1\",\"64\":\"1\"},\"supplier.create\":{\"17\":\"1\",\"49\":\"1\",\"31\":\"1\"},\"supplier.delete\":{\"17\":\"1\"},\"contact.index\":{\"17\":\"4\",\"34\":\"4\",\"31\":\"4\",\"54\":\"1\",\"27\":\"4\",\"49\":\"1\",\"37\":\"4\",\"64\":\"4\"},\"contact.show\":{\"17\":\"1\",\"34\":\"1\",\"31\":\"1\",\"54\":\"1\",\"27\":\"1\",\"49\":\"1\",\"37\":\"1\",\"64\":\"1\"},\"contact.delete\":{\"17\":\"1\"},\"order.index\":{\"17\":\"4\",\"34\":\"4\",\"31\":\"4\",\"48\":\"4\",\"54\":\"1\",\"25\":\"4\",\"27\":\"4\",\"64\":\"4\"},\"order.create\":{\"17\":\"1\",\"48\":\"1\",\"25\":\"1\"},\"order.show\":{\"17\":\"1\",\"34\":\"1\",\"31\":\"1\",\"48\":\"1\",\"54\":\"1\",\"25\":\"1\",\"27\":\"1\",\"64\":\"1\"},\"order.delete\":{\"17\":\"1\",\"34\":\"1\",\"48\":\"1\",\"25\":\"1\"},\"goods.index\":{\"1\":\"1\",\"17\":\"1\"},\"goods.create\":{\"1\":\"1\",\"17\":\"1\"},\"goods.show\":{\"1\":\"1\",\"17\":\"1\"},\"goods.delete\":{\"1\":\"1\",\"17\":\"1\"},\"product.index\":{\"17\":\"4\",\"34\":\"4\",\"31\":\"4\",\"48\":\"4\",\"54\":\"1\",\"49\":\"4\",\"27\":\"4\",\"37\":\"1\",\"64\":\"4\",\"29\":\"4\"},\"product.show\":{\"17\":\"1\",\"34\":\"1\",\"31\":\"1\",\"48\":\"1\",\"54\":\"1\",\"49\":\"1\",\"27\":\"1\",\"37\":\"1\",\"64\":\"1\",\"29\":\"1\"},\"product.create\":{\"31\":\"1\",\"17\":\"1\"},\"product.delete\":{\"17\":\"1\",\"31\":\"1\"},\"product-category.index\":{\"17\":\"1\",\"34\":\"1\",\"31\":\"1\",\"48\":\"1\",\"27\":\"1\",\"37\":\"1\",\"64\":\"1\"},\"product-category.show\":{\"17\":\"1\",\"34\":\"1\",\"31\":\"1\",\"48\":\"1\",\"27\":\"1\",\"37\":\"1\",\"64\":\"1\"},\"product-category.create\":{\"17\":\"1\",\"31\":\"1\"},\"product-category.delete\":{\"17\":\"1\"},\"contact.create\":{\"17\":\"1\",\"49\":\"1\",\"31\":\"1\"},\"order.edit\":{\"1\":\"1\",\"34\":\"1\",\"48\":\"1\",\"17\":\"1\"},\"goods.edit\":{\"1\":\"1\"},\"plan.index\":{\"34\":\"4\",\"17\":\"4\",\"31\":\"4\",\"41\":\"4\",\"48\":\"4\",\"54\":\"1\",\"25\":\"4\",\"27\":\"4\",\"64\":\"4\"},\"plan.create\":{\"34\":\"1\",\"17\":\"1\"},\"plan.show\":{\"34\":\"1\",\"17\":\"1\",\"31\":\"1\",\"41\":\"1\",\"48\":\"1\",\"54\":\"1\",\"25\":\"1\",\"27\":\"1\",\"64\":\"1\"},\"plan.edit\":{\"1\":\"1\",\"34\":\"1\",\"17\":\"1\",\"41\":\"1\"},\"plan.delete\":{\"34\":\"1\",\"17\":\"1\"},\"stock.index\":{\"34\":\"4\",\"17\":\"4\",\"31\":\"4\",\"48\":\"4\",\"54\":\"1\",\"25\":\"4\",\"27\":\"4\",\"64\":\"4\"},\"stock.create\":{\"17\":\"1\",\"25\":\"1\"},\"stock.show\":{\"34\":\"1\",\"17\":\"1\",\"31\":\"1\",\"48\":\"1\",\"54\":\"1\",\"25\":\"1\",\"27\":\"1\",\"64\":\"1\"},\"stock.edit\":{\"1\":\"1\",\"34\":\"1\",\"17\":\"1\"},\"stock.delete\":{\"34\":\"1\",\"17\":\"1\"},\"stock.report\":{\"17\":\"4\",\"31\":\"1\",\"48\":\"4\",\"34\":\"1\",\"25\":\"4\",\"27\":\"4\",\"64\":\"4\"},\"quality.index\":{\"54\":\"1\",\"17\":\"4\",\"34\":\"4\",\"25\":\"4\",\"45\":\"4\",\"29\":\"4\",\"31\":\"4\",\"41\":\"4\",\"49\":\"4\",\"27\":\"4\",\"52\":\"4\",\"37\":\"1\",\"64\":\"4\"},\"quality.show\":{\"54\":\"1\",\"17\":\"1\",\"34\":\"1\",\"25\":\"1\",\"45\":\"1\",\"29\":\"1\",\"31\":\"1\",\"41\":\"1\",\"49\":\"1\",\"27\":\"1\",\"52\":\"1\",\"64\":\"1\"},\"quality.report\":{\"17\":\"4\",\"34\":\"4\",\"45\":\"4\",\"29\":\"4\",\"31\":\"4\",\"41\":\"4\",\"49\":\"4\",\"27\":\"4\",\"52\":\"4\",\"37\":\"1\",\"64\":\"4\"},\"quality.create\":{\"34\":\"1\",\"45\":\"1\",\"29\":\"1\",\"31\":\"1\",\"17\":\"1\"},\"quality.delete\":{\"17\":\"1\",\"34\":\"1\",\"45\":\"1\",\"29\":\"1\"},\"inventory.index\":{\"54\":\"1\",\"34\":\"4\",\"17\":\"4\",\"27\":\"4\"},\"inventory.create\":{\"54\":\"1\",\"17\":\"1\"},\"inventory.show\":{\"54\":\"1\",\"34\":\"1\",\"17\":\"1\",\"27\":\"1\"},\"inventory.delete\":{\"34\":\"1\",\"17\":\"1\",\"54\":\"1\"},\"quality.edit\":{\"54\":\"1\",\"17\":\"1\",\"29\":\"1\",\"31\":\"1\",\"41\":\"1\",\"45\":\"1\"},\"order.count\":{\"34\":\"1\",\"17\":\"1\",\"27\":\"1\",\"64\":\"1\"},\"order.count_show\":{\"34\":\"1\",\"17\":\"1\",\"27\":\"1\",\"64\":\"1\"},\"plan.status\":{\"34\":\"1\",\"17\":\"1\",\"27\":\"1\"},\"order.status\":{\"34\":\"1\",\"17\":\"1\",\"27\":\"1\"},\"budget.index\":{\"34\":\"4\",\"35\":\"1\",\"36\":\"1\",\"25\":\"1\",\"17\":\"4\",\"27\":\"4\",\"64\":\"4\"},\"budget.create\":{\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"25\":\"1\",\"17\":\"1\"},\"budget.summary\":{\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"17\":\"1\",\"27\":\"1\"},\"budget.show\":{\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"25\":\"1\",\"17\":\"1\",\"27\":\"1\",\"64\":\"1\"},\"budget.delete\":{\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"25\":\"1\",\"17\":\"1\"},\"product.import\":{\"17\":\"1\"},\"inventory.report\":{\"17\":\"4\",\"27\":\"4\"},\"price.index\":{\"17\":\"4\",\"49\":\"4\",\"31\":\"4\",\"27\":\"4\",\"37\":\"1\",\"64\":\"4\"},\"price.show\":{\"17\":\"1\",\"49\":\"1\",\"31\":\"1\",\"27\":\"1\",\"37\":\"1\",\"64\":\"1\"},\"price.create\":{\"17\":\"1\",\"49\":\"1\"},\"price.delete\":{\"17\":\"1\",\"49\":\"1\",\"31\":\"1\"},\"settlement.index\":{\"49\":\"4\",\"17\":\"4\",\"31\":\"4\",\"54\":\"1\",\"27\":\"4\",\"37\":\"1\",\"64\":\"4\"},\"settlement.show\":{\"49\":\"1\",\"17\":\"1\",\"31\":\"1\",\"54\":\"1\",\"27\":\"1\",\"37\":\"1\",\"64\":\"1\"},\"settlement.create\":{\"17\":\"1\",\"31\":\"1\",\"49\":\"1\"},\"settlement.delete\":{\"17\":\"1\"},\"purchase.index\":{\"1\":\"1\",\"31\":\"1\",\"49\":\"1\",\"17\":\"1\"},\"purchase.create\":{\"1\":\"1\",\"31\":\"1\",\"17\":\"1\"},\"purchase.show\":{\"1\":\"1\",\"31\":\"1\",\"49\":\"1\",\"17\":\"1\"},\"purchase.delete\":{\"1\":\"1\",\"31\":\"1\",\"17\":\"1\"},\"order.overtime\":{\"17\":\"1\",\"34\":\"1\",\"48\":\"1\",\"25\":\"1\"},\"purchase-plan.index\":[],\"purchase-plan.create\":[],\"purchase-plan.order\":[],\"purchase-plan.show\":[],\"purchase-plan.status\":[],\"purchase-plan.delete\":[],\"purchase-order.index\":[],\"purchase-order.create\":[],\"purchase-order.show\":[],\"purchase-order.status\":[],\"purchase-order.delete\":[],\"price.edit\":{\"49\":\"1\",\"31\":\"1\",\"17\":\"1\"},\"settlement.count\":{\"54\":\"1\",\"31\":\"4\",\"49\":\"4\",\"64\":\"4\",\"17\":\"4\"},\"report.deliver\":{\"17\":\"4\",\"54\":\"1\",\"49\":\"4\",\"31\":\"4\",\"34\":\"4\",\"37\":\"1\",\"25\":\"4\"},\"report.years\":{\"17\":\"4\",\"54\":\"1\",\"49\":\"4\",\"31\":\"4\",\"41\":\"4\",\"37\":\"1\",\"64\":\"4\"},\"product.print\":{\"17\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (31, 'pickle', '{\"contract.index\":{\"17\":\"1\",\"31\":\"1\",\"39\":\"1\",\"49\":\"1\",\"50\":\"1\",\"37\":\"1\",\"27\":\"1\",\"40\":\"1\",\"64\":\"1\"},\"contract.show\":{\"17\":\"1\",\"31\":\"1\",\"39\":\"1\",\"49\":\"1\",\"50\":\"1\",\"37\":\"1\",\"27\":\"1\",\"40\":\"1\",\"64\":\"1\"},\"contract.create\":{\"17\":\"1\",\"31\":\"1\",\"49\":\"1\"},\"contract.import\":{\"17\":\"1\",\"31\":\"1\"},\"contract.delete\":{\"17\":\"1\",\"31\":\"1\"},\"stock.index\":{\"17\":\"1\",\"31\":\"1\",\"39\":\"1\",\"50\":\"1\",\"49\":\"1\",\"41\":\"1\",\"37\":\"1\",\"27\":\"1\",\"40\":\"1\",\"64\":\"1\"},\"stock.report\":{\"17\":\"1\",\"31\":\"1\",\"39\":\"1\",\"49\":\"1\",\"50\":\"1\",\"41\":\"1\",\"37\":\"1\",\"27\":\"1\",\"40\":\"1\",\"64\":\"1\"},\"stock.delete\":{\"17\":\"1\",\"31\":\"1\"},\"stock.analysis\":{\"31\":\"1\",\"17\":\"1\",\"49\":\"1\",\"50\":\"1\",\"39\":\"1\",\"41\":\"1\",\"37\":\"1\",\"27\":\"1\",\"40\":\"1\",\"64\":\"1\"},\"stock.analysisData\":{\"31\":\"1\",\"17\":\"1\",\"49\":\"1\",\"50\":\"1\",\"39\":\"1\",\"41\":\"1\",\"37\":\"1\",\"27\":\"1\"},\"stock.status\":{\"31\":\"1\",\"49\":\"1\",\"41\":\"1\",\"37\":\"1\",\"17\":\"1\"},\"contract.sms\":{\"49\":\"1\",\"31\":\"1\"},\"stock.print\":{\"31\":\"1\",\"49\":\"1\",\"41\":\"1\",\"37\":\"1\",\"17\":\"1\"},\"stock.summary\":{\"37\":\"1\",\"41\":\"1\",\"49\":\"1\",\"17\":\"1\",\"40\":\"1\"},\"price.index\":{\"37\":\"1\",\"31\":\"1\",\"34\":\"1\",\"49\":\"1\",\"17\":\"1\",\"41\":\"1\",\"27\":\"1\",\"64\":\"1\"},\"price.show\":{\"37\":\"1\",\"31\":\"1\",\"34\":\"1\",\"49\":\"1\",\"17\":\"1\",\"41\":\"1\",\"27\":\"1\",\"64\":\"1\"},\"price.create\":{\"37\":\"1\",\"49\":\"1\",\"31\":\"1\"},\"price.delete\":{\"37\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (33, 'attendence', '{\"rule.index\":[],\"rule.show\":[],\"rule.create\":[],\"rule.edit\":[],\"rule.delete\":[],\"leave.index\":[],\"leave.show\":[],\"leave.create\":[],\"leave.edit\":[],\"leave.delete\":[],\"out.index\":[],\"out.show\":[],\"out.create\":[],\"out.edit\":[],\"out.delete\":[],\"overtime.index\":[],\"overtime.show\":[],\"overtime.create\":[],\"overtime.edit\":[],\"overtime.delete\":[]}'); -INSERT INTO `user_asset` VALUES (34, 'approach', '{\"approach.index\":{\"56\":\"2\",\"17\":\"4\",\"53\":\"4\",\"47\":\"4\",\"117\":\"1\",\"134\":\"1\",\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"18\":\"2\",\"63\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"7\":\"1\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"89\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"approach.show\":{\"56\":\"1\",\"17\":\"1\",\"53\":\"1\",\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"64\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"approach.create\":{\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"approach.edit\":{\"56\":\"1\",\"17\":\"1\",\"53\":\"1\",\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"approach.print\":{\"56\":\"1\",\"17\":\"1\",\"53\":\"1\",\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"89\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"approach.delete\":{\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"19\":\"1\",\"72\":\"1\",\"84\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"market.index\":{\"16\":\"4\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"82\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"market.create\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"market.edit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"market.delete\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"approach.audit\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"approach.recall\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"83\":\"1\",\"1\":\"1\"},\"review.index\":{\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"83\":\"1\",\"1\":\"1\"},\"review.show\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.edit\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.audit\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.recall\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"review.print\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"approach.abort\":{\"1\":\"1\"},\"approach.close\":{\"1\":\"1\"},\"approach.batchEdit\":{\"1\":\"1\"},\"review.create\":{\"1\":\"1\"},\"review.abort\":{\"1\":\"1\"},\"review.delete\":{\"1\":\"1\"},\"review.batchEdit\":{\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (35, 'purchase', '{\"order.index\":{\"57\":\"1\",\"16\":\"4\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"92\":\"4\",\"20\":\"4\",\"21\":\"4\",\"22\":\"4\",\"30\":\"4\",\"27\":\"1\",\"63\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"1\":\"1\"},\"order.create\":{\"57\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"27\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"order.show\":{\"57\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"order.delete\":{\"57\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"27\":\"1\",\"19\":\"1\",\"72\":\"1\",\"\":\"me\",\"1\":\"1\"},\"supplier.index\":{\"16\":\"4\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"92\":\"4\",\"20\":\"4\",\"22\":\"4\",\"30\":\"4\",\"27\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"1\":\"1\"},\"supplier.show\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"30\":\"1\",\"27\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"supplier.create\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"30\":\"1\",\"27\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"supplier.delete\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"30\":\"1\",\"27\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"order.edit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"order.audit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"order.recall\":{\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"7\":\"1\",\"1\":\"1\"},\"order.abort\":{\"1\":\"1\"},\"supplier.edit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (34, 'approach', '{\"approach.index\":{\"56\":\"2\",\"17\":\"4\",\"53\":\"4\",\"47\":\"4\",\"117\":\"1\",\"134\":\"1\",\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"18\":\"2\",\"63\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"89\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"approach.show\":{\"56\":\"1\",\"17\":\"1\",\"53\":\"1\",\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"64\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"89\":\"1\"},\"approach.create\":{\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\"},\"approach.edit\":{\"56\":\"1\",\"17\":\"1\",\"53\":\"1\",\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"89\":\"1\"},\"approach.print\":{\"56\":\"1\",\"17\":\"1\",\"53\":\"1\",\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"89\":\"1\"},\"approach.delete\":{\"47\":\"1\",\"117\":\"1\",\"134\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"19\":\"1\",\"72\":\"1\"},\"market.index\":{\"16\":\"4\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"82\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"1\":\"1\"},\"market.create\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"1\":\"1\"},\"market.edit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"1\":\"1\"},\"market.delete\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"1\":\"1\"},\"approach.audit\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\"},\"approach.recall\":{\"134\":\"1\",\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\"},\"review.index\":{\"16\":\"4\",\"87\":\"5\",\"81\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"1\":\"1\"},\"review.show\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\"},\"review.edit\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\"},\"review.audit\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\"},\"review.recall\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\"},\"review.print\":{\"16\":\"1\",\"87\":\"1\",\"81\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\"},\"approach.abort\":{\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"approach.close\":{\"1\":\"1\"},\"approach.batchEdit\":{\"1\":\"1\"},\"review.create\":{\"1\":\"1\"},\"review.abort\":{\"1\":\"1\"},\"review.delete\":{\"1\":\"1\"},\"review.batchEdit\":{\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (35, 'purchase', '{\"order.index\":{\"57\":\"1\",\"16\":\"4\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"92\":\"4\",\"20\":\"4\",\"21\":\"4\",\"22\":\"4\",\"30\":\"4\",\"27\":\"1\",\"63\":\"4\",\"19\":\"4\",\"72\":\"4\",\"1\":\"1\",\"7\":\"1\"},\"order.show\":{\"57\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"27\":\"1\",\"63\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"supplier.index\":{\"16\":\"4\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"92\":\"4\",\"20\":\"4\",\"22\":\"4\",\"30\":\"4\",\"27\":\"4\",\"19\":\"4\",\"72\":\"4\",\"1\":\"1\",\"7\":\"1\"},\"supplier.show\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"22\":\"1\",\"30\":\"1\",\"27\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"order.edit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"order.audit\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"19\":\"1\",\"72\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"order.recall\":{\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"92\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"30\":\"1\",\"1\":\"1\",\"7\":\"1\"}}'); INSERT INTO `user_asset` VALUES (36, 'flow', '{\"app.index\":{\"1\":\"1\"},\"app.create\":{\"1\":\"1\"},\"app.show\":{\"1\":\"1\"},\"app.delete\":{\"1\":\"1\"},\"model.index\":{\"1\":\"1\"},\"model.create\":{\"1\":\"1\"},\"model.view\":{\"1\":\"1\"},\"model.delete\":{\"1\":\"1\"},\"template.index\":{\"1\":\"1\"},\"template.create\":{\"1\":\"1\"},\"template.delete\":{\"1\":\"1\"},\"field.index\":{\"1\":\"1\"},\"field.create\":{\"1\":\"1\"},\"field.type\":{\"1\":\"1\"},\"field.delete\":{\"1\":\"1\"},\"action.index\":{\"1\":\"1\"},\"action.create\":{\"1\":\"1\"},\"action.delete\":{\"1\":\"1\"},\"step.index\":{\"1\":\"1\"},\"step.create\":{\"1\":\"1\"},\"step.edit\":{\"1\":\"1\"},\"step.save\":{\"1\":\"1\"},\"step.condition\":{\"1\":\"1\"},\"step.delete\":{\"1\":\"1\"},\"step.move\":{\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (37, 'project', '{\"project.index\":{\"17\":\"4\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"3\",\"37\":\"3\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"3\",\"45\":\"1\",\"38\":\"3\",\"39\":\"3\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"3\",\"15\":\"3\",\"14\":\"3\",\"9\":\"4\",\"78\":\"3\",\"31\":\"1\",\"64\":\"1\",\"69\":\"4\",\"11\":\"3\",\"35\":\"1\",\"50\":\"1\",\"10\":\"3\",\"34\":\"3\",\"46\":\"1\",\"49\":\"1\",\"71\":\"3\",\"8\":\"4\",\"86\":\"3\",\"70\":\"4\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"3\",\"33\":\"3\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"3\",\"7\":\"4\",\"58\":\"3\",\"72\":\"3\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"project.edit\":{\"17\":\"4\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"3\",\"15\":\"3\",\"14\":\"3\",\"78\":\"3\",\"31\":\"1\",\"64\":\"1\",\"69\":\"4\",\"11\":\"3\",\"35\":\"1\",\"50\":\"1\",\"10\":\"3\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"3\",\"86\":\"3\",\"70\":\"4\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"3\",\"58\":\"1\",\"72\":\"3\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"project.show\":{\"17\":\"1\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"project.delete\":{\"17\":\"4\",\"26\":\"1\",\"16\":\"3\",\"15\":\"3\",\"14\":\"3\",\"78\":\"3\",\"69\":\"4\",\"11\":\"3\",\"10\":\"3\",\"71\":\"3\",\"86\":\"3\",\"70\":\"4\",\"23\":\"1\",\"73\":\"1\",\"19\":\"3\",\"58\":\"1\",\"72\":\"3\",\"76\":\"1\",\"1\":\"1\"},\"task.index\":{\"17\":\"1\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"task.show\":{\"17\":\"1\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"task.delete\":{\"17\":\"1\",\"26\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"69\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"23\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"1\":\"1\"},\"project.add\":{\"17\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"1\":\"1\"},\"task.add\":{\"17\":\"1\",\"53\":\"1\",\"40\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"52\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"task.edit\":{\"17\":\"1\",\"48\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"10\":\"1\",\"34\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"18\":\"1\",\"33\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"1\":\"1\"},\"comment.add\":{\"17\":\"1\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"comment.edit\":{\"17\":\"1\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\"},\"comment.delete\":{\"17\":\"1\",\"26\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"78\":\"1\",\"69\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"86\":\"1\",\"70\":\"1\",\"23\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (39, 'system', '{\"setting.index\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"setting.store\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"mail.index\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"mail.edit\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"mail.store\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"mail.delete\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"sms.index\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"sms.edit\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"sms.store\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"sms.delete\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"menu.index\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"menu.create\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"menu.delete\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"region.index\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"region.create\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"region.edit\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"region.delete\":{\"\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"widget.index\":{\"1\":\"1\"},\"widget.delete\":{\"1\":\"1\"},\"option.index\":{\"1\":\"1\"},\"option.create\":{\"1\":\"1\"},\"option.delete\":{\"1\":\"1\"},\"setting.create\":{\"1\":\"1\"},\"setting.edit\":{\"1\":\"1\"},\"setting.delete\":{\"1\":\"1\"},\"mail.create\":{\"1\":\"1\"},\"sms.create\":{\"1\":\"1\"},\"option.edit\":{\"1\":\"1\"},\"log.index\":{\"1\":\"1\"},\"log.delete\":{\"1\":\"1\"},\"widget.edit\":{\"1\":\"1\"},\"menu.edit\":{\"1\":\"1\"},\"smsLog.index\":{\"1\":\"1\"},\"smsLog.delete\":{\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (37, 'project', '{\"project.index\":{\"17\":\"4\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"3\",\"37\":\"3\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"3\",\"45\":\"1\",\"38\":\"3\",\"39\":\"3\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"3\",\"15\":\"3\",\"14\":\"3\",\"9\":\"4\",\"78\":\"3\",\"31\":\"1\",\"64\":\"1\",\"69\":\"4\",\"11\":\"3\",\"35\":\"1\",\"50\":\"1\",\"10\":\"3\",\"34\":\"3\",\"46\":\"1\",\"49\":\"1\",\"71\":\"3\",\"8\":\"4\",\"86\":\"3\",\"70\":\"4\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"3\",\"33\":\"3\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"3\",\"58\":\"3\",\"72\":\"3\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"project.show\":{\"17\":\"1\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"task.index\":{\"17\":\"1\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"task.show\":{\"17\":\"1\",\"53\":\"1\",\"40\":\"1\",\"52\":\"1\",\"55\":\"1\",\"37\":\"1\",\"51\":\"1\",\"43\":\"1\",\"44\":\"1\",\"47\":\"1\",\"32\":\"1\",\"29\":\"1\",\"45\":\"1\",\"38\":\"1\",\"39\":\"1\",\"48\":\"1\",\"36\":\"1\",\"56\":\"1\",\"26\":\"1\",\"61\":\"1\",\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"31\":\"1\",\"64\":\"1\",\"69\":\"1\",\"11\":\"1\",\"35\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"46\":\"1\",\"49\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"59\":\"1\",\"60\":\"1\",\"91\":\"1\",\"92\":\"1\",\"18\":\"1\",\"20\":\"1\",\"21\":\"1\",\"22\":\"1\",\"23\":\"1\",\"24\":\"1\",\"25\":\"1\",\"28\":\"1\",\"33\":\"1\",\"30\":\"1\",\"27\":\"1\",\"73\":\"1\",\"19\":\"1\",\"58\":\"1\",\"72\":\"1\",\"76\":\"1\",\"89\":\"1\",\"1\":\"1\",\"7\":\"1\",\"83\":\"1\"},\"project.add\":{\"1\":\"1\"},\"project.edit\":{\"1\":\"1\"},\"project.delete\":{\"1\":\"1\"},\"task.add\":{\"1\":\"1\"},\"task.edit\":{\"1\":\"1\"},\"task.delete\":{\"1\":\"1\"},\"comment.add\":{\"1\":\"1\"},\"comment.edit\":{\"1\":\"1\"},\"comment.delete\":{\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (39, 'system', '{\"setting.index\":{\"70\":\"1\",\"1\":\"1\"},\"setting.store\":{\"70\":\"1\",\"1\":\"1\"},\"mail.index\":{\"70\":\"1\",\"1\":\"1\"},\"mail.edit\":{\"70\":\"1\",\"1\":\"1\"},\"mail.store\":{\"70\":\"1\",\"1\":\"1\"},\"mail.delete\":{\"70\":\"1\",\"1\":\"1\"},\"sms.index\":{\"70\":\"1\",\"1\":\"1\"},\"sms.edit\":{\"70\":\"1\",\"1\":\"1\"},\"sms.store\":{\"70\":\"1\",\"1\":\"1\"},\"sms.delete\":{\"70\":\"1\",\"1\":\"1\"},\"menu.index\":{\"70\":\"1\",\"1\":\"1\"},\"menu.create\":{\"70\":\"1\",\"1\":\"1\"},\"menu.delete\":{\"70\":\"1\",\"1\":\"1\"},\"region.index\":{\"70\":\"1\",\"1\":\"1\"},\"region.create\":{\"70\":\"1\",\"1\":\"1\"},\"region.edit\":{\"70\":\"1\",\"1\":\"1\"},\"region.delete\":{\"70\":\"1\",\"1\":\"1\"},\"widget.index\":{\"1\":\"1\"},\"widget.delete\":{\"1\":\"1\"},\"option.index\":{\"1\":\"1\"},\"option.create\":{\"1\":\"1\"},\"option.delete\":{\"1\":\"1\"},\"setting.create\":{\"1\":\"1\"},\"setting.edit\":{\"1\":\"1\"},\"setting.delete\":{\"1\":\"1\"},\"mail.create\":{\"1\":\"1\"},\"sms.create\":{\"1\":\"1\"},\"option.edit\":{\"1\":\"1\"},\"log.index\":{\"1\":\"1\"},\"log.delete\":{\"1\":\"1\"},\"widget.edit\":{\"1\":\"1\"},\"menu.edit\":{\"1\":\"1\"},\"smsLog.index\":{\"1\":\"1\"},\"smsLog.delete\":{\"1\":\"1\"}}'); INSERT INTO `user_asset` VALUES (40, 'market', '{\"cost.index\":{\"\":\"1\",\"79\":\"1\",\"2\":\"1\",\"82\":\"5\",\"83\":\"5\",\"84\":\"5\",\"78\":\"5\",\"81\":\"5\",\"41\":\"5\",\"72\":\"4\",\"70\":\"4\",\"1\":\"1\"},\"cost.show\":{\"\":\"1\",\"79\":\"1\",\"2\":\"1\",\"82\":\"1\",\"83\":\"1\",\"84\":\"1\",\"78\":\"1\",\"81\":\"1\",\"41\":\"1\",\"72\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"cost.create\":{\"\":\"1\",\"72\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"cost.edit\":{\"\":\"1\",\"72\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"cost.print\":{\"70\":\"1\"},\"cost.delete\":{\"\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"cost.close\":{\"\":\"1\",\"72\":\"1\",\"1\":\"1\"},\"cost.audit\":{\"\":\"1\",\"72\":\"1\",\"70\":\"1\",\"1\":\"1\"},\"cost.abort\":{\"\":\"1\",\"72\":\"1\",\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (41, 'stock', '{\"delivery.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"31\":\"4\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"34\":\"4\",\"82\":\"5\",\"49\":\"1\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"23\":\"4\",\"33\":\"4\",\"30\":\"4\",\"66\":\"4\",\"27\":\"4\",\"63\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"delivery.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"11\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"23\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"\":\"me\",\"65\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"delivery.detail\":{\"83\":\"1\",\"1\":\"1\"},\"delivery.create\":{\"1\":\"1\"},\"delivery.edit\":{\"1\":\"1\"},\"delivery.audit\":{\"1\":\"1\"},\"delivery.recall\":{\"1\":\"1\"},\"delivery.abort\":{\"1\":\"1\"},\"delivery.print\":{\"1\":\"1\"},\"delivery.delete\":{\"1\":\"1\"},\"delivery.batchEdit\":{\"1\":\"1\"},\"direct.index\":{\"1\":\"1\"},\"direct.show\":{\"1\":\"1\"},\"direct.create\":{\"1\":\"1\"},\"direct.edit\":{\"1\":\"1\"},\"direct.audit\":{\"1\":\"1\"},\"direct.recall\":{\"1\":\"1\"},\"direct.abort\":{\"1\":\"1\"},\"direct.print\":{\"1\":\"1\"},\"direct.delete\":{\"1\":\"1\"},\"allocation.index\":{\"1\":\"1\"},\"allocation.show\":{\"1\":\"1\"},\"allocation.create\":{\"1\":\"1\"},\"allocation.edit\":{\"1\":\"1\"},\"allocation.audit\":{\"1\":\"1\"},\"allocation.recall\":{\"1\":\"1\"},\"allocation.abort\":{\"1\":\"1\"},\"allocation.print\":{\"1\":\"1\"},\"allocation.delete\":{\"1\":\"1\"},\"cancel.index\":{\"1\":\"1\"},\"cancel.show\":{\"1\":\"1\"},\"cancel.create\":{\"1\":\"1\"},\"cancel.edit\":{\"1\":\"1\"},\"cancel.audit\":{\"1\":\"1\"},\"cancel.recall\":{\"1\":\"1\"},\"cancel.abort\":{\"1\":\"1\"},\"cancel.print\":{\"1\":\"1\"},\"cancel.delete\":{\"1\":\"1\"},\"cancel.batchEdit\":{\"1\":\"1\"},\"record01.index\":{\"1\":\"1\"},\"record01.show\":{\"1\":\"1\"},\"record01.create\":{\"1\":\"1\"},\"record01.edit\":{\"1\":\"1\"},\"record01.audit\":{\"1\":\"1\"},\"record01.recall\":{\"1\":\"1\"},\"record01.abort\":{\"1\":\"1\"},\"record01.print\":{\"1\":\"1\"},\"record01.delete\":{\"1\":\"1\"},\"record10.index\":{\"1\":\"1\"},\"record10.show\":{\"1\":\"1\"},\"record10.create\":{\"1\":\"1\"},\"record10.edit\":{\"1\":\"1\"},\"record10.audit\":{\"1\":\"1\"},\"record10.recall\":{\"1\":\"1\"},\"record10.abort\":{\"1\":\"1\"},\"record10.print\":{\"1\":\"1\"},\"record10.delete\":{\"1\":\"1\"},\"record08.index\":{\"1\":\"1\"},\"record08.show\":{\"1\":\"1\"},\"record08.create\":{\"1\":\"1\"},\"record08.edit\":{\"1\":\"1\"},\"record08.audit\":{\"1\":\"1\"},\"record08.recall\":{\"1\":\"1\"},\"record08.abort\":{\"1\":\"1\"},\"record08.print\":{\"1\":\"1\"},\"record08.delete\":{\"1\":\"1\"},\"record09.index\":{\"1\":\"1\"},\"record09.show\":{\"1\":\"1\"},\"record09.create\":{\"1\":\"1\"},\"record09.edit\":{\"1\":\"1\"},\"record09.audit\":{\"1\":\"1\"},\"record09.recall\":{\"1\":\"1\"},\"record09.abort\":{\"1\":\"1\"},\"record09.print\":{\"1\":\"1\"},\"record09.delete\":{\"1\":\"1\"},\"record11.index\":{\"1\":\"1\"},\"record11.show\":{\"1\":\"1\"},\"record11.create\":{\"1\":\"1\"},\"record11.edit\":{\"1\":\"1\"},\"record11.audit\":{\"1\":\"1\"},\"record11.recall\":{\"1\":\"1\"},\"record11.abort\":{\"1\":\"1\"},\"record11.print\":{\"1\":\"1\"},\"record11.delete\":{\"1\":\"1\"},\"warehouse.index\":{\"1\":\"1\"},\"warehouse.create\":{\"1\":\"1\"},\"warehouse.edit\":{\"1\":\"1\"},\"warehouse.delete\":{\"1\":\"1\"},\"location.index\":{\"1\":\"1\"},\"location.create\":{\"1\":\"1\"},\"location.edit\":{\"1\":\"1\"},\"location.delete\":{\"1\":\"1\"},\"type.index\":{\"1\":\"1\"},\"type.create\":{\"1\":\"1\"},\"type.edit\":{\"1\":\"1\"},\"type.delete\":{\"1\":\"1\"},\"category.index\":{\"1\":\"1\"},\"category.create\":{\"1\":\"1\"},\"category.edit\":{\"1\":\"1\"},\"category.delete\":{\"1\":\"1\"},\"report.stockDetail\":{\"1\":\"1\"},\"report.stockTotal\":{\"1\":\"1\"},\"report.stockInOut\":{\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (42, 'produce', '{\"material.index\":{\"16\":\"4\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"20\":\"4\",\"22\":\"4\",\"66\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"89\":\"4\",\"65\":\"1\",\"1\":\"1\"},\"material.show\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"66\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"material.create\":{\"66\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"material.edit\":{\"66\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"material.delete\":{\"66\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.index\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"23\":\"1\",\"66\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"74\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.count\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"23\":\"1\",\"66\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"74\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.audit\":{\"9\":\"1\",\"8\":\"1\",\"66\":\"1\",\"7\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.recall\":{\"66\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.abort\":{\"66\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.show\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"66\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"74\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.create\":{\"66\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.edit\":{\"66\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.print\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"66\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.delete\":{\"66\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"material.plan\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"11\":\"1\",\"10\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"66\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\"},\"plan.planExport\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"23\":\"1\",\"66\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"74\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\"}}'); -INSERT INTO `user_asset` VALUES (43, 'customerCost', '{\"cost.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"34\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"33\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"83\":\"1\",\"1\":\"1\"},\"cost.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"33\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"adjust.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"82\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"83\":\"1\",\"1\":\"1\"},\"adjust.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"compen.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"82\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"83\":\"1\",\"1\":\"1\"},\"compen.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"rebate.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"82\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"7\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"84\":\"5\",\"85\":\"5\",\"83\":\"1\",\"1\":\"1\"},\"rebate.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"7\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"84\":\"1\",\"85\":\"1\",\"83\":\"1\",\"1\":\"1\"},\"cost.create\":{\"1\":\"1\"},\"cost.close\":{\"1\":\"1\"},\"cost.edit\":{\"1\":\"1\"},\"cost.audit\":{\"1\":\"1\"},\"cost.abort\":{\"1\":\"1\"},\"cost.print\":{\"1\":\"1\"},\"cost.delete\":{\"1\":\"1\"},\"cost.batchEdit\":{\"1\":\"1\"},\"adjust.create\":{\"1\":\"1\"},\"adjust.edit\":{\"1\":\"1\"},\"adjust.audit\":{\"1\":\"1\"},\"adjust.abort\":{\"1\":\"1\"},\"adjust.print\":{\"1\":\"1\"},\"adjust.delete\":{\"1\":\"1\"},\"compen.create\":{\"1\":\"1\"},\"compen.edit\":{\"1\":\"1\"},\"compen.audit\":{\"1\":\"1\"},\"compen.abort\":{\"1\":\"1\"},\"compen.print\":{\"1\":\"1\"},\"compen.delete\":{\"1\":\"1\"},\"rebate.create\":{\"1\":\"1\"},\"rebate.edit\":{\"1\":\"1\"},\"rebate.audit\":{\"1\":\"1\"},\"rebate.abort\":{\"1\":\"1\"},\"rebate.print\":{\"1\":\"1\"},\"rebate.delete\":{\"1\":\"1\"},\"category.index\":{\"1\":\"1\"},\"category.show\":{\"1\":\"1\"},\"category.create\":{\"1\":\"1\"},\"category.edit\":{\"1\":\"1\"},\"category.delete\":{\"1\":\"1\"},\"report.saleOrderDetail\":{\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (41, 'stock', '{\"delivery.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"31\":\"4\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"34\":\"4\",\"82\":\"5\",\"49\":\"1\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"23\":\"4\",\"33\":\"4\",\"30\":\"4\",\"66\":\"4\",\"27\":\"4\",\"63\":\"4\",\"2\":\"1\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"delivery.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"31\":\"1\",\"11\":\"1\",\"42\":\"1\",\"50\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"49\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"23\":\"1\",\"33\":\"1\",\"30\":\"1\",\"66\":\"1\",\"27\":\"1\",\"63\":\"1\",\"2\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"delivery.detail\":{\"1\":\"1\"},\"delivery.create\":{\"1\":\"1\"},\"delivery.edit\":{\"1\":\"1\"},\"delivery.audit\":{\"1\":\"1\"},\"delivery.recall\":{\"1\":\"1\"},\"delivery.abort\":{\"1\":\"1\"},\"delivery.print\":{\"1\":\"1\"},\"delivery.delete\":{\"1\":\"1\"},\"delivery.batchEdit\":{\"1\":\"1\"},\"direct.index\":{\"1\":\"1\"},\"direct.show\":{\"1\":\"1\"},\"direct.create\":{\"1\":\"1\"},\"direct.edit\":{\"1\":\"1\"},\"direct.audit\":{\"1\":\"1\"},\"direct.recall\":{\"1\":\"1\"},\"direct.abort\":{\"1\":\"1\"},\"direct.print\":{\"1\":\"1\"},\"direct.delete\":{\"1\":\"1\"},\"allocation.index\":{\"1\":\"1\"},\"allocation.show\":{\"1\":\"1\"},\"allocation.create\":{\"1\":\"1\"},\"allocation.edit\":{\"1\":\"1\"},\"allocation.audit\":{\"1\":\"1\"},\"allocation.recall\":{\"1\":\"1\"},\"allocation.abort\":{\"1\":\"1\"},\"allocation.print\":{\"1\":\"1\"},\"allocation.delete\":{\"1\":\"1\"},\"cancel.index\":{\"1\":\"1\"},\"cancel.show\":{\"1\":\"1\"},\"cancel.create\":{\"1\":\"1\"},\"cancel.edit\":{\"1\":\"1\"},\"cancel.audit\":{\"1\":\"1\"},\"cancel.recall\":{\"1\":\"1\"},\"cancel.abort\":{\"1\":\"1\"},\"cancel.print\":{\"1\":\"1\"},\"cancel.delete\":{\"1\":\"1\"},\"cancel.batchEdit\":{\"1\":\"1\"},\"record01.index\":{\"1\":\"1\"},\"record01.show\":{\"1\":\"1\"},\"record01.create\":{\"1\":\"1\"},\"record01.edit\":{\"1\":\"1\"},\"record01.audit\":{\"1\":\"1\"},\"record01.recall\":{\"1\":\"1\"},\"record01.abort\":{\"1\":\"1\"},\"record01.print\":{\"1\":\"1\"},\"record01.delete\":{\"1\":\"1\"},\"record10.index\":{\"1\":\"1\"},\"record10.show\":{\"1\":\"1\"},\"record10.create\":{\"1\":\"1\"},\"record10.edit\":{\"1\":\"1\"},\"record10.audit\":{\"1\":\"1\"},\"record10.recall\":{\"1\":\"1\"},\"record10.abort\":{\"1\":\"1\"},\"record10.print\":{\"1\":\"1\"},\"record10.delete\":{\"1\":\"1\"},\"record08.index\":{\"1\":\"1\"},\"record08.show\":{\"1\":\"1\"},\"record08.create\":{\"1\":\"1\"},\"record08.edit\":{\"1\":\"1\"},\"record08.audit\":{\"1\":\"1\"},\"record08.recall\":{\"1\":\"1\"},\"record08.abort\":{\"1\":\"1\"},\"record08.print\":{\"1\":\"1\"},\"record08.delete\":{\"1\":\"1\"},\"record09.index\":{\"1\":\"1\"},\"record09.show\":{\"1\":\"1\"},\"record09.create\":{\"1\":\"1\"},\"record09.edit\":{\"1\":\"1\"},\"record09.audit\":{\"1\":\"1\"},\"record09.recall\":{\"1\":\"1\"},\"record09.abort\":{\"1\":\"1\"},\"record09.print\":{\"1\":\"1\"},\"record09.delete\":{\"1\":\"1\"},\"record11.index\":{\"1\":\"1\"},\"record11.show\":{\"1\":\"1\"},\"record11.create\":{\"1\":\"1\"},\"record11.edit\":{\"1\":\"1\"},\"record11.audit\":{\"1\":\"1\"},\"record11.recall\":{\"1\":\"1\"},\"record11.abort\":{\"1\":\"1\"},\"record11.print\":{\"1\":\"1\"},\"record11.delete\":{\"1\":\"1\"},\"warehouse.index\":{\"1\":\"1\"},\"warehouse.create\":{\"1\":\"1\"},\"warehouse.edit\":{\"1\":\"1\"},\"warehouse.delete\":{\"1\":\"1\"},\"location.index\":{\"1\":\"1\"},\"location.create\":{\"1\":\"1\"},\"location.edit\":{\"1\":\"1\"},\"location.delete\":{\"1\":\"1\"},\"type.index\":{\"1\":\"1\"},\"type.create\":{\"1\":\"1\"},\"type.edit\":{\"1\":\"1\"},\"type.delete\":{\"1\":\"1\"},\"category.index\":{\"1\":\"1\"},\"category.create\":{\"1\":\"1\"},\"category.edit\":{\"1\":\"1\"},\"category.delete\":{\"1\":\"1\"},\"report.stockDetail\":{\"1\":\"1\"},\"report.stockTotal\":{\"1\":\"1\"},\"report.stockInOut\":{\"1\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (42, 'produce', '{\"material.index\":{\"16\":\"4\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"20\":\"4\",\"22\":\"4\",\"66\":\"4\",\"19\":\"4\",\"72\":\"4\",\"89\":\"4\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"material.show\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"66\":\"1\",\"19\":\"1\",\"72\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"plan.index\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"23\":\"1\",\"66\":\"1\",\"19\":\"1\",\"72\":\"1\",\"74\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"plan.count\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"23\":\"1\",\"66\":\"1\",\"19\":\"1\",\"72\":\"1\",\"74\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"plan.audit\":{\"9\":\"1\",\"8\":\"1\",\"66\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"plan.show\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"66\":\"1\",\"19\":\"1\",\"72\":\"1\",\"74\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"plan.print\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"66\":\"1\",\"19\":\"1\",\"72\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\"},\"plan.planExport\":{\"16\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"20\":\"1\",\"22\":\"1\",\"23\":\"1\",\"66\":\"1\",\"19\":\"1\",\"72\":\"1\",\"74\":\"1\",\"89\":\"1\",\"65\":\"1\",\"1\":\"1\",\"7\":\"1\"}}'); +INSERT INTO `user_asset` VALUES (43, 'customerCost', '{\"cost.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"79\":\"5\",\"11\":\"4\",\"42\":\"5\",\"10\":\"4\",\"34\":\"4\",\"82\":\"5\",\"41\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"33\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"cost.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"79\":\"1\",\"11\":\"1\",\"42\":\"1\",\"10\":\"1\",\"34\":\"1\",\"82\":\"1\",\"41\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"33\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"adjust.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"82\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"adjust.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"compen.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"82\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"compen.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"rebate.index\":{\"16\":\"4\",\"87\":\"5\",\"15\":\"4\",\"14\":\"4\",\"9\":\"4\",\"78\":\"4\",\"11\":\"4\",\"10\":\"4\",\"82\":\"5\",\"71\":\"4\",\"8\":\"4\",\"86\":\"4\",\"70\":\"4\",\"63\":\"4\",\"73\":\"4\",\"19\":\"4\",\"72\":\"4\",\"75\":\"4\",\"76\":\"4\",\"74\":\"4\",\"85\":\"5\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"rebate.show\":{\"16\":\"1\",\"87\":\"1\",\"15\":\"1\",\"14\":\"1\",\"9\":\"1\",\"78\":\"1\",\"11\":\"1\",\"10\":\"1\",\"82\":\"1\",\"71\":\"1\",\"8\":\"1\",\"86\":\"1\",\"70\":\"1\",\"63\":\"1\",\"73\":\"1\",\"19\":\"1\",\"72\":\"1\",\"75\":\"1\",\"76\":\"1\",\"74\":\"1\",\"85\":\"1\",\"1\":\"1\",\"7\":\"1\",\"84\":\"1\",\"83\":\"1\"},\"cost.create\":{\"1\":\"1\",\"7\":\"1\"},\"cost.close\":{\"1\":\"1\",\"7\":\"1\"},\"cost.edit\":{\"1\":\"1\",\"7\":\"1\"},\"cost.audit\":{\"1\":\"1\",\"7\":\"1\"},\"cost.abort\":{\"1\":\"1\",\"7\":\"1\"},\"cost.print\":{\"1\":\"1\",\"7\":\"1\"},\"cost.delete\":{\"1\":\"1\",\"7\":\"1\"},\"cost.batchEdit\":{\"1\":\"1\",\"7\":\"1\"},\"adjust.create\":{\"1\":\"1\",\"7\":\"1\"},\"adjust.edit\":{\"1\":\"1\",\"7\":\"1\"},\"adjust.audit\":{\"1\":\"1\",\"7\":\"1\"},\"adjust.abort\":{\"1\":\"1\",\"7\":\"1\"},\"adjust.print\":{\"1\":\"1\",\"7\":\"1\"},\"adjust.delete\":{\"1\":\"1\",\"7\":\"1\"},\"compen.create\":{\"1\":\"1\",\"7\":\"1\"},\"compen.edit\":{\"1\":\"1\",\"7\":\"1\"},\"compen.audit\":{\"1\":\"1\",\"7\":\"1\"},\"compen.abort\":{\"1\":\"1\",\"7\":\"1\"},\"compen.print\":{\"1\":\"1\",\"7\":\"1\"},\"compen.delete\":{\"1\":\"1\",\"7\":\"1\"},\"rebate.create\":{\"1\":\"1\",\"7\":\"1\"},\"rebate.edit\":{\"1\":\"1\",\"7\":\"1\"},\"rebate.audit\":{\"1\":\"1\",\"7\":\"1\"},\"rebate.abort\":{\"1\":\"1\",\"7\":\"1\"},\"rebate.print\":{\"1\":\"1\",\"7\":\"1\"},\"rebate.delete\":{\"1\":\"1\",\"7\":\"1\"},\"category.index\":{\"1\":\"1\",\"7\":\"1\"},\"category.show\":{\"1\":\"1\",\"7\":\"1\"},\"category.create\":{\"1\":\"1\",\"7\":\"1\"},\"category.edit\":{\"1\":\"1\",\"7\":\"1\"},\"category.delete\":{\"1\":\"1\",\"7\":\"1\"},\"report.saleOrderDetail\":{\"1\":\"1\",\"7\":\"1\"}}'); INSERT INTO `user_asset` VALUES (46, 'wechat', '{\"config.menu\":{\"1\":\"1\"},\"config.config\":{\"1\":\"1\"}}'); -- ---------------------------- diff --git a/public/assets/dist/gdoo.min.js b/public/assets/dist/gdoo.min.js index 2813567b..58825a54 100644 --- a/public/assets/dist/gdoo.min.js +++ b/public/assets/dist/gdoo.min.js @@ -1 +1 @@ -function _typeof(e){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}!function(e,t){var a="agDropdownCellEditor",i="ag.dropdown.celleditor",o={maxHeight:200},n=27,r=9,l=37,s=38,d=39,c=40,u=13,p=16,f=function(t,i){this.grid=i.grid,this.config=i.config,this.items=i.data.items,this.selected=i.data.selected,this.hook=i.hook,this.arrow=i.arrow||"icon-search",this.name=i.name,this.onSelect=i.select||function(){},this.$input=e(t),this.settings=e.extend({},o,i),this.init(),e.fn[a].instances.push(this)};e.extend(f.prototype,{init:function(){this._construct(),this._events()},_construct:function(){this.$container=e('
'),this.$arrow=e('
'),this.$dropdown=e('
')},i.prototype.getGui=function(){return this.eGui},o.prototype.init=function(e){this.eGui=document.createElement("span"),this.eGui.innerHTML=e.value||""},o.prototype.getGui=function(){return this.eGui},n.prototype.init=function(e){var t=e.api.gridCore.gridOptions;if(!e.node.rowPinned&&null!=e.data){var a=e.data,i="";a.master_id>0&&e.colDef.options.forEach((function(e){if(e.display){var o=''+e.name+"";i+=t.actionCellBeforeRender(o,e,a)||""}})),this.eGui=document.createElement("span"),this.eGui.innerHTML=i}},n.prototype.getGui=function(){return this.eGui},r.prototype.init=function(e){this.grid=e,this.selectedKey=null,this.items=e.colDef.cellEditorParams.values,this.eInput=document.createElement("input"),this.eInput.value=e.value||"",this.eInput.className="ag-cell-edit-input form-control"},r.prototype.getGui=function(e){return this.eInput},r.prototype.afterGuiAttached=function(){var e=this,a=e.grid,i=e.eInput.value;t(e.eInput).agDropdownCellEditor({grid:e,arrow:"fa-caret-down",data:{items:e.items,selected:a.data[a.select_key]},select:function(t){t?(a.data[a.select_key]=t.id,e.eInput.value=t.name,e.selectedKey=t.id):e.eInput.value=i,a.stopEditing()}}),e.eInput.focus(),e.eInput.select()},r.prototype.getValue=function(){return this.eInput.value},r.prototype.destroy=function(){t("body").find(".combo-select").remove()},l.prototype.init=function(e){var t=e.value,a=e.colDef.cellEditorParams.values;this.eGui=document.createElement("div"),this.eGui.innerHTML=a[t]||a[0]},l.prototype.getGui=function(){return this.eGui},s.prototype.init=function(e){var t=e.value;this.eInput=document.createElement("input"),this.eInput.type="checkbox",this.eInput.checked=t,this.eInput.value=t},s.prototype.getGui=function(e){return this.eInput},s.prototype.afterGuiAttached=function(){this.eInput.focus(),this.eInput.select()},s.prototype.getValue=function(){return this.eInput.checked?1:0},s.prototype.destroy=function(){},d.prototype.init=function(e){this.params=e,this.eInput=document.createElement("div"),this.eInput.tabIndex="-1";var a=e.colDef.field+"_"+e.data.id,i=e.query;i.multi=1,i.is_grid=1,i.url=e.url,i.grid_id=e.data.id,i.title=e.title;var o="";t.each(i,(function(e,t){o+=" data-"+e+'="'+t+'"'})),this.query=i,this.eInput.innerHTML='',this.eInput.className="ag-input-wrapper ag-input-dialog-wrapper"},d.prototype.getGui=function(e){return this.eInput},d.prototype.afterGuiAttached=function(){var e=this;t(e.eInput).find("input").gdooSuggest({item:e.params.data,query:e.query}).on("onSelect",(function(t,a){e.params.data[e.query.name]=a[e.query.name],e.eInput.querySelector("input").value=a[e.query.name]})),e.eInput.querySelector("input").select()},d.prototype.getValue=function(){return this.params.data[this.params.query.name]},d.prototype.destroy=function(){t(this.eInput).find("input").off()},d.prototype.isPopup=function(){return!1},c.prototype.init=function(e){this.params=e.colDef.cellEditorParams,this.eInput=document.createElement("div"),this.eInput.innerHTML='',this.eInput.className="ag-input-wrapper ag-input-date-wrapper"},c.prototype.getGui=function(e){return this.eInput},c.prototype.afterGuiAttached=function(){this.eInput.querySelector("input").click()},c.prototype.getValue=function(){return this.eInput.querySelector("input").value},c.prototype.destroy=function(){},e.agGridOptions=function(){var e={defaultColDef:{minWidth:100,enableRowGroup:!0,enablePivot:!0,enableValue:!0,sortable:!0,resizable:!0,filter:!0,comparator:function(e,t){return"htmlCellRenderer"==this.cellRenderer?(e=delHtmlTag(e),t=delHtmlTag(t),e.localeCompare(t)):"string"==typeof e?e.localeCompare(t):e>t?1:e数据加载中...',overlayNoRowsTemplate:'
暂无数据
暂无数据
',generatePinnedBottomData:function(){var t=this,a={},i=!1;e.columnApi.getAllGridColumns().forEach((function(e){e.colDef.calcFooter&&(i=!0,a[e.colId]=t.calculatePinnedBottomData(e))})),i&&t.api.setPinnedBottomRowData([a])},calculatePinnedBottomData:function(t){var a=0;return e.api.forEachNode((function(e){a+=toNumber(e.data[t.colId])})),0==a?"":a},actionCellBeforeRender:function(e,t,a){return e},remoteData:function(a,i){var o=this,n=e.remoteParams;for(var r in a)n[r]=a[r];e.api.showLoadingOverlay(),t.post(e.remoteDataUrl,n,(function(a){if(e.remoteBeforeSuccess.call(e,a),"function"==typeof i&&i(a),a.per_page)if(null===o.pagerDom){var n=o.api.gridCore.eGridDiv,r=n.id+"-pager";t(n).after('
'),o.pagerDom=t("#"+r).Paging({pagesize:a.per_page,count:a.total,current:a.current_page,pageSizeList:[50,100,500,1e3,2e3,5e3,1e4,2e4,5e4],callback:function(e,t,a){o.remoteData2({page:e,limit:t})}})}else o.pagerDom[0].render({pagesize:a.per_page,count:a.total,current:a.current_page});e.api.hideOverlay(),e.api.setRowData(a.data),e.generatePinnedBottomData(),e.remoteAfterSuccess.call(e,a)}),"json")},remoteData2:function(a,i){var o=e.remoteParams;for(var n in a)o[n]=a[n];e.api.showLoadingOverlay(),t.post(e.remoteDataUrl,o,(function(t){e.remoteBeforeSuccess.call(e,t),"function"==typeof i&&i(t),e.api.hideOverlay(),e.api.setRowData(t.data),e.generatePinnedBottomData(),e.remoteAfterSuccess.call(e,t)}),"json")}};return e}}(window,jQuery),function(e){var t=function(e){var t=this;t.args=e,t.trigger=function(e){if("function"==typeof t.args[e]){for(var a=[],i=1;i0&&i.action.rowDoubleClick&&i.action.rowDoubleClick(e.data)},this.div=function(t){var a=document.querySelector("#"+this.table+"-grid");return a.style.height=this.getPanelHeight(t),new agGrid.Grid(a,this.grid),e(a).on("click",'[data-toggle="event"]',(function(){var t=e(this).data();t.master_id>0&&i.action[t.action](t)})),a},this.getPanelHeight=function(t){return"calc(100vh - "+(e(".gdoo-list-grid").position().top+t+"px")+")"},this.init=function(a){var i=this;if(0==i.header.init){var o=a.header;i.header.init=!0,i.header.create_btn=o.create_btn,i.header.trash_btn=o.trash_btn,i.header.name=o.name,i.header.table=t;var n=o.search_form;if(n.simple_search=o.simple_search_form,i.header.search_form=n,i.search.forms=n.forms,i.action.table=t,i.action.name=o.master_name,i.action.bill_url=o.bill_uri,o.access&&(i.header.access=o.access),o.right_buttons&&(i.header.right_buttons=o.right_buttons),o.left_buttons&&(i.header.left_buttons=o.left_buttons),o.buttons&&(i.header.center_buttons=o.buttons),o.bys)if(i.header.bys=o.bys,n.params.by){i.header.bys.active=n.params.by;for(var r=0;r