zhou zhou
8 天以前 d9ff374c80f3ed9077eae5136a7edea37668afbf
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$;
    }
}