| | |
| | | convert(param, wrapper); |
| | | allLike(WrkMastCrn.class, param.keySet(), wrapper, condition); |
| | | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} |
| | | wrapper.orderBy("io_time", false); |
| | | return R.ok(wrkMastCrnService.selectPage(new Page<>(curr, limit), wrapper)); |
| | | } |
| | | |
| | |
| | | convert(param, wrapper); |
| | | allLike(WrkMastCrnLog.class, param.keySet(), wrapper, condition); |
| | | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} |
| | | wrapper.orderBy("io_time", false); |
| | | return R.ok(wrkMastCrnLogService.selectPage(new Page<>(curr, limit), wrapper)); |
| | | } |
| | | |
| | |
| | | convert(param, wrapper); |
| | | allLike(WrkMastExecute.class, param.keySet(), wrapper, condition); |
| | | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} |
| | | wrapper.orderBy("io_time", false); |
| | | return R.ok(wrkMastExecuteService.selectPage(new Page<>(curr, limit), wrapper)); |
| | | } |
| | | |
| | |
| | | convert(param, wrapper); |
| | | allLike(WrkMastExecuteLog.class, param.keySet(), wrapper, condition); |
| | | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} |
| | | wrapper.orderBy("io_time", false); |
| | | return R.ok(wrkMastExecuteLogService.selectPage(new Page<>(curr, limit), wrapper)); |
| | | } |
| | | |
| | |
| | | convert(param, wrapper); |
| | | allLike(WrkMastSplitTwin.class, param.keySet(), wrapper, condition); |
| | | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} |
| | | wrapper.orderBy("update_time", false); |
| | | return R.ok(wrkMastSplitTwinService.selectPage(new Page<>(curr, limit), wrapper)); |
| | | } |
| | | |
| | |
| | | convert(param, wrapper); |
| | | allLike(WrkMastSplitTwinLog.class, param.keySet(), wrapper, condition); |
| | | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} |
| | | wrapper.orderBy("update_time", false); |
| | | return R.ok(wrkMastSplitTwinLogService.selectPage(new Page<>(curr, limit), wrapper)); |
| | | } |
| | | |
| | |
| | | convert(param, wrapper); |
| | | allLike(WrkMastSta.class, param.keySet(), wrapper, condition); |
| | | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} |
| | | wrapper.orderBy("update_time", false); |
| | | return R.ok(wrkMastStaService.selectPage(new Page<>(curr, limit), wrapper)); |
| | | } |
| | | |
| | |
| | | convert(param, wrapper); |
| | | allLike(WrkMastStaLog.class, param.keySet(), wrapper, condition); |
| | | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} |
| | | wrapper.orderBy("update_time", false); |
| | | return R.ok(wrkMastStaLogService.selectPage(new Page<>(curr, limit), wrapper)); |
| | | } |
| | | |
| | |
| | | package com.zy.asrs.entity; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | |
| | | private Integer wrkSts; |
| | | |
| | | /** |
| | | * 任务类型 0: 未知 1: 开门 2: 关门 3: 入硫化罐 4: 入冷却槽 5: 穿梭车进冷却槽 6: 穿梭车离开冷却槽 7: 出冷却槽 |
| | | * 任务类型 0: 未知 1: 开进料门 2: 关进料门 3: 开出料门 4: 关出料门 5: 入硫化罐 6: 入冷却槽 7: 穿梭车进冷却槽 B=>C 8: 穿梭车离开冷却槽 C=>B 9: 出冷却槽 10:A=>B 11:B=>A |
| | | */ |
| | | @ApiModelProperty(value= "任务类型 0: 未知 1: 开门 2: 关门 3: 入硫化罐 4: 入冷却槽 5: 穿梭车进冷却槽 6: 穿梭车离开冷却槽 7: 出冷却槽 ") |
| | | @ApiModelProperty(value= "任务类型 0: 未知 1: 开进料门 2: 关进料门 3: 开出料门 4: 关出料门 5: 入硫化罐 6: 入冷却槽 7: 穿梭车进冷却槽 B=>C 8: 穿梭车离开冷却槽 C=>B 9: 出冷却槽 10:A=>B 11:B=>A ") |
| | | @TableField("io_type") |
| | | private Integer ioType; |
| | | |
| | |
| | | } |
| | | |
| | | public String getWrkSts$(){ |
| | | BasJarMastStatusService service = SpringUtils.getBean(BasJarMastStatusService.class); |
| | | BasJarMastStatus basJarMastStatus = service.selectById(this.wrkSts); |
| | | if (!Cools.isEmpty(basJarMastStatus)){ |
| | | return String.valueOf(basJarMastStatus.getId()); |
| | | try{ |
| | | if (Cools.isEmpty(this.wrkSts)){ |
| | | return this.wrkSts+":未知"; |
| | | } |
| | | BasJarMastStatusService service = SpringUtils.getBean(BasJarMastStatusService.class); |
| | | // BasJarMastStatus basJarMastStatus = service.selectById(this.wrkSts); |
| | | BasJarMastStatus basJarMastStatus = service.selectOne(new EntityWrapper<BasJarMastStatus>().eq("box_type",this.wrkSts.toString())); |
| | | if (!Cools.isEmpty(basJarMastStatus)){ |
| | | return String.valueOf(basJarMastStatus.getBoxSpecs()); |
| | | } |
| | | } catch (Exception e){ |
| | | return this.wrkSts+":未知==>异常:"+e.getMessage(); |
| | | } |
| | | return null; |
| | | return this.wrkSts+":未知"; |
| | | } |
| | | |
| | | //任务类型 0: 未知 1: 开进料门 2: 关进料门 3: 开出料门 4: 关出料门 5: 入硫化罐 6: 入冷却槽 7: 穿梭车进冷却槽 B=>C 8: 穿梭车离开冷却槽 C=>B 9: 出冷却槽 10:A=>B 11:B=>A |
| | | |
| | | public String getIoType$(){ |
| | | if (null == this.ioType){ return null; } |
| | | if (null == this.ioType){ return "未知"; } |
| | | switch (this.ioType){ |
| | | case 0: |
| | | return "未知"; |
| | | case 1: |
| | | return "开门"; |
| | | return "开进料门"; |
| | | case 2: |
| | | return "关门"; |
| | | return "关进料门"; |
| | | case 3: |
| | | return "入硫化罐"; |
| | | return "开出料门"; |
| | | case 4: |
| | | return "入冷却槽"; |
| | | return "关出料门"; |
| | | case 5: |
| | | return "穿梭车进冷却槽"; |
| | | return "入硫化罐"; |
| | | case 6: |
| | | return "穿梭车离开冷却槽"; |
| | | return "入冷却槽"; |
| | | case 7: |
| | | return "B=>C"; |
| | | case 8: |
| | | return "C=>B"; |
| | | case 9: |
| | | return "出冷却槽"; |
| | | case 10: |
| | | return "A=>B"; |
| | | case 11: |
| | | return "B=>A"; |
| | | case 100: |
| | | return "充电任务"; |
| | | default: |
| | | return String.valueOf(this.ioType); |
| | | } |
| | |
| | | package com.zy.asrs.entity; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | |
| | | } |
| | | |
| | | public String getWrkSts$(){ |
| | | BasJarMastStatusService service = SpringUtils.getBean(BasJarMastStatusService.class); |
| | | BasJarMastStatus basJarMastStatus = service.selectById(this.wrkSts); |
| | | if (!Cools.isEmpty(basJarMastStatus)){ |
| | | return String.valueOf(basJarMastStatus.getId()); |
| | | try{ |
| | | if (Cools.isEmpty(this.wrkSts)){ |
| | | return this.wrkSts+":未知"; |
| | | } |
| | | BasJarMastStatusService service = SpringUtils.getBean(BasJarMastStatusService.class); |
| | | // BasJarMastStatus basJarMastStatus = service.selectById(this.wrkSts); |
| | | BasJarMastStatus basJarMastStatus = service.selectOne(new EntityWrapper<BasJarMastStatus>().eq("box_type",this.wrkSts.toString())); |
| | | if (!Cools.isEmpty(basJarMastStatus)){ |
| | | return String.valueOf(basJarMastStatus.getBoxSpecs()); |
| | | } |
| | | } catch (Exception e){ |
| | | return this.wrkSts+":未知==>异常:"+e.getMessage(); |
| | | } |
| | | return null; |
| | | return this.wrkSts+":未知"; |
| | | } |
| | | |
| | | //任务类型 0: 未知 1: 开进料门 2: 关进料门 3: 开出料门 4: 关出料门 5: 入硫化罐 6: 入冷却槽 7: 穿梭车进冷却槽 B=>C 8: 穿梭车离开冷却槽 C=>B 9: 出冷却槽 10:A=>B 11:B=>A |
| | | |
| | | public String getIoType$(){ |
| | | if (null == this.ioType){ return null; } |
| | | if (null == this.ioType){ return "未知"; } |
| | | switch (this.ioType){ |
| | | case 0: |
| | | return "未知"; |
| | | case 1: |
| | | return "开门"; |
| | | return "开进料门"; |
| | | case 2: |
| | | return "关门"; |
| | | return "关进料门"; |
| | | case 3: |
| | | return "入硫化罐"; |
| | | return "开出料门"; |
| | | case 4: |
| | | return "入冷却槽"; |
| | | return "关出料门"; |
| | | case 5: |
| | | return "穿梭车进冷却槽"; |
| | | return "入硫化罐"; |
| | | case 6: |
| | | return "穿梭车离开冷却槽"; |
| | | return "入冷却槽"; |
| | | case 7: |
| | | return "B=>C"; |
| | | case 8: |
| | | return "C=>B"; |
| | | case 9: |
| | | return "出冷却槽"; |
| | | case 10: |
| | | return "A=>B"; |
| | | case 11: |
| | | return "B=>A"; |
| | | case 100: |
| | | return "充电任务"; |
| | | default: |
| | | return String.valueOf(this.ioType); |
| | | } |
| | |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#btn-export', N'导出', '', '3', '4', '1'); |
| | | |
| | | -- cs |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus/basJarMastStatus.html', N'硫化罐状态', '142', '2', '21', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus/basJarMastStatus.html', N'硫化区域任务状态', '142', '2', '21', '1'); |
| | | |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#view', N'查询', '60610', '3', '0', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#btn-add', N'新增', '60610', '3', '1', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#btn-edit', N'编辑', '60610', '3', '2', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#btn-delete', N'删除', '60610', '3', '3', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#btn-export', N'导出', '60610', '3', '4', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#view', N'查询', '60646', '3', '0', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#btn-add', N'新增', '60646', '3', '1', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#btn-edit', N'编辑', '60646', '3', '2', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#btn-delete', N'删除', '60646', '3', '3', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'basJarMastStatus#btn-export', N'导出', '60646', '3', '4', '1'); |
| | |
| | | insert into `sys_resource` ( `code`, `name`, `resource_id`, `level`, `sort`, `status`) values ( 'wrkMastExecute#btn-export', '导出', '', '3', '4', '1'); |
| | | |
| | | -- sqlserver |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute/wrkMastExecute.html', N'wrkMastExecute管理', null, '2', null, '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute/wrkMastExecute.html', N'硫化区域执行任务档案', '221', '2', '14', '1'); |
| | | |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#view', N'查询', '', '3', '0', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#btn-add', N'新增', '', '3', '1', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#btn-edit', N'编辑', '', '3', '2', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#btn-delete', N'删除', '', '3', '3', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#btn-export', N'导出', '', '3', '4', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#view', N'查询', '60634', '3', '0', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#btn-add', N'新增', '60634', '3', '1', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#btn-edit', N'编辑', '60634', '3', '2', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#btn-delete', N'删除', '60634', '3', '3', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecute#btn-export', N'导出', '60634', '3', '4', '1'); |
| | |
| | | insert into `sys_resource` ( `code`, `name`, `resource_id`, `level`, `sort`, `status`) values ( 'wrkMastExecuteLog#btn-export', '导出', '', '3', '4', '1'); |
| | | |
| | | -- sqlserver |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog/wrkMastExecuteLog.html', N'wrkMastExecuteLog管理', null, '2', null, '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog/wrkMastExecuteLog.html', N'硫化区域执行任务历史档案', '221', '2', '15', '1'); |
| | | |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#view', N'查询', '', '3', '0', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#btn-add', N'新增', '', '3', '1', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#btn-edit', N'编辑', '', '3', '2', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#btn-delete', N'删除', '', '3', '3', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#btn-export', N'导出', '', '3', '4', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#view', N'查询', '60640', '3', '0', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#btn-add', N'新增', '60640', '3', '1', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#btn-edit', N'编辑', '60640', '3', '2', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#btn-delete', N'删除', '60640', '3', '3', '1'); |
| | | insert [dbo].[sys_resource] ( [code], [name], [resource_id], [level], [sort], [status]) values ( N'wrkMastExecuteLog#btn-export', N'导出', '60640', '3', '4', '1'); |
| | |
| | | cellMinWidth: 50, |
| | | height: 'full-120', |
| | | cols: [[ |
| | | {type: 'checkbox'} |
| | | ,{field: 'id', align: 'center',title: 'ID'} |
| | | ,{field: 'boxSpecs', align: 'center',title: '任务号'} |
| | | ,{field: 'boxType', align: 'center',title: '堆垛机'} |
| | | // {type: 'checkbox'}, |
| | | {field: 'id', align: 'center',title: 'ID', hide : true} |
| | | ,{field: 'boxType', align: 'center',title: '工作状态代号'} |
| | | ,{field: 'boxSpecs', align: 'center',title: '工作状态'} |
| | | |
| | | ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120} |
| | | ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120,hide : true} |
| | | ]], |
| | | request: { |
| | | pageName: 'curr', |
| | |
| | | ,{field: 'sourceLocNoTwo', align: 'center',title: '源库位2', hide: true} |
| | | ,{field: 'ioTime$', align: 'center',title: '工作时间', hide: true} |
| | | ,{field: 'modiUser$', align: 'center',title: '修改人员', hide: true} |
| | | ,{field: 'modiTime$', align: 'center',title: '修改时间', hide: true} |
| | | ,{field: 'modiTime$', align: 'center',title: '修改时间', hide: false} |
| | | |
| | | ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120} |
| | | ]], |
| | |
| | | ,{field: 'sourceLocNoTwo', align: 'center',title: '源库位2', hide: true} |
| | | ,{field: 'ioTime$', align: 'center',title: '工作时间', hide: true} |
| | | ,{field: 'modiUser$', align: 'center',title: '修改人员', hide: true} |
| | | ,{field: 'modiTime$', align: 'center',title: '修改时间', hide: true} |
| | | ,{field: 'modiTime$', align: 'center',title: '修改时间', hide: false} |
| | | |
| | | ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120, hide: true} |
| | | ]], |
| | |
| | | height: 'full-120', |
| | | cols: [[ |
| | | {type: 'checkbox'} |
| | | ,{field: 'id', align: 'center',title: 'ID'} |
| | | ,{field: 'wrkNo', align: 'center',title: '工作号'} |
| | | ,{field: 'enterStaNo', align: 'center',title: '入库源站点'} |
| | | ,{field: 'outStaNo', align: 'center',title: '入库目标站点'} |
| | | ,{field: 'jarEnterStaNo', align: 'center',title: '入硫化罐站点'} |
| | | ,{field: 'jarOutStaNo', align: 'center',title: '出硫化罐站点'} |
| | | ,{field: 'jarId', align: 'center',title: '设备ID'} |
| | | ,{field: 'jarRegin', align: 'center',title: '区域'} |
| | | ,{field: 'status', align: 'center',title: '状态'} |
| | | ,{field: 'steId', align: 'center',title: '穿梭板'} |
| | | ,{field: 'rgvId', align: 'center',title: 'RGV'} |
| | | ,{field: 'ioTime$', align: 'center',title: '作业时间'} |
| | | ,{field: 'modiTime$', align: 'center',title: '创建时间'} |
| | | ,{field: 'appeTime$', align: 'center',title: '更新时间'} |
| | | ,{field: 'wrkType$', align: 'center',title: '任务状态'} |
| | | ,{field: 'wrkSts$', align: 'center',title: '工作状态'} |
| | | ,{field: 'ioType$', align: 'center',title: '任务类型'} |
| | | ,{field: 'type$', align: 'center',title: '设备'} |
| | | ,{field: 'rgvEndId', align: 'center',title: '尾部穿梭板'} |
| | | ,{field: 'id', align: 'center',title: 'ID', hide: true} |
| | | ,{field: 'wrkNo', align: 'center',title: '工作号', hide: false} |
| | | ,{field: 'wrkType$', align: 'center',title: '任务状态', hide: false} |
| | | ,{field: 'wrkSts$', align: 'center',title: '工作状态', hide: false} |
| | | ,{field: 'ioType$', align: 'center',title: '任务类型', hide: false} |
| | | ,{field: 'enterStaNo', align: 'center',title: '入库源站点', hide: true} |
| | | ,{field: 'outStaNo', align: 'center',title: '入库目标站点', hide: true} |
| | | ,{field: 'jarEnterStaNo', align: 'center',title: '入硫化罐站点', hide: false} |
| | | ,{field: 'jarOutStaNo', align: 'center',title: '出硫化罐站点', hide: false} |
| | | ,{field: 'jarId', align: 'center',title: '设备ID', hide: false} |
| | | ,{field: 'jarRegin', align: 'center',title: '区域', hide: false} |
| | | ,{field: 'status', align: 'center',title: '状态', hide: true} |
| | | ,{field: 'steId', align: 'center',title: '穿梭板', hide: false} |
| | | ,{field: 'rgvId', align: 'center',title: 'RGV', hide: false} |
| | | ,{field: 'type$', align: 'center',title: '设备', hide: true} |
| | | ,{field: 'rgvEndId', align: 'center',title: '尾部穿梭板', hide: true} |
| | | ,{field: 'ioTime$', align: 'center',title: '作业时间', hide: true} |
| | | ,{field: 'modiTime$', align: 'center',title: '创建时间', hide: true} |
| | | ,{field: 'appeTime$', align: 'center',title: '更新时间', hide: false} |
| | | |
| | | ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120} |
| | | ]], |
| | |
| | | height: 'full-120', |
| | | cols: [[ |
| | | {type: 'checkbox'} |
| | | ,{field: 'id', align: 'center',title: 'ID'} |
| | | ,{field: 'wrkNo', align: 'center',title: '工作号'} |
| | | ,{field: 'enterStaNo', align: 'center',title: '入库源站点'} |
| | | ,{field: 'outStaNo', align: 'center',title: '入库目标站点'} |
| | | ,{field: 'jarEnterStaNo', align: 'center',title: '入硫化罐站点'} |
| | | ,{field: 'jarOutStaNo', align: 'center',title: '出硫化罐站点'} |
| | | ,{field: 'jarId', align: 'center',title: '设备ID'} |
| | | ,{field: 'jarRegin', align: 'center',title: '区域'} |
| | | ,{field: 'status', align: 'center',title: '状态'} |
| | | ,{field: 'steId', align: 'center',title: '穿梭板'} |
| | | ,{field: 'rgvId', align: 'center',title: 'RGV'} |
| | | ,{field: 'ioTime$', align: 'center',title: '作业时间'} |
| | | ,{field: 'modiTime$', align: 'center',title: '创建时间'} |
| | | ,{field: 'appeTime$', align: 'center',title: '更新时间'} |
| | | ,{field: 'wrkType$', align: 'center',title: '任务状态'} |
| | | ,{field: 'wrkSts$', align: 'center',title: '工作状态'} |
| | | ,{field: 'ioType$', align: 'center',title: '任务类型'} |
| | | ,{field: 'type$', align: 'center',title: '设备'} |
| | | ,{field: 'rgvEndId', align: 'center',title: '尾部穿梭板'} |
| | | ,{field: 'id', align: 'center',title: 'ID', hide: true} |
| | | ,{field: 'wrkNo', align: 'center',title: '工作号', hide: false} |
| | | ,{field: 'wrkType$', align: 'center',title: '任务状态', hide: false} |
| | | ,{field: 'wrkSts$', align: 'center',title: '工作状态', hide: false} |
| | | ,{field: 'ioType$', align: 'center',title: '任务类型', hide: false} |
| | | ,{field: 'enterStaNo', align: 'center',title: '入库源站点', hide: true} |
| | | ,{field: 'outStaNo', align: 'center',title: '入库目标站点', hide: true} |
| | | ,{field: 'jarEnterStaNo', align: 'center',title: '入硫化罐站点', hide: false} |
| | | ,{field: 'jarOutStaNo', align: 'center',title: '出硫化罐站点', hide: false} |
| | | ,{field: 'jarId', align: 'center',title: '设备ID', hide: false} |
| | | ,{field: 'jarRegin', align: 'center',title: '区域', hide: false} |
| | | ,{field: 'status', align: 'center',title: '状态', hide: true} |
| | | ,{field: 'steId', align: 'center',title: '穿梭板', hide: false} |
| | | ,{field: 'rgvId', align: 'center',title: 'RGV', hide: false} |
| | | ,{field: 'type$', align: 'center',title: '设备', hide: true} |
| | | ,{field: 'rgvEndId', align: 'center',title: '尾部穿梭板', hide: true} |
| | | ,{field: 'ioTime$', align: 'center',title: '作业时间', hide: true} |
| | | ,{field: 'modiTime$', align: 'center',title: '创建时间', hide: true} |
| | | ,{field: 'appeTime$', align: 'center',title: '更新时间', hide: false} |
| | | |
| | | ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120} |
| | | ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120, hide: true} |
| | | ]], |
| | | request: { |
| | | pageName: 'curr', |
| | |
| | | ,{field: 'endLev', align: 'center',title: '终点层', hide:true} |
| | | ,{field: 'bignTime$', align: 'center',title: '标记时间', hide:true} |
| | | ,{field: 'createTime$', align: 'center',title: '添加时间', hide:true} |
| | | ,{field: 'updateTime$', align: 'center',title: '修改时间', hide:true} |
| | | ,{field: 'updateTime$', align: 'center',title: '修改时间', hide:false} |
| | | |
| | | ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120, hide:true} |
| | | ]], |
| | |
| | | ,{field: 'endLev', align: 'center',title: '终点层', hide:true} |
| | | ,{field: 'bignTime$', align: 'center',title: '标记时间', hide:true} |
| | | ,{field: 'createTime$', align: 'center',title: '添加时间', hide:true} |
| | | ,{field: 'updateTime$', align: 'center',title: '修改时间', hide:true} |
| | | ,{field: 'updateTime$', align: 'center',title: '修改时间', hide:false} |
| | | |
| | | ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:120, hide:true} |
| | | ]], |
| | |
| | | <div class="layui-card-body"> |
| | | <div class="layui-form toolbar" id="search-box"> |
| | | <div class="layui-form-item"> |
| | | <div class="layui-inline"> |
| | | <div class="layui-input-inline"> |
| | | <input class="layui-input" type="text" name="id" placeholder="编号" autocomplete="off"> |
| | | </div> |
| | | </div> |
| | | <!-- <div class="layui-inline">--> |
| | | <!-- <div class="layui-input-inline">--> |
| | | <!-- <input class="layui-input" type="text" name="id" placeholder="编号" autocomplete="off">--> |
| | | <!-- </div>--> |
| | | <!-- </div>--> |
| | | <div class="layui-inline" style="width: 300px"> |
| | | <div class="layui-input-inline"> |
| | | <input class="layui-input layui-laydate-range" name="create_time" type="text" placeholder="起始时间 - 终止时间" autocomplete="off" style="width: 300px"> |
| | |
| | | <script type="text/html" id="toolbar"> |
| | | <div class="layui-btn-container"> |
| | | <button class="layui-btn layui-btn-sm" id="btn-add" lay-event="addData">新增</button> |
| | | <button class="layui-btn layui-btn-sm layui-btn-danger" id="btn-delete" lay-event="deleteData">删除</button> |
| | | <!-- <button class="layui-btn layui-btn-sm layui-btn-danger" id="btn-delete" lay-event="deleteData">删除</button>--> |
| | | <button class="layui-btn layui-btn-primary layui-btn-sm" id="btn-export" lay-event="exportData" style="float: right">导出</button> |
| | | </div> |
| | | </script> |
| | | |
| | | <script type="text/html" id="operate"> |
| | | <a class="layui-btn layui-btn-primary layui-btn-xs btn-edit" lay-event="edit">修改</a> |
| | | <a class="layui-btn layui-btn-danger layui-btn-xs btn-edit" lay-event="del">删除</a> |
| | | <!-- <a class="layui-btn layui-btn-danger layui-btn-xs btn-edit" lay-event="del">删除</a>--> |
| | | </script> |
| | | |
| | | <script type="text/javascript" src="../../static/js/jquery/jquery-3.3.1.min.js"></script> |
| | |
| | | <div class="layui-row"> |
| | | <div class="layui-col-md12"> |
| | | <div class="layui-form-item"> |
| | | <label class="layui-form-label layui-form-required">任务号: </label> |
| | | <label class="layui-form-label layui-form-required">工作状态: </label> |
| | | <div class="layui-input-block"> |
| | | <input class="layui-input" name="boxSpecs" placeholder="请输入任务号" lay-vertype="tips" lay-verify="required"> |
| | | <input class="layui-input" name="boxSpecs" placeholder="请输入工作状态" lay-vertype="tips" lay-verify="required"> |
| | | </div> |
| | | </div> |
| | | <div class="layui-form-item"> |
| | | <label class="layui-form-label">堆垛机: </label> |
| | | <div class="layui-input-block"> |
| | | <input class="layui-input" name="boxType" placeholder="请输入堆垛机"> |
| | | </div> |
| | | </div> |
| | | <!-- <div class="layui-form-item">--> |
| | | <!-- <label class="layui-form-label">工作状态代号: </label>--> |
| | | <!-- <div class="layui-input-block">--> |
| | | <!-- <input class="layui-input" name="boxType" placeholder="请输入工作状态代号">--> |
| | | <!-- </div>--> |
| | | <!-- </div>--> |
| | | |
| | | </div> |
| | | </div> |
| | |
| | | |
| | | <script type="text/html" id="toolbar"> |
| | | <div class="layui-btn-container"> |
| | | <button class="layui-btn layui-btn-sm" id="btn-add" lay-event="addData">新增</button> |
| | | <button class="layui-btn layui-btn-sm layui-btn-danger" id="btn-delete" lay-event="deleteData">删除</button> |
| | | <!-- <button class="layui-btn layui-btn-sm" id="btn-add" lay-event="addData">新增</button>--> |
| | | <!-- <button class="layui-btn layui-btn-sm layui-btn-danger" id="btn-delete" lay-event="deleteData">删除</button>--> |
| | | <button class="layui-btn layui-btn-primary layui-btn-sm" id="btn-export" lay-event="exportData" style="float: right">导出</button> |
| | | </div> |
| | | </script> |
| | | |
| | | <script type="text/html" id="operate"> |
| | | <a class="layui-btn layui-btn-primary layui-btn-xs btn-edit" lay-event="edit">修改</a> |
| | | <a class="layui-btn layui-btn-danger layui-btn-xs btn-edit" lay-event="del">删除</a> |
| | | <!-- <a class="layui-btn layui-btn-primary layui-btn-xs btn-edit" lay-event="edit">修改</a>--> |
| | | <!-- <a class="layui-btn layui-btn-danger layui-btn-xs btn-edit" lay-event="del">删除</a>--> |
| | | </script> |
| | | |
| | | <script type="text/javascript" src="../../static/js/jquery/jquery-3.3.1.min.js"></script> |