| | |
| | | import com.core.common.Cools; |
| | | import com.core.common.SpringUtils; |
| | | import com.zy.asrs.service.BasBoxTypeService; |
| | | import com.zy.asrs.service.OrderService; |
| | | import com.zy.common.utils.Synchro; |
| | | import com.zy.system.entity.User; |
| | | import com.zy.system.service.UserService; |
| | |
| | | |
| | | /** |
| | | * 作业数量 |
| | | * |
| | | * <p> |
| | | * 入库 : 组托完成,组托档、工作档、入库完成数量 |
| | | * 出库 : 工作档、出库完成数量 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 完成数量 |
| | | * |
| | | * <p> |
| | | * 入库 : qty 👆 |
| | | * 出库 : qty 👆 |
| | | */ |
| | |
| | | |
| | | |
| | | public String getStatus$(){ |
| | | if (null == this.status){ return null; } |
| | | if (null == this.status) { |
| | | return null; |
| | | } |
| | | switch (this.status){ |
| | | case 1: |
| | | return "正常"; |
| | |
| | | return "未完成"; |
| | | } |
| | | |
| | | public String getInspect$() { |
| | | if (Cools.isEmpty(this.inspect)) { |
| | | return "未复核"; |
| | | } |
| | | if (this.inspect == 1) { |
| | | return "已复核"; |
| | | } else { |
| | | return "未复核"; |
| | | } |
| | | } |
| | | |
| | | public Double getEnableQty() { |
| | | if (null != this.anfme && this.workQty != null) { |
| | | return this.anfme - this.workQty; |