admin
2024-01-10 7f291910791bdb9a545dc12ef36c3c359cfa4e59
提交 | 用户 | 时间
71e81e 1 layui.use(['table', 'admin', 'ax', 'func'], function () {
2     var $ = layui.$;
3     var table = layui.table;
4     var $ax = layui.ax;
5     var admin = layui.admin;
6     var func = layui.func;
7
8     /**
9      * 报工记录管理
10      */
11     var ProductionOrderRecords = {
12         tableId: "productionOrderRecordsTable"
13     };
14
15     /**
16      * 初始化表格的列
17      */
18     ProductionOrderRecords.initColumn = function () {
19         return [[
20             {type: 'checkbox'},
21             {field: 'id', hide: true, title: 'ID'},
22             {field: 'productNo', sort: true, title: '产品序列号',minWidth:160},
23             {field: 'workOrderNo', sort: true, title: '生产工单号',minWidth:160},
24             /* {field: 'drawingNo', sort: true, title: '图号'},*/
25             {field: 'materialCode', sort: true, title: '物料编号',minWidth:160},
26             /*   {field: 'materialName', sort: true, title: '物料描述'},*/
27             {field: 'locationCode', sort: true, title: '工位编号',minWidth:110},
28             /* {field: 'locationName', sort: true, title: '工位名称'},*/
29             {field: 'locationType', sort: true, title: '工位类型',minWidth:110},//(1上线工位2过程工位3下线工位)
30             {field: 'productQty', sort: true, title: '生产数量',minWidth:110},
31             {field: 'startTime', sort: true, title: '开始时间',minWidth:160},
32             {field: 'endTime', sort: true, title: '结束时间',minWidth:160},
33             {field: 'whetherPass', sort: true, title: '是否合格',minWidth:110},//(1是0否)
34             {field: 'notPassReason', sort: true, title: '不合格原因',minWidth:110},
35             {field: 'operationUser', sort: true, title: '操作用户',minWidth:110}
36             /*{field: 'spareField1', sort: true, title: '预留字段1'},
37             {field: 'spareField2', sort: true, title: '预留字段2'},
38             {field: 'spareField3', sort: true, title: '预留字段3'},
39             {field: 'spareField4', sort: true, title: '预留字段4'},
40             {field: 'remarks', sort: true, title: '备注'},
41             {field: 'serialNumber', sort: true, title: '顺序号'},
42             {align: 'center', toolbar: '#tableBar', title: '操作'}*/
43         ]];
44     };
45
46     /**
47      * 点击查询按钮
48      */
49     ProductionOrderRecords.search = function () {
50         var queryData = {};
51         queryData['productNo'] = $("#productNo").val();
52         queryData['workOrderNo'] = $("#workOrderNo").val();
53         queryData['materialCode'] = $("#materialCode").val();
54         queryData['locationCode'] = $("#locationCode").val();
55         table.reload(ProductionOrderRecords.tableId, {
56             where: queryData, page: {curr: 1}
57         });
58     };
59
60     /**
61      * 跳转到添加页面
62      */
63     ProductionOrderRecords.jumpAddPage = function () {
64         window.location.href = Feng.ctxPath + '/productionOrderRecords/add'
65     };
66
67     /**
68     * 跳转到编辑页面
69     *
70     * @param data 点击按钮时候的行数据
71     */
72     ProductionOrderRecords.jumpEditPage = function (data) {
73         window.location.href = Feng.ctxPath + '/productionOrderRecords/edit?id=' + data.id
74     };
75
76     /**
77      * 导出excel按钮
78      */
79     ProductionOrderRecords.exportExcel = function () {
80         var checkRows = table.checkStatus(ProductionOrderRecords.tableId);
81         if (checkRows.data.length === 0) {
82             Feng.error("请选择要导出的数据");
83         } else {
84             table.exportFile(tableResult.config.id, checkRows.data, 'xls');
85         }
86     };
87
88     /**
89      * 点击删除
90      *
91      * @param data 点击按钮时候的行数据
92      */
93     ProductionOrderRecords.onDeleteItem = function (data) {
94         var operation = function () {
95             var ajax = new $ax(Feng.ctxPath + "/productionOrderRecords/delete", function (data) {
96                 Feng.success("删除成功!");
97                 table.reload(ProductionOrderRecords.tableId);
98             }, function (data) {
99                 Feng.error("删除失败!" + data.responseJSON.message + "!");
100             });
101             ajax.set("id", data.id);
102             ajax.start();
103         };
104         Feng.confirm("是否删除?", operation);
105     };
106
107     // 渲染表格
108     var tableResult = table.render({
109         elem: '#' + ProductionOrderRecords.tableId,
110         url: Feng.ctxPath + '/productionOrderRecords/list',
111         toolbar: '#toolbarDemo',
112         page: true,
113         height: "full-158",
114         cellMinWidth: 100,
115         cols: ProductionOrderRecords.initColumn()
116     });
117
118     // 搜索按钮点击事件
119     $('#btnSearch').click(function () {
120         ProductionOrderRecords.search();
121     });
122
123     // 添加按钮点击事件
124     $('#btnAdd').click(function () {
125
126     ProductionOrderRecords.jumpAddPage();
127
128     });
129
130     // 导出excel
131     $('#btnExp').click(function () {
132         ProductionOrderRecords.exportExcel();
133     });
134
135     // 工具条点击事件
136     table.on('tool(' + ProductionOrderRecords.tableId + ')', function (obj) {
137         var data = obj.data;
138         var layEvent = obj.event;
139
140         if (layEvent === 'edit') {
141             ProductionOrderRecords.jumpEditPage(data);
142         } else if (layEvent === 'delete') {
143             ProductionOrderRecords.onDeleteItem(data);
144         }
145     });
146 });