zhou zhou
6 天以前 33bd4dd1f0e41131cd8e5bbf87204a1f0b72bb08
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WkOrderItem.java
@@ -329,6 +329,10 @@
    private String sourceWarehouseId;
    //
    @TableField(exist = false)
    private String isptResult$;
    public WkOrderItem() {}
    public WkOrderItem(Long asnId, String asnCode, Long poDetlId, String matnrCode, String poCode, Long matnrId, String matnk, Double anfme, String stockUnit, Double purQty, String purUnit, Double qty, String splrCode, String splrName, String qrcode, String barcode, String packName, Integer status, Integer ntyStatus, Integer deleted, Integer tenantId, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo, String sourceWarehouseId) {
@@ -438,17 +442,7 @@
    }
    public String getIsptResult$(){
            if (Cools.isEmpty(this.isptResult)){
                return null;
            }
            DictDataService dictDataService = SpringUtils.getBean(DictDataService.class);
            DictData dictData = dictDataService.getOne(new LambdaQueryWrapper<DictData>()
                    .eq(DictData::getDictTypeCode, DictTypeCode.DICT_INSPECT_RESULT)
                    .eq(DictData::getValue, this.isptResult));
            if (Objects.isNull(dictData)) {
                return null;
            }
            return dictData.getLabel();
        return this.isptResult$;
    }
}