| | |
| | | @ExcelProperty(value = "备注") |
| | | private String memo; |
| | | |
| | | /** |
| | | * 库存预警数量上限 |
| | | */ |
| | | @TableField("store_max") |
| | | private Double storeMax; |
| | | |
| | | /** |
| | | * 库存预警数量下限 |
| | | */ |
| | | @TableField("store_min") |
| | | private Double storeMin; |
| | | |
| | | /** |
| | | * 库龄预警上限 |
| | | */ |
| | | @TableField("store_max_date") |
| | | private Integer storeMaxDate; |
| | | |
| | | /** |
| | | * 是否为频繁入出库物料 |
| | | * 高频入出库物料 |
| | | */ |
| | | @TableField("inout_everyday") |
| | | private Boolean inoutEveryday; |
| | |
| | | |
| | | public String getStoreMax$(){ |
| | | if (Cools.isEmpty(this.storeMax)) { |
| | | return "未设置"; |
| | | return ""; |
| | | }else { |
| | | return this.storeMax + ""; |
| | | } |
| | |
| | | |
| | | public String getStoreMin$(){ |
| | | if (Cools.isEmpty(this.storeMin)) { |
| | | return "未设置"; |
| | | return ""; |
| | | }else { |
| | | return this.storeMin + ""; |
| | | } |
| | |
| | | |
| | | public String getStoreMaxDate$(){ |
| | | if (Cools.isEmpty(this.storeMaxDate)) { |
| | | return "未设置"; |
| | | return ""; |
| | | }else { |
| | | return this.storeMaxDate + "天"; |
| | | return this.storeMaxDate + ""; |
| | | } |
| | | } |
| | | |
| | |
| | | ,{field: 'memo', align: 'center',title: '备注', hide: true} |
| | | ,{field: 'storeMax$', align: 'center',title: '库存上限'} |
| | | ,{field: 'storeMin$', align: 'center',title: '库存下限'} |
| | | ,{field: 'storeMaxDate$', align: 'center',title: '最大滞留时间'} |
| | | ,{field: 'inoutEveryday$', align: 'center',title: '频繁入出库物料'} |
| | | ,{field: 'storeMaxDate$', align: 'center',title: '库龄上限(天)'} |
| | | ,{field: 'inoutEveryday$', align: 'center',title: '高频', width: 60} |
| | | |
| | | ] |
| | | |
| | |
| | | </div> |
| | | </div> |
| | | <div class="layui-form-item"> |
| | | <label class="layui-form-label">滞留时间</label> |
| | | <label class="layui-form-label">库龄上限(天)</label> |
| | | <div class="layui-input-block"> |
| | | <input name="storeMaxDate" placeholder="最大滞留时间(天)" type="number" class="layui-input"> |
| | | <input name="storeMaxDate" placeholder="库龄上限(天)" type="number" class="layui-input"> |
| | | </div> |
| | | </div> |
| | | <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"> |
| | | <select name="inoutEveryday" lay-vertype="tips" lay-verify="required" required=""> |
| | | <option value="0">否</option> |
| | |
| | | <div class="layui-form-item"> |
| | | <label class="layui-form-label">库存下限</label> |
| | | <div class="layui-input-block"> |
| | | <input name="storeMin" placeholder="库存下线" type="number" class="layui-input"> |
| | | <input name="storeMin" placeholder="库存下限" type="number" class="layui-input"> |
| | | </div> |
| | | </div> |
| | | |