diff --git a/jnpf-java-boot/jnpf-admin/src/main/resources/mapper/scm/WarehousingNotificationMapper.xml b/jnpf-java-boot/jnpf-admin/src/main/resources/mapper/scm/WarehousingNotificationMapper.xml new file mode 100644 index 00000000..f1953348 --- /dev/null +++ b/jnpf-java-boot/jnpf-admin/src/main/resources/mapper/scm/WarehousingNotificationMapper.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/jnpf-java-boot/jnpf-admin/src/main/resources/mapper/scm/WarehousingProductMapper.xml b/jnpf-java-boot/jnpf-admin/src/main/resources/mapper/scm/WarehousingProductMapper.xml new file mode 100644 index 00000000..52215f66 --- /dev/null +++ b/jnpf-java-boot/jnpf-admin/src/main/resources/mapper/scm/WarehousingProductMapper.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/mapper/WarehousingNotificationMapper.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/mapper/WarehousingNotificationMapper.java new file mode 100644 index 00000000..5ae87678 --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/mapper/WarehousingNotificationMapper.java @@ -0,0 +1,16 @@ +package jnpf.mapper; + + +import jnpf.entity.WarehousingNotificationEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * warehousingNotification + * 版本: V3.5 + * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * 作者: JNPF开发平台组 + * 日期: 2024-02-19 + */ +public interface WarehousingNotificationMapper extends BaseMapper { + +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/mapper/WarehousingProductMapper.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/mapper/WarehousingProductMapper.java new file mode 100644 index 00000000..4317719d --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/mapper/WarehousingProductMapper.java @@ -0,0 +1,16 @@ +package jnpf.mapper; + + +import jnpf.entity.WarehousingProductEntity; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * warehousingNotification + * 版本: V3.5 + * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * 作者: JNPF开发平台组 + * 日期: 2024-02-19 + */ +public interface WarehousingProductMapper extends BaseMapper { + +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/WarehousingNotificationService.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/WarehousingNotificationService.java new file mode 100644 index 00000000..82d5169d --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/WarehousingNotificationService.java @@ -0,0 +1,39 @@ +package jnpf.service; + +import jnpf.model.warehousingnotification.*; +import jnpf.entity.*; +import java.util.*; +import com.baomidou.mybatisplus.extension.service.IService; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; + +/** + * warehousingNotification + * 版本: V3.5 + * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * 作者: JNPF开发平台组 + * 日期: 2024-02-19 + */ +public interface WarehousingNotificationService extends IService { + List getList(WarehousingNotificationPagination warehousingNotificationPagination); + + List getTypeList(WarehousingNotificationPagination warehousingNotificationPagination,String dataType); + + WarehousingNotificationEntity getInfo(String id); + + void delete(WarehousingNotificationEntity entity); + + void create(WarehousingNotificationEntity entity); + + boolean update(String id, WarehousingNotificationEntity entity); + + //子表方法 + List getWarehousingProductList(String id,WarehousingNotificationPagination warehousingNotificationPagination); + + List getWarehousingProductList(String id); + + //副表数据方法 + String checkForm(WarehousingNotificationForm form,int i); + + void saveOrUpdate(WarehousingNotificationForm warehousingNotificationForm,String id, boolean isSave) throws Exception; + +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/WarehousingProductService.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/WarehousingProductService.java new file mode 100644 index 00000000..4a758089 --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/WarehousingProductService.java @@ -0,0 +1,18 @@ +package jnpf.service; + +import jnpf.model.warehousingnotification.*; +import jnpf.entity.*; +import java.util.*; +import com.baomidou.mybatisplus.extension.service.IService; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; + +/** + * warehousingNotification + * 版本: V3.5 + * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * 作者: JNPF开发平台组 + * 日期: 2024-02-19 + */ +public interface WarehousingProductService extends IService { + QueryWrapper getChild(WarehousingNotificationPagination pagination,QueryWrapper warehousingProductQueryWrapper); +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/impl/BusinessOrderServiceImpl.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/impl/BusinessOrderServiceImpl.java index 64f1e7c9..b6cc3a66 100644 --- a/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/impl/BusinessOrderServiceImpl.java +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/impl/BusinessOrderServiceImpl.java @@ -515,13 +515,13 @@ public class BusinessOrderServiceImpl extends ServiceImpl implements WarehousingNotificationService{ + @Autowired + private GeneraterSwapUtil generaterSwapUtil; + + @Autowired + private UserProvider userProvider; + + @Autowired + private WarehousingProductService warehousingProductService; + @Override + public List getList(WarehousingNotificationPagination warehousingNotificationPagination){ + return getTypeList(warehousingNotificationPagination,warehousingNotificationPagination.getDataType()); + } + /** 列表查询 */ + @Override + public List getTypeList(WarehousingNotificationPagination warehousingNotificationPagination,String dataType){ + String userId=userProvider.get().getUserId(); + List AllIdList =new ArrayList(); + List> intersectionList =new ArrayList<>(); + boolean isPc = ServletUtil.getHeader("jnpf-origin").equals("pc"); + String columnData = !isPc ? WarehousingNotificationConstant.getAppColumnData() : WarehousingNotificationConstant.getColumnData(); + ColumnDataModel columnDataModel = JsonUtil.getJsonToBean(columnData, ColumnDataModel.class); + String ruleJson = !isPc ? JsonUtil.getObjectToString(columnDataModel.getRuleListApp()) : JsonUtil.getObjectToString(columnDataModel.getRuleList()); + + int total=0; + int warehousingNotificationNum =0; + QueryWrapper warehousingNotificationQueryWrapper=new QueryWrapper<>(); + int warehousingProductNum =0; + QueryWrapper warehousingProductQueryWrapper=new QueryWrapper<>(); + long warehousingProductcount = warehousingProductService.count(); + List allSuperIDlist = new ArrayList<>(); + String superOp =""; + if (ObjectUtil.isNotEmpty(warehousingNotificationPagination.getSuperQueryJson())){ + List allSuperList = new ArrayList<>(); + List> intersectionSuperList = new ArrayList<>(); + String queryJson = warehousingNotificationPagination.getSuperQueryJson(); + SuperJsonModel superJsonModel = JsonUtil.getJsonToBean(queryJson, SuperJsonModel.class); + int superNum = 0; + QueryWrapper warehousingNotificationSuperWrapper = new QueryWrapper<>(); + warehousingNotificationSuperWrapper = generaterSwapUtil.getCondition(new QueryModel(warehousingNotificationSuperWrapper,WarehousingNotificationEntity.class,queryJson,"0")); + int warehousingNotificationNum1 = warehousingNotificationSuperWrapper.getExpression().getNormal().size(); + if (warehousingNotificationNum1>0){ + List warehousingNotificationList =this.list(warehousingNotificationSuperWrapper).stream().map(WarehousingNotificationEntity::getId).collect(Collectors.toList()); + allSuperList.addAll(warehousingNotificationList); + intersectionSuperList.add(warehousingNotificationList); + superNum++; + } + String warehousingProductTable = "jg_warehousing_product"; + boolean warehousingProductHasSql = queryJson.contains(warehousingProductTable); + List warehousingProductList = generaterSwapUtil.selectIdsByChildCondition(WarehousingNotificationConstant.getTableList(), warehousingProductTable , queryJson, null); + if (warehousingProductHasSql){ + allSuperList.addAll(warehousingProductList); + intersectionSuperList.add(warehousingProductList); + superNum++; + } + superOp = superNum > 0 ? superJsonModel.getMatchLogic() : ""; + //and or + if(superOp.equalsIgnoreCase("and")){ + allSuperIDlist = generaterSwapUtil.getIntersection(intersectionSuperList); + }else{ + allSuperIDlist = allSuperList; + } + } + List allRuleIDlist = new ArrayList<>(); + String ruleOp =""; + if (ObjectUtil.isNotEmpty(ruleJson)){ + List allRuleList = new ArrayList<>(); + List> intersectionRuleList = new ArrayList<>(); + SuperJsonModel ruleJsonModel = JsonUtil.getJsonToBean(ruleJson, SuperJsonModel.class); + int ruleNum = 0; + QueryWrapper warehousingNotificationSuperWrapper = new QueryWrapper<>(); + warehousingNotificationSuperWrapper = generaterSwapUtil.getCondition(new QueryModel(warehousingNotificationSuperWrapper,WarehousingNotificationEntity.class,ruleJson,"0")); + int warehousingNotificationNum1 = warehousingNotificationSuperWrapper.getExpression().getNormal().size(); + if (warehousingNotificationNum1>0){ + List warehousingNotificationList =this.list(warehousingNotificationSuperWrapper).stream().map(WarehousingNotificationEntity::getId).collect(Collectors.toList()); + allRuleList.addAll(warehousingNotificationList); + intersectionRuleList.add(warehousingNotificationList); + ruleNum++; + } + String warehousingProductTable = "jg_warehousing_product"; + boolean warehousingProductHasSql = ruleJson.contains(warehousingProductTable); + List warehousingProductList = generaterSwapUtil.selectIdsByChildCondition(WarehousingNotificationConstant.getTableList(), warehousingProductTable , ruleJson, null); + if (warehousingProductHasSql){ + allRuleList.addAll(warehousingProductList); + intersectionRuleList.add(warehousingProductList); + ruleNum++; + } + ruleOp = ruleNum > 0 ? ruleJsonModel.getMatchLogic() : ""; + //and or + if(ruleOp.equalsIgnoreCase("and")){ + allRuleIDlist = generaterSwapUtil.getIntersection(intersectionRuleList); + }else{ + allRuleIDlist = allRuleList; + } + } + boolean pcPermission = true; + boolean appPermission = false; + if(isPc && pcPermission){ + if (!userProvider.get().getIsAdministrator()){ + Object warehousingNotificationObj=generaterSwapUtil.getAuthorizeCondition(new QueryModel(warehousingNotificationQueryWrapper,WarehousingNotificationEntity.class,warehousingNotificationPagination.getMenuId(),"0")); + if (ObjectUtil.isEmpty(warehousingNotificationObj)){ + return new ArrayList<>(); + } else { + warehousingNotificationQueryWrapper = (QueryWrapper)warehousingNotificationObj; + if( warehousingNotificationQueryWrapper.getExpression().getNormal().size()>0){ + warehousingNotificationNum++; + } + } + Object warehousingProductObj=generaterSwapUtil.getAuthorizeCondition(new QueryModel(warehousingProductQueryWrapper,WarehousingProductEntity.class,warehousingNotificationPagination.getMenuId(),"0")); + if (ObjectUtil.isEmpty(warehousingProductObj)){ + return new ArrayList<>(); + } else { + warehousingProductQueryWrapper = (QueryWrapper)warehousingProductObj; + if( warehousingProductQueryWrapper.getExpression().getNormal().size()>0){ + warehousingProductNum++; + } + } + } + } + if(!isPc && appPermission){ + if (!userProvider.get().getIsAdministrator()){ + Object warehousingNotificationObj=generaterSwapUtil.getAuthorizeCondition(new QueryModel(warehousingNotificationQueryWrapper,WarehousingNotificationEntity.class,warehousingNotificationPagination.getMenuId(),"0")); + if (ObjectUtil.isEmpty(warehousingNotificationObj)){ + return new ArrayList<>(); + } else { + warehousingNotificationQueryWrapper = (QueryWrapper)warehousingNotificationObj; + if( warehousingNotificationQueryWrapper.getExpression().getNormal().size()>0){ + warehousingNotificationNum++; + } + } + + + Object warehousingProductObj=generaterSwapUtil.getAuthorizeCondition(new QueryModel(warehousingProductQueryWrapper,WarehousingProductEntity.class,warehousingNotificationPagination.getMenuId(),"0")); + if (ObjectUtil.isEmpty(warehousingProductObj)){ + return new ArrayList<>(); + } else { + warehousingProductQueryWrapper = (QueryWrapper)warehousingProductObj; + if( warehousingProductQueryWrapper.getExpression().getNormal().size()>0){ + warehousingProductNum++; + } + } + + + } + } + if(isPc){ + if(ObjectUtil.isNotEmpty(warehousingNotificationPagination.getWarehousingCode())){ + warehousingNotificationNum++; + + String value = warehousingNotificationPagination.getWarehousingCode() instanceof List ? + JsonUtil.getObjectToString(warehousingNotificationPagination.getWarehousingCode()) : + String.valueOf(warehousingNotificationPagination.getWarehousingCode()); + warehousingNotificationQueryWrapper.lambda().like(WarehousingNotificationEntity::getWarehousingCode,value); + + } + + } + if(warehousingProductNum>0){ + List warehousingProductIdList = warehousingProductService.list(warehousingProductQueryWrapper).stream().filter(t->StringUtil.isNotEmpty(t.getWarehousingId())).map(t->t.getWarehousingId()).collect(Collectors.toList()); + long count = warehousingProductService.count(); + if (count>0){ + intersectionList.add(warehousingProductIdList); + } + AllIdList.addAll(warehousingProductIdList); + } + total+=warehousingProductNum; + List intersection = generaterSwapUtil.getIntersection(intersectionList); + if (total>0){ + if (intersection.size()==0){ + intersection.add("jnpfNullList"); + } + warehousingNotificationQueryWrapper.lambda().in(WarehousingNotificationEntity::getId, intersection); + } + //是否有高级查询 + if (StringUtil.isNotEmpty(superOp)){ + if (allSuperIDlist.size()==0){ + allSuperIDlist.add("jnpfNullList"); + } + List finalAllSuperIDlist = allSuperIDlist; + warehousingNotificationQueryWrapper.lambda().and(t->t.in(WarehousingNotificationEntity::getId, finalAllSuperIDlist)); + } + //是否有数据过滤查询 + if (StringUtil.isNotEmpty(ruleOp)){ + if (allRuleIDlist.size()==0){ + allRuleIDlist.add("jnpfNullList"); + } + List finalAllRuleIDlist = allRuleIDlist; + warehousingNotificationQueryWrapper.lambda().and(t->t.in(WarehousingNotificationEntity::getId, finalAllRuleIDlist)); + } + //假删除标志 + warehousingNotificationQueryWrapper.lambda().isNull(WarehousingNotificationEntity::getDeleteMark); + + //排序 + if(StringUtil.isEmpty(warehousingNotificationPagination.getSidx())){ + warehousingNotificationQueryWrapper.lambda().orderByDesc(WarehousingNotificationEntity::getId); + }else{ + try { + String sidx = warehousingNotificationPagination.getSidx(); + String[] strs= sidx.split("_name"); + WarehousingNotificationEntity warehousingNotificationEntity = new WarehousingNotificationEntity(); + Field declaredField = warehousingNotificationEntity.getClass().getDeclaredField(strs[0]); + declaredField.setAccessible(true); + String value = declaredField.getAnnotation(TableField.class).value(); + warehousingNotificationQueryWrapper="asc".equals(warehousingNotificationPagination.getSort().toLowerCase())?warehousingNotificationQueryWrapper.orderByAsc(value):warehousingNotificationQueryWrapper.orderByDesc(value); + } catch (NoSuchFieldException e) { + e.printStackTrace(); + } + } + + if("0".equals(dataType)){ + if((total>0 && AllIdList.size()>0) || total==0){ + Page page=new Page<>(warehousingNotificationPagination.getCurrentPage(), warehousingNotificationPagination.getPageSize()); + IPage userIPage=this.page(page, warehousingNotificationQueryWrapper); + return warehousingNotificationPagination.setData(userIPage.getRecords(),userIPage.getTotal()); + }else{ + List list = new ArrayList(); + return warehousingNotificationPagination.setData(list, list.size()); + } + }else{ + return this.list(warehousingNotificationQueryWrapper); + } + } + @Override + public WarehousingNotificationEntity getInfo(String id){ + QueryWrapper queryWrapper=new QueryWrapper<>(); + queryWrapper.lambda().eq(WarehousingNotificationEntity::getId,id); + return this.getOne(queryWrapper); + } + @Override + public void create(WarehousingNotificationEntity entity){ + this.save(entity); + } + @Override + public boolean update(String id, WarehousingNotificationEntity entity){ + return this.updateById(entity); + } + @Override + public void delete(WarehousingNotificationEntity entity){ + if(entity!=null){ + this.removeById(entity.getId()); + } + } + /** WarehousingProduct子表方法 */ + @Override + public List getWarehousingProductList(String id,WarehousingNotificationPagination warehousingNotificationPagination){ + Map newtabMap=WarehousingNotificationConstant.TABLEFIELDKEY.entrySet() + .stream().collect( Collectors.toMap(e->e.getValue(),e->e.getKey())); + String tableName="warehousingProduct"; + tableName=newtabMap.get(tableName)==null?tableName:newtabMap.get(tableName).toString(); + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper = warehousingProductService.getChild(warehousingNotificationPagination,queryWrapper); + queryWrapper.lambda().eq(WarehousingProductEntity::getWarehousingId, id); + generaterSwapUtil.wrapperHandle(WarehousingNotificationConstant.getColumnData(), WarehousingNotificationConstant.getAppColumnData(), queryWrapper,WarehousingProductEntity.class,"sub",tableName); + return warehousingProductService.list(queryWrapper); + } + + /** WarehousingProduct子表方法 */ + @Override + public List getWarehousingProductList(String id){ + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.lambda().eq(WarehousingProductEntity::getWarehousingId, id); + return warehousingProductService.list(queryWrapper); + } + /** 验证表单唯一字段,正则,非空 i-0新增-1修改*/ + @Override + public String checkForm(WarehousingNotificationForm form,int i) { + boolean isUp =StringUtil.isNotEmpty(form.getId()) && !form.getId().equals("0"); + String id=""; + String countRecover = ""; + if (isUp){ + id = form.getId(); + } + //主表字段验证 + //子表字段验证 + if (form.getWarehousingProductList()!=null){ + } + return countRecover; + } + /** + * 新增修改数据(事务回滚) + * @param id + * @param warehousingNotificationForm + * @return + */ + @Override + @Transactional + public void saveOrUpdate(WarehousingNotificationForm warehousingNotificationForm,String id, boolean isSave) throws Exception{ + UserInfo userInfo=userProvider.get(); + UserEntity userEntity = generaterSwapUtil.getUser(userInfo.getUserId()); + warehousingNotificationForm = JsonUtil.getJsonToBean( + generaterSwapUtil.swapDatetime(WarehousingNotificationConstant.getFormData(),warehousingNotificationForm),WarehousingNotificationForm.class); + WarehousingNotificationEntity entity = JsonUtil.getJsonToBean(warehousingNotificationForm, WarehousingNotificationEntity.class); + + if(isSave){ + String mainId = id ; + entity.setWarehousingCode(generaterSwapUtil.getBillNumber("cktz", false)); + entity.setPreparationTime(DateUtil.getNowDate()); + entity.setId(mainId); + entity.setFlowId(warehousingNotificationForm.getFlowId()); + entity.setVersion(0); + }else{ + entity.setWarehousingCode(generaterSwapUtil.getBillNumber("cktz", false)); + entity.setPreparationTime(DateUtil.getNowDate()); + entity.setFlowId(warehousingNotificationForm.getFlowId()); + } + this.saveOrUpdate(entity); + + //WarehousingProduct子表数据新增修改 + if(!isSave){ + QueryWrapper WarehousingProductqueryWrapper = new QueryWrapper<>(); + WarehousingProductqueryWrapper.lambda().eq(WarehousingProductEntity::getWarehousingId, entity.getId()); + warehousingProductService.remove(WarehousingProductqueryWrapper); + } + if (warehousingNotificationForm.getWarehousingProductList()!=null){ + List tableField121 = JsonUtil.getJsonToList(warehousingNotificationForm.getWarehousingProductList(),WarehousingProductEntity.class); + for(WarehousingProductEntity entitys : tableField121){ + entitys.setId(RandomUtil.uuId()); + entitys.setWarehousingId(entity.getId()); + if(isSave){ + }else{ + } + warehousingProductService.saveOrUpdate(entitys); + } + } + } +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/impl/WarehousingProductServiceImpl.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/impl/WarehousingProductServiceImpl.java new file mode 100644 index 00000000..5ecb212b --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-biz/src/main/java/jnpf/service/impl/WarehousingProductServiceImpl.java @@ -0,0 +1,59 @@ +package jnpf.service.impl; + +import jnpf.entity.*; +import jnpf.mapper.WarehousingProductMapper; +import jnpf.service.*; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import jnpf.model.warehousingnotification.*; +import java.math.BigDecimal; +import cn.hutool.core.util.ObjectUtil; +import jnpf.permission.model.authorize.AuthorizeConditionModel; +import jnpf.util.GeneraterSwapUtil; +import jnpf.database.model.superQuery.SuperQueryJsonModel; +import jnpf.database.model.superQuery.ConditionJsonModel; +import jnpf.database.model.superQuery.SuperQueryConditionModel; +import jnpf.model.QueryModel; +import java.util.stream.Collectors; +import jnpf.base.model.ColumnDataModel; +import org.springframework.stereotype.Service; +import com.baomidou.mybatisplus.core.metadata.IPage; +import jnpf.database.model.superQuery.SuperJsonModel; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.transaction.annotation.Transactional; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import java.text.SimpleDateFormat; +import jnpf.util.*; +import java.util.*; +import jnpf.base.UserInfo; +import jnpf.permission.entity.UserEntity; +/** + * + * warehousingNotification + * 版本: V3.5 + * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * 作者: JNPF开发平台组 + * 日期: 2024-02-19 + */ +@Service +public class WarehousingProductServiceImpl extends ServiceImpl implements WarehousingProductService{ + @Autowired + private GeneraterSwapUtil generaterSwapUtil; + + @Autowired + private UserProvider userProvider; + + //子表过滤方法 + @Override + public QueryWrapper getChild(WarehousingNotificationPagination pagination, QueryWrapper warehousingProductQueryWrapper){ + boolean pcPermission = true; + boolean appPermission = false; + boolean isPc = ServletUtil.getHeader("jnpf-origin").equals("pc"); + String ruleQueryJson = isPc?WarehousingNotificationConstant.getColumnData():WarehousingNotificationConstant.getAppColumnData(); + ColumnDataModel dataModel = JsonUtil.getJsonToBean(ruleQueryJson,ColumnDataModel.class); + String ruleJson = isPc?JsonUtil.getObjectToString(dataModel.getRuleList()):JsonUtil.getObjectToString(dataModel.getRuleListApp()); + if(isPc){ + } + return warehousingProductQueryWrapper; + } +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-controller/src/main/java/jnpf/controller/WarehousingNotificationController.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-controller/src/main/java/jnpf/controller/WarehousingNotificationController.java new file mode 100644 index 00000000..d588c229 --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-controller/src/main/java/jnpf/controller/WarehousingNotificationController.java @@ -0,0 +1,467 @@ +package jnpf.controller; + +import cn.hutool.core.util.ObjectUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.tags.Tag; +import jnpf.base.ActionResult; +import jnpf.base.UserInfo; +import jnpf.exception.DataException; +import jnpf.permission.entity.UserEntity; +import jnpf.service.*; +import jnpf.entity.*; +import jnpf.util.*; +import jnpf.model.warehousingnotification.*; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; +import javax.validation.Valid; +import java.util.*; +import jnpf.annotation.JnpfField; +import jnpf.base.vo.PageListVO; +import jnpf.base.vo.PaginationVO; +import jnpf.base.vo.DownloadVO; +import jnpf.config.ConfigValueUtil; +import jnpf.base.entity.ProvinceEntity; +import java.io.IOException; +import java.util.stream.Collectors; +import jnpf.engine.entity.FlowTaskEntity; +import jnpf.exception.WorkFlowException; +import org.springframework.web.multipart.MultipartFile; +import cn.afterturn.easypoi.excel.ExcelExportUtil; +import cn.afterturn.easypoi.excel.ExcelImportUtil; +import cn.afterturn.easypoi.excel.entity.ExportParams; +import cn.afterturn.easypoi.excel.entity.ImportParams; +import cn.afterturn.easypoi.excel.entity.params.ExcelExportEntity; +import cn.afterturn.easypoi.excel.entity.enmus.ExcelType; +import org.apache.poi.hssf.usermodel.HSSFWorkbook; +import org.apache.poi.ss.usermodel.Workbook; +import java.io.File; +import jnpf.onlinedev.model.ExcelImFieldModel; +import jnpf.onlinedev.model.OnlineImport.ImportDataModel; +import jnpf.onlinedev.model.OnlineImport.ImportFormCheckUniqueModel; +import jnpf.onlinedev.model.OnlineImport.ExcelImportModel; +import jnpf.onlinedev.model.OnlineImport.VisualImportModel; +import cn.xuyanwu.spring.file.storage.FileInfo; +import lombok.Cleanup; +import jnpf.model.visualJson.config.HeaderModel; +import jnpf.base.model.ColumnDataModel; +import jnpf.base.util.VisualUtils; +import org.springframework.transaction.annotation.Transactional; + +/** + * warehousingNotification + * @版本: V3.5 + * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * @作者: JNPF开发平台组 + * @日期: 2024-02-19 + */ +@Slf4j +@RestController +@Tag(name = "warehousingNotification" , description = "scm") +@RequestMapping("/api/scm/WarehousingNotification") +public class WarehousingNotificationController { + + @Autowired + private GeneraterSwapUtil generaterSwapUtil; + + @Autowired + private UserProvider userProvider; + + @Autowired + private WarehousingNotificationService warehousingNotificationService; + + @Autowired + private WarehousingProductService warehousingProductService; + + + @Autowired + private ConfigValueUtil configValueUtil; + + /** + * 列表 + * + * @param warehousingNotificationPagination + * @return + */ + @Operation(summary = "获取列表") + @PostMapping("/getList") + public ActionResult list(@RequestBody WarehousingNotificationPagination warehousingNotificationPagination)throws IOException{ + List list= warehousingNotificationService.getList(warehousingNotificationPagination); + List> realList=new ArrayList<>(); + for (WarehousingNotificationEntity entity : list) { + Map warehousingNotificationMap=JsonUtil.entityToMap(entity); + warehousingNotificationMap.put("id", warehousingNotificationMap.get("id")); + //副表数据 + //子表数据 + List warehousingProductList = warehousingNotificationService.getWarehousingProductList(entity.getId(),warehousingNotificationPagination); + warehousingNotificationMap.put("tableField121",JsonUtil.getJsonToList(JsonUtil.getListToJsonArray(warehousingProductList))); + realList.add(warehousingNotificationMap); + } + //数据转换 + realList = generaterSwapUtil.swapDataList(realList, WarehousingNotificationConstant.getFormData(), WarehousingNotificationConstant.getColumnData(), warehousingNotificationPagination.getModuleId(),false); + + //流程状态添加 + for(Map vo:realList){ + FlowTaskEntity flowTaskEntity = generaterSwapUtil.getInfoSubmit(String.valueOf(vo.get("id")), FlowTaskEntity::getStatus); + if (flowTaskEntity!=null){ + vo.put("flowState",flowTaskEntity.getStatus()); + }else{ + vo.put("flowState",null); + } + //添加流程id + String flowId=""; + if(vo.get("flowid")!=null){ + flowId = String.valueOf(vo.get("flowid")); + } + if(vo.get("flowid".toUpperCase())!=null){ + flowId = String.valueOf(vo.get("flowid".toUpperCase())); + } + if(StringUtil.isNotEmpty(flowId)){ + vo.put("flowId" ,flowId); + } + } + //返回对象 + PageListVO vo = new PageListVO(); + vo.setList(realList); + PaginationVO page = JsonUtil.getJsonToBean(warehousingNotificationPagination, PaginationVO.class); + vo.setPagination(page); + return ActionResult.success(vo); + } + /** + * 创建 + * + * @param warehousingNotificationForm + * @return + */ + @PostMapping("/{id}") + @Operation(summary = "创建") + public ActionResult create(@PathVariable("id") String id, @RequestBody @Valid WarehousingNotificationForm warehousingNotificationForm) { + String b = warehousingNotificationService.checkForm(warehousingNotificationForm,0); + if (StringUtil.isNotEmpty(b)){ + return ActionResult.fail(b ); + } + try{ + warehousingNotificationService.saveOrUpdate(warehousingNotificationForm, id ,true); + }catch(Exception e){ + return ActionResult.fail("新增数据失败"); + } + return ActionResult.success("创建成功"); + } + /** + * 导出Excel + * + * @return + */ + @Operation(summary = "导出Excel") + @PostMapping("/Actions/Export") + public ActionResult Export(@RequestBody WarehousingNotificationPagination warehousingNotificationPagination) throws IOException { + if (StringUtil.isEmpty(warehousingNotificationPagination.getSelectKey())){ + return ActionResult.fail("请选择导出字段"); + } + List list= warehousingNotificationService.getList(warehousingNotificationPagination); + List> realList=new ArrayList<>(); + for (WarehousingNotificationEntity entity : list) { + Map warehousingNotificationMap=JsonUtil.entityToMap(entity); + warehousingNotificationMap.put("id", warehousingNotificationMap.get("id")); + //副表数据 + //子表数据 + List warehousingProductList = warehousingNotificationService.getWarehousingProductList(entity.getId(),warehousingNotificationPagination); + warehousingNotificationMap.put("tableField121",JsonUtil.getJsonToList(JsonUtil.getListToJsonArray(warehousingProductList))); + realList.add(warehousingNotificationMap); + } + //数据转换 + realList = generaterSwapUtil.swapDataList(realList, WarehousingNotificationConstant.getFormData(), WarehousingNotificationConstant.getColumnData(), warehousingNotificationPagination.getModuleId(),false); + String[]keys=!StringUtil.isEmpty(warehousingNotificationPagination.getSelectKey())?warehousingNotificationPagination.getSelectKey():new String[0]; + UserInfo userInfo=userProvider.get(); + DownloadVO vo=this.creatModelExcel(configValueUtil.getTemporaryFilePath(),realList,keys,userInfo); + return ActionResult.success(vo); + } + + /** + * 导出表格方法 + */ + public DownloadVO creatModelExcel(String path,List>list,String[]keys,UserInfo userInfo){ + DownloadVO vo=DownloadVO.builder().build(); + List entitys=new ArrayList<>(); + if(keys.length>0){ + ExcelExportEntity tableField121ExcelEntity = new ExcelExportEntity("","tableField121"); + List tableField121List = new ArrayList<>(); + for(String key:keys){ + switch(key){ + case "warehousingType" : + entitys.add(new ExcelExportEntity("" ,"warehousingType")); + break; + case "warehousingCode" : + entitys.add(new ExcelExportEntity("通知编号" ,"warehousingCode")); + break; + case "preparationTime" : + entitys.add(new ExcelExportEntity("制单时间" ,"preparationTime")); + break; + case "businessId" : + entitys.add(new ExcelExportEntity("销售订单" ,"businessId")); + break; + case "subjectBasicId" : + entitys.add(new ExcelExportEntity("客户名称" ,"subjectBasicId")); + break; + case "shippingAddress" : + entitys.add(new ExcelExportEntity("收货地址" ,"shippingAddress")); + break; + case "enterpriseId" : + entitys.add(new ExcelExportEntity("机构名称" ,"enterpriseId")); + break; + case "warehouseId" : + entitys.add(new ExcelExportEntity("发货仓库" ,"warehouseId")); + break; + case "deliveryAddress" : + entitys.add(new ExcelExportEntity("发货地址" ,"deliveryAddress")); + break; + case "remark" : + entitys.add(new ExcelExportEntity("备注" ,"remark")); + break; + case "tableField121-productName": + tableField121List.add(new ExcelExportEntity("商品名称" ,"productName")); + break; + case "tableField121-spec": + tableField121List.add(new ExcelExportEntity("规格" ,"spec")); + break; + case "tableField121-inventoryUnitId": + tableField121List.add(new ExcelExportEntity("库存单位" ,"inventoryUnitId")); + break; + case "tableField121-purchaseUnitId": + tableField121List.add(new ExcelExportEntity("销售单位" ,"purchaseUnitId")); + break; + case "tableField121-purchaseNum": + tableField121List.add(new ExcelExportEntity("销售数量" ,"purchaseNum")); + break; + case "tableField121-storageAreaId": + tableField121List.add(new ExcelExportEntity("出库货区" ,"storageAreaId")); + break; + case "tableField121-warehousingUnitId": + tableField121List.add(new ExcelExportEntity("出库单位" ,"warehousingUnitId")); + break; + case "tableField121-barCode": + tableField121List.add(new ExcelExportEntity("包装条码" ,"barCode")); + break; + case "tableField121-notificationStorageNumber": + tableField121List.add(new ExcelExportEntity("通知出库数量" ,"notificationStorageNumber")); + break; + case "tableField121-volume": + tableField121List.add(new ExcelExportEntity("体积" ,"volume")); + break; + case "tableField121-batchNo": + tableField121List.add(new ExcelExportEntity("批次号" ,"batchNo")); + break; + case "tableField121-produceDate": + tableField121List.add(new ExcelExportEntity("生产日期" ,"produceDate")); + break; + case "tableField121-remark": + tableField121List.add(new ExcelExportEntity("备注" ,"remark")); + break; + default: + break; + } + } + if(tableField121List.size() > 0){ + tableField121ExcelEntity.setList(tableField121List); + entitys.add(tableField121ExcelEntity); + } + } + + ExportParams exportParams = new ExportParams(null, "表单信息"); + exportParams.setType(ExcelType.XSSF); + try{ + @Cleanup Workbook workbook = new HSSFWorkbook(); + if (entitys.size()>0){ + if (list.size()==0){ + list.add(new HashMap<>()); + } + //去除空数据 + List> dataList = new ArrayList<>(); + for (Map map : list) { + int i = 0; + for (String key : keys) { + //子表 + if (key.toLowerCase().startsWith("tablefield")) { + String tableField = key.substring(0, key.indexOf("-" )); + String field = key.substring(key.indexOf("-" ) + 1); + Object o = map.get(tableField); + if (o != null) { + List> childList = (List>) o; + for (Map childMap : childList) { + if (childMap.get(field) != null) { + i++; + } + } + } + } else { + Object o = map.get(key); + if (o != null) { + i++; + } + } + } + if (i > 0) { + dataList.add(map); + } + } + //复杂表头-表头和数据处理 + ColumnDataModel columnDataModel = JsonUtil.getJsonToBean(WarehousingNotificationConstant.getColumnData(), ColumnDataModel.class); + List complexHeaderList = columnDataModel.getComplexHeaderList(); + if (!Objects.equals(columnDataModel.getType(), 3) && !Objects.equals(columnDataModel.getType(), 5)) { + entitys = VisualUtils.complexHeaderHandel(entitys, complexHeaderList); + dataList = VisualUtils.complexHeaderDataHandel(dataList, complexHeaderList); + } + + workbook = ExcelExportUtil.exportExcel(exportParams, entitys, dataList); + } + String fileName = "表单信息" + DateUtil.dateNow("yyyyMMdd") + "_" + RandomUtil.uuId() + ".xlsx"; + MultipartFile multipartFile = ExcelUtil.workbookToCommonsMultipartFile(workbook, fileName); + String temporaryFilePath = configValueUtil.getTemporaryFilePath(); + FileInfo fileInfo = FileUploadUtils.uploadFile(multipartFile, temporaryFilePath, fileName); + vo.setName(fileInfo.getFilename()); + vo.setUrl(UploaderUtil.uploaderFile(fileInfo.getFilename() + "#" + "Temporary") + "&name=" + fileName); + } catch (Exception e) { + log.error("信息导出Excel错误:{}", e.getMessage()); + e.printStackTrace(); + } + return vo; + } + /** + * 批量删除 + * @param ids + * @return + */ + @DeleteMapping("/batchRemove") + @Transactional + @Operation(summary = "批量删除") + public ActionResult batchRemove(@RequestBody String ids){ + List idList = JsonUtil.getJsonToList(ids, String.class); + List columnIdList = new ArrayList<>(20); + int i =0; + String errInfo = ""; + for (String allId : idList){ + FlowTaskEntity taskEntity = generaterSwapUtil.getInfoSubmit(allId, FlowTaskEntity::getId, FlowTaskEntity::getStatus); + if (taskEntity==null){ + columnIdList.add(allId); + this.delete(allId); + }else if (taskEntity.getStatus().equals(0) || taskEntity.getStatus().equals(4)){ + try { + generaterSwapUtil.deleteFlowTask(taskEntity); + columnIdList.add(allId); + this.delete(allId); + i++; + } catch (WorkFlowException e) { + errInfo = e.getMessage(); + e.printStackTrace(); + } + } + } + if (i == 0 && columnIdList.size()==0){ + return ActionResult.fail("流程已发起,无法删除"); + } + if (StringUtil.isNotEmpty(errInfo)){ + return ActionResult.fail(errInfo); + } + return ActionResult.success("删除成功"); + } + /** + * 编辑 + * @param id + * @param warehousingNotificationForm + * @return + */ + @PutMapping("/{id}") + @Operation(summary = "更新") + public ActionResult update(@PathVariable("id") String id,@RequestBody @Valid WarehousingNotificationForm warehousingNotificationForm, + @RequestParam(value = "isImport", required = false) boolean isImport){ + warehousingNotificationForm.setId(id); + if (!isImport) { + String b = warehousingNotificationService.checkForm(warehousingNotificationForm,1); + if (StringUtil.isNotEmpty(b)){ + return ActionResult.fail(b ); + } + } + WarehousingNotificationEntity entity= warehousingNotificationService.getInfo(id); + if(entity!=null){ + try{ + warehousingNotificationService.saveOrUpdate(warehousingNotificationForm,id,false); + }catch(Exception e){ + return ActionResult.fail("修改数据失败"); + } + return ActionResult.success("更新成功"); + }else{ + return ActionResult.fail("更新失败,数据不存在"); + } + } + /** + * 删除 + * @param id + * @return + */ + @Operation(summary = "删除") + @DeleteMapping("/{id}") + @Transactional + public ActionResult delete(@PathVariable("id") String id){ + WarehousingNotificationEntity entity= warehousingNotificationService.getInfo(id); + if(entity!=null){ + FlowTaskEntity taskEntity = generaterSwapUtil.getInfoSubmit(id, FlowTaskEntity::getId, FlowTaskEntity::getStatus); + if (taskEntity != null) { + try { + generaterSwapUtil.deleteFlowTask(taskEntity); + } catch (WorkFlowException e) { + e.printStackTrace(); + } + } + //假删除 + entity.setDeleteMark(1); + warehousingNotificationService.update(id,entity); + } + return ActionResult.success("删除成功"); + } + /** + * 表单信息(详情页) + * 详情页面使用-转换数据 + * @param id + * @return + */ + @Operation(summary = "表单信息(详情页)") + @GetMapping("/detail/{id}") + public ActionResult detailInfo(@PathVariable("id") String id){ + WarehousingNotificationEntity entity= warehousingNotificationService.getInfo(id); + if(entity==null){ + return ActionResult.fail("表单数据不存在!"); + } + Map warehousingNotificationMap=JsonUtil.entityToMap(entity); + warehousingNotificationMap.put("id", warehousingNotificationMap.get("id")); + //副表数据 + //子表数据 + List warehousingProductList = warehousingNotificationService.getWarehousingProductList(entity.getId()); + warehousingNotificationMap.put("tableField121",JsonUtil.getJsonToList(JsonUtil.getListToJsonArray(warehousingProductList))); + warehousingNotificationMap = generaterSwapUtil.swapDataDetail(warehousingNotificationMap,WarehousingNotificationConstant.getFormData(),"529305238373400645",false); + return ActionResult.success(warehousingNotificationMap); + } + /** + * 获取详情(编辑页) + * 编辑页面使用-不转换数据 + * @param id + * @return + */ + @Operation(summary = "信息") + @GetMapping("/{id}") + public ActionResult info(@PathVariable("id") String id){ + WarehousingNotificationEntity entity= warehousingNotificationService.getInfo(id); + if(entity==null){ + return ActionResult.fail("表单数据不存在!"); + } + Map warehousingNotificationMap=JsonUtil.entityToMap(entity); + warehousingNotificationMap.put("id", warehousingNotificationMap.get("id")); + //副表数据 + //子表数据 + List warehousingProductList = warehousingNotificationService.getWarehousingProductList(entity.getId()); + warehousingNotificationMap.put("warehousingProductList",JsonUtil.getJsonToList(JsonUtil.getListToJsonArray(warehousingProductList))); + warehousingNotificationMap = generaterSwapUtil.swapDataForm(warehousingNotificationMap,WarehousingNotificationConstant.getFormData(),WarehousingNotificationConstant.TABLEFIELDKEY,WarehousingNotificationConstant.TABLERENAMES); + return ActionResult.success(warehousingNotificationMap); + } + +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/entity/WarehousingNotificationEntity.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/entity/WarehousingNotificationEntity.java new file mode 100644 index 00000000..550c81b3 --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/entity/WarehousingNotificationEntity.java @@ -0,0 +1,91 @@ +package jnpf.entity; + +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import java.util.Date; +/** + * 入库通知表 + * + * @版本: V3.5 + * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * @作者: JNPF开发平台组 + * @日期: 2024-02-19 + */ +@Data +@TableName("jg_warehousing_notification") +public class WarehousingNotificationEntity { + @TableId(value ="ID" ) + private String id; + @TableField(value = "WAREHOUSING_TYPE" , updateStrategy = FieldStrategy.IGNORED) + private String warehousingType; + @TableField("WAREHOUSING_STATUS") + private String warehousingStatus; + @TableField(value = "WAREHOUSING_CODE" , updateStrategy = FieldStrategy.IGNORED) + private String warehousingCode; + @TableField("ORDER_SOURCE") + private String orderSource; + @TableField(value = "BUSINESS_ID" , updateStrategy = FieldStrategy.IGNORED) + private String businessId; + @TableField("PLANNED_WAREHOUSING_TIME_START") + private Date plannedWarehousingTimeStart; + @TableField("PLANNED_WAREHOUSING_TIME_END") + private Date plannedWarehousingTimeEnd; + @TableField(value = "SUBJECT_BASIC_ID" , updateStrategy = FieldStrategy.IGNORED) + private String subjectBasicId; + @TableField(value = "SHIPPING_ADDRESS" , updateStrategy = FieldStrategy.IGNORED) + private String shippingAddress; + @TableField(value = "ENTERPRISE_ID" , updateStrategy = FieldStrategy.IGNORED) + private String enterpriseId; + @TableField(value = "DELIVERY_ADDRESS" , updateStrategy = FieldStrategy.IGNORED) + private String deliveryAddress; + @TableField(value = "WAREHOUSE_ID" , updateStrategy = FieldStrategy.IGNORED) + private String warehouseId; + @TableField("PLAN_WAREHOUSING_NUM") + private String planWarehousingNum; + @TableField("CONFIRM_WAREHOUSING_NUM") + private String confirmWarehousingNum; + @TableField("WAIT_WAREHOUSING_NUM") + private String waitWarehousingNum; + @TableField(value = "REMARK" , updateStrategy = FieldStrategy.IGNORED) + private String remark; + @TableField("RESERVED_FIELDS1") + private String reservedFields1; + @TableField("RESERVED_FIELDS2") + private String reservedFields2; + @TableField("RESERVED_FIELDS3") + private String reservedFields3; + @TableField("RESERVED_FIELDS4") + private String reservedFields4; + @TableField("REMARK2") + private String remark2; + @TableField("REMARK3") + private String remark3; + @TableField("F_CREATOR_TIME") + private Date creatorTime; + @TableField("F_CREATOR_USER_ID") + private String creatorUserId; + @TableField("F_LAST_MODIFY_TIME") + private Date lastModifyTime; + @TableField("F_LAST_MODIFY_USER_ID") + private String lastModifyUserId; + @TableField("F_DELETE_TIME") + private Date deleteTime; + @TableField("F_DELETE_USER_ID") + private String deleteUserId; + @TableField("F_DELETE_MARK") + private Integer deleteMark; + @TableField("F_TENANT_ID") + private String tenantId; + @TableField("F_FLOW_ID") + private String flowId; + @TableField("COMPANY_ID") + private String companyId; + @TableField("DEPARTMENT_ID") + private String departmentId; + @TableField("F_FLOW_TASK_ID") + private String flowTaskId; + @TableField("F_VERSION") + private Integer version; + @TableField("PREPARATION_TIME") + private Date preparationTime; +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/entity/WarehousingProductEntity.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/entity/WarehousingProductEntity.java new file mode 100644 index 00000000..f83a062b --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/entity/WarehousingProductEntity.java @@ -0,0 +1,80 @@ +package jnpf.entity; + +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import java.util.Date; +import java.math.BigDecimal; +import java.math.BigDecimal; +import java.math.BigDecimal; +/** + * 入库通知商品信息 + * + * @版本: V3.5 + * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * @作者: JNPF开发平台组 + * @日期: 2024-02-19 + */ +@Data +@TableName("jg_warehousing_product") +public class WarehousingProductEntity { + @TableId(value ="ID" ) + private String id; + @TableField("WAREHOUSING_ID") + private String warehousingId; + @TableField("PRODUCT_ID") + private String productId; + @TableField(value = "PRODUCT_NAME" , updateStrategy = FieldStrategy.IGNORED) + private String productName; + @TableField(value = "SPEC" , updateStrategy = FieldStrategy.IGNORED) + private String spec; + @TableField(value = "INVENTORY_UNIT_ID" , updateStrategy = FieldStrategy.IGNORED) + private String inventoryUnitId; + @TableField(value = "PURCHASE_UNIT_ID" , updateStrategy = FieldStrategy.IGNORED) + private String purchaseUnitId; + @TableField(value = "PURCHASE_NUM" , updateStrategy = FieldStrategy.IGNORED) + private String purchaseNum; + @TableField(value = "STORAGE_AREA_ID" , updateStrategy = FieldStrategy.IGNORED) + private String storageAreaId; + @TableField(value = "WAREHOUSING_UNIT_ID" , updateStrategy = FieldStrategy.IGNORED) + private String warehousingUnitId; + @TableField("RECEIVED_QUANTITY") + private BigDecimal receivedQuantity; + @TableField("REMAINING_STOCKABLE_QUANTITY") + private BigDecimal remainingStockableQuantity; + @TableField(value = "NOTIFICATION_STORAGE_NUMBER" , updateStrategy = FieldStrategy.IGNORED) + private BigDecimal notificationStorageNumber; + @TableField(value = "VOLUME" , updateStrategy = FieldStrategy.IGNORED) + private String volume; + @TableField(value = "REMARK" , updateStrategy = FieldStrategy.IGNORED) + private String remark; + @TableField("VOUCHER_ID") + private String voucherId; + @TableField("PURCHASE_ORDER_ID") + private String purchaseOrderId; + @TableField("F_CREATOR_TIME") + private Date creatorTime; + @TableField("F_CREATOR_USER_ID") + private String creatorUserId; + @TableField("F_LAST_MODIFY_TIME") + private Date lastModifyTime; + @TableField("F_LAST_MODIFY_USER_ID") + private String lastModifyUserId; + @TableField("F_DELETE_TIME") + private Date deleteTime; + @TableField("F_DELETE_USER_ID") + private String deleteUserId; + @TableField("F_DELETE_MARK") + private Integer deleteMark; + @TableField("F_TENANT_ID") + private String tenantId; + @TableField("COMPANY_ID") + private String companyId; + @TableField("DEPARTMENT_ID") + private String departmentId; + @TableField(value = "BAR_CODE" , updateStrategy = FieldStrategy.IGNORED) + private String barCode; + @TableField(value = "BATCH_NO" , updateStrategy = FieldStrategy.IGNORED) + private String batchNo; + @TableField(value = "PRODUCE_DATE" , updateStrategy = FieldStrategy.IGNORED) + private Date produceDate; +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/businessorder/SettlementInfoModel.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/businessorder/SettlementInfoModel.java index 4b32a006..9e7d1130 100644 --- a/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/businessorder/SettlementInfoModel.java +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/businessorder/SettlementInfoModel.java @@ -60,4 +60,8 @@ public class SettlementInfoModel { /** 申请逾期利率 **/ @JSONField(name = "applyForOverdueRatio") private String applyForOverdueRatio; + + /** 业务类型 **/ + @JSONField(name = "businessType") + private String businessType; } diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingNotificationConstant.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingNotificationConstant.java new file mode 100644 index 00000000..a671352c --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingNotificationConstant.java @@ -0,0 +1,41 @@ +package jnpf.model.warehousingnotification; + +import jnpf.util.JsonUtil; +import java.util.Map; + +/** + * warehousingNotification配置json + * + * @版本: V3.5 + * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * @作者: JNPF开发平台组 + * @日期: 2024-02-19 + */ +public class WarehousingNotificationConstant{ + /** 数据库链接 */ + public static final String DBLINKID = "0"; + /** 表别名 map */ + public static final Map TABLERENAMES = JsonUtil.getJsonToBean("{\"jg_warehousing_notification\":\"warehousingNotification\",\"jg_warehousing_product\":\"warehousingProduct\"}",Map.class); + /** 子表model map */ + public static final Map TABLEFIELDKEY = JsonUtil.getJsonToBean("{\"tableField121\":\"jg_warehousing_product\"}",Map.class); + /** 整个表单配置json */ + public static final String getFormData(){ + StringBuilder sb = new StringBuilder(); +sb.append("{\"popupType\":\"fullScreen\",\"idGlobal\":136,\"formBtns\":false,\"labelWidth\":100,\"classNames\":[],\"className\":[],\"fullScreenWidth\":\"100%\",\"hasConfirmAndAddBtn\":true,\"labelPosition\":\"right\",\"printId\":\"\",\"disabled\":false,\"formModel\":\"dataForm\",\"cancelButtonText\":\"取 消\",\"confirmButtonText\":\"确 定\",\"hasCancelBtn\":true,\"primaryKeyPolicy\":1,\"confirmAndAddText\":\"确定并继续操作\",\"hasPrintBtn\":false,\"concurrencyLock\":true,\"classJson\":\"\",\"drawerWidth\":\"600px\",\"printButtonText\":\"打 印\",\"formRef\":\"formRef\",\"gutter\":15,\"logicalDelete\":true,\"size\":\"small\",\"formRules\":\"rules\",\"generalWidth\":\"600px\",\"hasConfirmBtn\":true,\"formStyle\":\"\",\"fields\":[{\"__config__\":{\"formId\":101,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"groupTitle\",\"dragDisabled\":false,\"className\":[],\"label\":\"分组标题\",\"showLabel\":false,\"required\":false,\"renderKey\":1708332233672,\"tableName\":\"jg_warehousing_notification\",\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-group\",\"tag\":\"JnpfGroupTitle\",\"span\":24},\"contentPosition\":\"left\",\"content\":\"基本信息\",\"helpMessage\":\"\"},{\"optionType\":\"button\",\"border\":false,\"__config__\":{\"formId\":102,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"radio\",\"defaultValue\":\"8\",\"noShow\":false,\"dataType\":\"static\",\"dictionaryType\":\"\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"\",\"trigger\":\"change\",\"propsUrl\":\"\",\"templateJson\":[],\"showLabel\":false,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332266321,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-radio\",\"propsName\":\"\",\"tag\":\"JnpfRadio\",\"regList\":[],\"span\":24},\"size\":\"small\",\"options\":[{\"fullName\":\"销售出库\",\"id\":\"8\"}],\"__vModel__\":\"warehousingType\",\"style\":{},\"disabled\":false,\"interfaceHasPage\":false,\"props\":{\"label\":\"fullName\",\"value\":\"id\"},\"direction\":\"horizontal\"},{\"__config__\":{\"formId\":103,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"groupTitle\",\"dragDisabled\":false,\"className\":[],\"label\":\"分组标题\",\"showLabel\":false,\"required\":false,\"renderKey\":1708332420163,\"tableName\":\"jg_warehousing_notification\",\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-group\",\"tag\":\"JnpfGroupTitle\",\"span\":24},\"contentPosition\":\"left\",\"content\":\"基础信息\",\"helpMessage\":\"\"},{\"__config__\":{\"formId\":104,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"billRule\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"rule\":\"cktz\",\"className\":[],\"label\":\"通知编号\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332437986,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-documents\",\"ruleName\":\"出库通知\",\"tag\":\"JnpfInput\",\"span\":8},\"readonly\":true,\"__vModel__\":\"warehousingCode\",\"style\":{\"width\":\"100%\"},\"placeholder\":\"系统自动生成\"},{\"__config__\":{\"formId\":106,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"createTime\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"制单时间\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332622689,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-createtime\",\"tag\":\"JnpfOpenData\",\"span\":8},\"readonly\":true,\"__vModel__\":\"preparationTime\",\"style\":{\"width\":\"100%\"},\"placeholder\":\"\",\"type\":\"currTime\"},{\"__config__\":{\"formId\":107,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"groupTitle\",\"dragDisabled\":false,\"className\":[],\"label\":\"分组标题\",\"showLabel\":false,\"required\":false,\"renderKey\":1708332651422,\"tableName\":\"jg_warehousing_notification\",\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-group\",\"tag\":\"JnpfGroupTitle\",\"span\":24},\"contentPosition\":\"left\",\"content\":\"关联信息\",\"helpMessage\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"订单编号\",\"value\":\"code\"}],\"templateJson\":[],\"relationField\":\"code\",\"__config__\":{\"formId\":109,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售订单\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332717520,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"businessId\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"529307088124379205\",\"interfaceName\":\"关联销售订单\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"__config__\":{\"formId\":111,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"groupTitle\",\"dragDisabled\":false,\"className\":[],\"label\":\"分组标题\",\"showLabel\":false,\"required\":false,\"renderKey\":1708333380889,\"tableName\":\"jg_warehousing_notification\",\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-group\",\"tag\":\"JnpfGroupTitle\",\"span\":24},\"contentPosition\":\"left\",\"content\":\"收货信息\",\"helpMessage\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"templateJson\":[],\"relationField\":\"name\",\"__config__\":{\"formId\":112,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"客户名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708333879117,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"subjectBasicId\",\"style\":{\"width\":\"100%\"},\"disabled\":true,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"522693551289534725\",\"interfaceName\":\"查询一级客户\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":113,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"收货地址\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334380601,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":8},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"shippingAddress\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"__config__\":{\"formId\":114,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"groupTitle\",\"dragDisabled\":false,\"className\":[],\"label\":\"分组标题\",\"showLabel\":false,\"required\":false,\"renderKey\":1708334476608,\"tableName\":\"jg_warehousing_notification\",\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-group\",\"tag\":\"JnpfGroupTitle\",\"span\":24},\"contentPosition\":\"left\",\"content\":\"发货信息\",\"helpMessage\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"机构名称\",\"value\":\"f_full_name\"}],\"templateJson\":[],\"relationField\":\"f_full_name\",\"__config__\":{\"formId\":115,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"机构名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334496015,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"enterpriseId\",\"style\":{\"width\":\"100%\"},\"disabled\":true,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"522729853024209157\",\"interfaceName\":\"查询机构列表\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessLineId\",\"defaultValue\":\"\",\"dataType\":\"varchar\",\"parameter\":\"businessLineId\",\"id\":\"PneOdw1\",\"required\":0}],\"relationField\":\"name\",\"__config__\":{\"formId\":116,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货仓库\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334662759,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"warehouseId\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"522701377537837317\",\"interfaceName\":\"根据业务线查询仓库\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"地址详情\",\"value\":\"addressDetail\"}],\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessOrganizeId\",\"defaultValue\":\"\",\"jnpfKey\":\"popupSelect\",\"dataType\":\"varchar\",\"parameter\":\"businessOrganizeId\",\"id\":\"AyAmdw1\",\"required\":0,\"relationField\":\"warehouseId\"}],\"relationField\":\"addressDetail\",\"__config__\":{\"formId\":117,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货地址\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335307693,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"deliveryAddress\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"522724961224231173\",\"interfaceName\":\"根据仓库查询地址\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"__config__\":{\"formId\":118,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"groupTitle\",\"dragDisabled\":false,\"className\":[],\"label\":\"分组标题\",\"showLabel\":false,\"required\":false,\"renderKey\":1708335549043,\"tableName\":\"jg_warehousing_notification\",\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-group\",\"tag\":\"JnpfGroupTitle\",\"span\":24},\"contentPosition\":\"left\",\"content\":\"其他信息\",\"helpMessage\":\"\"},{\"autoSize\":{\"minRows\":4,\"maxRows\":4},\"__config__\":{\"formId\":119,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"textarea\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335563897,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-textarea\",\"tag\":\"JnpfTextarea\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":true,\"__vModel__\":\"remark\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"type\":\"textarea\"},{\"__config__\":{\"formId\":120,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"groupTitle\",\"dragDisabled\":false,\"className\":[],\"label\":\"分组标题\",\"showLabel\":false,\"required\":false,\"renderKey\":1708335578000,\"tableName\":\"jg_warehousing_notification\",\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-group\",\"tag\":\"JnpfGroupTitle\",\"span\":24},\"contentPosition\":\"left\",\"content\":\"商品信息\",\"helpMessage\":\"\"},{\"showSummary\":false,\"actionText\":\"添加\",\"tableConf\":{},\"defaultValue\":[],\"addTableConf\":{\"popupType\":\"dialog\",\"hasPage\":true,\"popupTitle\":\"选择数据\",\"pageSize\":20,\"columnOptions\":[],\"interfaceId\":\"\",\"interfaceName\":\"\",\"relationOptions\":[],\"templateJson\":[],\"popupWidth\":\"800px\"},\"thousands\":false,\"summaryField\":[],\"thousandsField\":[],\"showDeleteBtn\":true,\"addType\":0,\"__config__\":{\"formId\":121,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"table\",\"defaultValue\":[],\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"\",\"type\":\"table\",\"showLabel\":false,\"tableName\":\"jg_warehousing_product\",\"renderKey\":1708335624757,\"layout\":\"rowFormItem\",\"rowType\":\"table\",\"tagIcon\":\"icon-ym icon-ym-generator-table\",\"children\":[{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":124,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"商品名称\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335883313,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"productName\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":125,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"规格\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335929153,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"spec\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":126,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"库存单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943057,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"inventoryUnitId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":127,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943539,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"purchaseUnitId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":128,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336024417,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"purchaseNum\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":129,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库货区\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336043733,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"storageAreaId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":130,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336044197,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"warehousingUnitId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":133,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"包装条码\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336333554,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"barCode\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":131,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"通知出库数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336087073,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"notificationStorageNumber\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":132,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"体积\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336121504,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"volume\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":134,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"批次号\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336348139,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"batchNo\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"__config__\":{\"relationTable\":\"jg_warehousing_product\",\"endRelationField\":\"\",\"parentVModel\":\"tableField121\",\"dragDisabled\":false,\"className\":[],\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336353954,\"tagIcon\":\"icon-ym icon-ym-generator-date\",\"startRelationField\":\"\",\"defaultCurrent\":false,\"isSubTable\":true,\"tag\":\"JnpfDatePicker\",\"formId\":135,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"datePicker\",\"noShow\":false,\"endTimeTarget\":1,\"tipLabel\":\"\",\"startTimeType\":1,\"endTimeRule\":false,\"label\":\"生产日期\",\"startTimeRule\":false,\"startTimeValue\":\"\",\"trigger\":\"change\",\"endTimeValue\":\"\",\"endTimeType\":1,\"layout\":\"colFormItem\",\"startTimeTarget\":1,\"regList\":[],\"span\":24},\"readonly\":false,\"format\":\"yyyy-MM-dd\",\"__vModel__\":\"produceDate\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请选择\",\"type\":\"date\"},{\"clearable\":true,\"suffixIcon\":\"\",\"addonAfter\":\"\",\"__config__\":{\"formId\":136,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336369605,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"remark\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"}],\"showTitle\":true,\"complexHeaderList\":[],\"tag\":\"JnpfInputTable\",\"componentName\":\"row121\",\"span\":24},\"showAddBtn\":true,\"__vModel__\":\"tableField121\",\"disabled\":false}],\"span\":24}"); return sb.toString(); + } + /** 列表字段配置json */ + public static final String getColumnData(){ + StringBuilder sb = new StringBuilder(); +sb.append("{\"showSummary\":false,\"hasPage\":true,\"searchList\":[{\"__config__\":{\"formId\":104,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"billRule\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"rule\":\"cktz\",\"className\":[],\"label\":\"通知编号\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332437986,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-documents\",\"ruleName\":\"出库通知\",\"tag\":\"JnpfInput\",\"span\":8},\"readonly\":true,\"searchType\":2,\"jnpfKey\":\"billRule\",\"prop\":\"warehousingCode\",\"__vModel__\":\"warehousingCode\",\"searchMultiple\":false,\"fullName\":\"通知编号\",\"style\":{\"width\":\"100%\"},\"label\":\"通知编号\",\"id\":\"warehousingCode\",\"placeholder\":\"系统自动生成\"}],\"treeInterfaceId\":\"\",\"treePropsValue\":\"id\",\"ruleList\":{\"conditionList\":[],\"matchLogic\":\"and\"},\"childTableStyle\":1,\"columnOptions\":[{\"border\":false,\"fullName\":\"\",\"props\":{\"label\":\"fullName\",\"value\":\"id\"},\"optionType\":\"button\",\"__config__\":{\"formId\":102,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"radio\",\"defaultValue\":\"8\",\"noShow\":false,\"dataType\":\"static\",\"dictionaryType\":\"\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"\",\"trigger\":\"change\",\"propsUrl\":\"\",\"templateJson\":[],\"showLabel\":false,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332266321,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-radio\",\"propsName\":\"\",\"tag\":\"JnpfRadio\",\"regList\":[],\"span\":24},\"size\":\"small\",\"options\":[{\"fullName\":\"销售出库\",\"id\":\"8\"}],\"__vModel__\":\"warehousingType\",\"style\":{},\"disabled\":false,\"interfaceHasPage\":false,\"id\":\"warehousingType\",\"direction\":\"horizontal\"},{\"__config__\":{\"formId\":104,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"billRule\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"rule\":\"cktz\",\"className\":[],\"label\":\"通知编号\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332437986,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-documents\",\"ruleName\":\"出库通知\",\"tag\":\"JnpfInput\",\"span\":8},\"readonly\":true,\"__vModel__\":\"warehousingCode\",\"fullName\":\"通知编号\",\"style\":{\"width\":\"100%\"},\"id\":\"warehousingCode\",\"placeholder\":\"系统自动生成\"},{\"__config__\":{\"formId\":106,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"createTime\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"制单时间\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332622689,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-createtime\",\"tag\":\"JnpfOpenData\",\"span\":8},\"readonly\":true,\"__vModel__\":\"preparationTime\",\"fullName\":\"制单时间\",\"style\":{\"width\":\"100%\"},\"id\":\"preparationTime\",\"placeholder\":\"\",\"type\":\"currTime\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"fullName\":\"销售订单\",\"pageSize\":20,\"columnOptions\":[{\"label\":\"订单编号\",\"value\":\"code\"}],\"templateJson\":[],\"relationField\":\"code\",\"__config__\":{\"formId\":109,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售订单\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332717520,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"businessId\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"interfaceHasPage\":false,\"id\":\"businessId\",\"placeholder\":\"请选择\",\"interfaceId\":\"529307088124379205\",\"interfaceName\":\"关联销售订单\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"fullName\":\"客户名称\",\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"templateJson\":[],\"relationField\":\"name\",\"__config__\":{\"formId\":112,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"客户名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708333879117,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"subjectBasicId\",\"style\":{\"width\":\"100%\"},\"disabled\":true,\"interfaceHasPage\":false,\"id\":\"subjectBasicId\",\"placeholder\":\"请选择\",\"interfaceId\":\"522693551289534725\",\"interfaceName\":\"查询一级客户\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"收货地址\",\"addonAfter\":\"\",\"__config__\":{\"formId\":113,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"收货地址\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334380601,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":8},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"shippingAddress\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"shippingAddress\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"fullName\":\"机构名称\",\"pageSize\":20,\"columnOptions\":[{\"label\":\"机构名称\",\"value\":\"f_full_name\"}],\"templateJson\":[],\"relationField\":\"f_full_name\",\"__config__\":{\"formId\":115,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"机构名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334496015,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"enterpriseId\",\"style\":{\"width\":\"100%\"},\"disabled\":true,\"interfaceHasPage\":false,\"id\":\"enterpriseId\",\"placeholder\":\"请选择\",\"interfaceId\":\"522729853024209157\",\"interfaceName\":\"查询机构列表\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"fullName\":\"发货仓库\",\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessLineId\",\"defaultValue\":\"\",\"dataType\":\"varchar\",\"parameter\":\"businessLineId\",\"id\":\"PneOdw1\",\"required\":0}],\"relationField\":\"name\",\"__config__\":{\"formId\":116,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货仓库\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334662759,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"warehouseId\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"interfaceHasPage\":false,\"id\":\"warehouseId\",\"placeholder\":\"请选择\",\"interfaceId\":\"522701377537837317\",\"interfaceName\":\"根据业务线查询仓库\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"fullName\":\"发货地址\",\"pageSize\":20,\"columnOptions\":[{\"label\":\"地址详情\",\"value\":\"addressDetail\"}],\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessOrganizeId\",\"defaultValue\":\"\",\"jnpfKey\":\"popupSelect\",\"dataType\":\"varchar\",\"parameter\":\"businessOrganizeId\",\"id\":\"AyAmdw1\",\"required\":0,\"relationField\":\"warehouseId\"}],\"relationField\":\"addressDetail\",\"__config__\":{\"formId\":117,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货地址\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335307693,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"deliveryAddress\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"interfaceHasPage\":false,\"id\":\"deliveryAddress\",\"placeholder\":\"请选择\",\"interfaceId\":\"522724961224231173\",\"interfaceName\":\"根据仓库查询地址\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"fullName\":\"备注\",\"type\":\"textarea\",\"autoSize\":{\"minRows\":4,\"maxRows\":4},\"__config__\":{\"formId\":119,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"textarea\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335563897,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-textarea\",\"tag\":\"JnpfTextarea\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":true,\"__vModel__\":\"remark\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"remark\",\"placeholder\":\"请输入\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-商品名称\",\"addonAfter\":\"\",\"__config__\":{\"formId\":124,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"商品名称\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335883313,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"productName\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-productName\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-规格\",\"addonAfter\":\"\",\"__config__\":{\"formId\":125,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"规格\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335929153,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"spec\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-spec\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-库存单位\",\"addonAfter\":\"\",\"__config__\":{\"formId\":126,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"库存单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943057,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"inventoryUnitId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-inventoryUnitId\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-销售单位\",\"addonAfter\":\"\",\"__config__\":{\"formId\":127,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943539,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"purchaseUnitId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-purchaseUnitId\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-销售数量\",\"addonAfter\":\"\",\"__config__\":{\"formId\":128,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336024417,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"purchaseNum\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-purchaseNum\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-出库货区\",\"addonAfter\":\"\",\"__config__\":{\"formId\":129,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库货区\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336043733,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"storageAreaId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-storageAreaId\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-出库单位\",\"addonAfter\":\"\",\"__config__\":{\"formId\":130,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336044197,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"warehousingUnitId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-warehousingUnitId\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-包装条码\",\"addonAfter\":\"\",\"__config__\":{\"formId\":133,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"包装条码\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336333554,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"barCode\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-barCode\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-通知出库数量\",\"addonAfter\":\"\",\"__config__\":{\"formId\":131,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"通知出库数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336087073,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"notificationStorageNumber\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-notificationStorageNumber\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-体积\",\"addonAfter\":\"\",\"__config__\":{\"formId\":132,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"体积\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336121504,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"volume\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-volume\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-批次号\",\"addonAfter\":\"\",\"__config__\":{\"formId\":134,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"批次号\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336348139,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"batchNo\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-batchNo\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"format\":\"yyyy-MM-dd\",\"fullName\":\"-生产日期\",\"type\":\"date\",\"__config__\":{\"relationTable\":\"jg_warehousing_product\",\"endRelationField\":\"\",\"parentVModel\":\"tableField121\",\"dragDisabled\":false,\"className\":[],\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336353954,\"tagIcon\":\"icon-ym icon-ym-generator-date\",\"startRelationField\":\"\",\"defaultCurrent\":false,\"isSubTable\":true,\"tag\":\"JnpfDatePicker\",\"formId\":135,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"datePicker\",\"noShow\":false,\"endTimeTarget\":1,\"tipLabel\":\"\",\"startTimeType\":1,\"endTimeRule\":false,\"label\":\"生产日期\",\"startTimeRule\":false,\"startTimeValue\":\"\",\"trigger\":\"change\",\"endTimeValue\":\"\",\"endTimeType\":1,\"layout\":\"colFormItem\",\"startTimeTarget\":1,\"regList\":[],\"span\":24},\"readonly\":false,\"__vModel__\":\"produceDate\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-produceDate\",\"placeholder\":\"请选择\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-备注\",\"addonAfter\":\"\",\"__config__\":{\"formId\":136,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336369605,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"remark\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-remark\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"}],\"pageSize\":20,\"treePropsChildren\":\"children\",\"type\":1,\"columnBtnsList\":[{\"icon\":\"icon-ym icon-ym-btn-edit\",\"label\":\"编辑\",\"value\":\"edit\"},{\"icon\":\"icon-ym icon-ym-btn-clearn\",\"label\":\"删除\",\"value\":\"remove\"},{\"icon\":\"icon-ym icon-ym-generator-menu\",\"label\":\"详情\",\"value\":\"detail\"}],\"thousandsField\":[],\"treeTitle\":\"左侧标题\",\"defaultColumnList\":[{\"border\":false,\"jnpfKey\":\"radio\",\"fullName\":\"\",\"label\":\"\",\"sortable\":false,\"align\":\"left\",\"props\":{\"label\":\"fullName\",\"value\":\"id\"},\"optionType\":\"button\",\"__config__\":{\"formId\":102,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"radio\",\"defaultValue\":\"8\",\"noShow\":false,\"dataType\":\"static\",\"dictionaryType\":\"\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"\",\"trigger\":\"change\",\"propsUrl\":\"\",\"templateJson\":[],\"showLabel\":false,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332266321,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-radio\",\"propsName\":\"\",\"tag\":\"JnpfRadio\",\"regList\":[],\"span\":24},\"size\":\"small\",\"prop\":\"warehousingType\",\"options\":[{\"fullName\":\"销售出库\",\"id\":\"8\"}],\"__vModel__\":\"warehousingType\",\"checked\":false,\"fixed\":\"none\",\"style\":{},\"disabled\":false,\"interfaceHasPage\":false,\"id\":\"warehousingType\",\"direction\":\"horizontal\"},{\"jnpfKey\":\"billRule\",\"fullName\":\"通知编号\",\"label\":\"通知编号\",\"sortable\":false,\"align\":\"left\",\"__config__\":{\"formId\":104,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"billRule\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"rule\":\"cktz\",\"className\":[],\"label\":\"通知编号\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332437986,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-documents\",\"ruleName\":\"出库通知\",\"tag\":\"JnpfInput\",\"span\":8},\"readonly\":true,\"prop\":\"warehousingCode\",\"__vModel__\":\"warehousingCode\",\"checked\":true,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"id\":\"warehousingCode\",\"placeholder\":\"系统自动生成\"},{\"jnpfKey\":\"createTime\",\"fullName\":\"制单时间\",\"label\":\"制单时间\",\"sortable\":false,\"align\":\"left\",\"type\":\"currTime\",\"__config__\":{\"formId\":106,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"createTime\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"制单时间\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332622689,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-createtime\",\"tag\":\"JnpfOpenData\",\"span\":8},\"readonly\":true,\"prop\":\"preparationTime\",\"__vModel__\":\"preparationTime\",\"checked\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"id\":\"preparationTime\",\"placeholder\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"订单编号\",\"value\":\"code\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":109,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售订单\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332717520,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"businessId\",\"__vModel__\":\"businessId\",\"checked\":true,\"disabled\":false,\"id\":\"businessId\",\"placeholder\":\"请选择\",\"interfaceName\":\"关联销售订单\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"销售订单\",\"label\":\"销售订单\",\"sortable\":false,\"relationField\":\"code\",\"popupTitle\":\"选择数据\",\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"529307088124379205\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":112,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"客户名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708333879117,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"subjectBasicId\",\"__vModel__\":\"subjectBasicId\",\"checked\":true,\"disabled\":true,\"id\":\"subjectBasicId\",\"placeholder\":\"请选择\",\"interfaceName\":\"查询一级客户\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"客户名称\",\"label\":\"客户名称\",\"sortable\":false,\"relationField\":\"name\",\"popupTitle\":\"选择数据\",\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522693551289534725\",\"propsValue\":\"id\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":113,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"收货地址\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334380601,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":8},\"readonly\":false,\"prop\":\"shippingAddress\",\"showWordLimit\":false,\"__vModel__\":\"shippingAddress\",\"checked\":true,\"disabled\":false,\"id\":\"shippingAddress\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"收货地址\",\"label\":\"收货地址\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"机构名称\",\"value\":\"f_full_name\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":115,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"机构名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334496015,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"enterpriseId\",\"__vModel__\":\"enterpriseId\",\"checked\":true,\"disabled\":true,\"id\":\"enterpriseId\",\"placeholder\":\"请选择\",\"interfaceName\":\"查询机构列表\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"机构名称\",\"label\":\"机构名称\",\"sortable\":false,\"relationField\":\"f_full_name\",\"popupTitle\":\"选择数据\",\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522729853024209157\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"align\":\"left\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessLineId\",\"defaultValue\":\"\",\"dataType\":\"varchar\",\"parameter\":\"businessLineId\",\"id\":\"PneOdw1\",\"required\":0}],\"__config__\":{\"formId\":116,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货仓库\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334662759,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"warehouseId\",\"__vModel__\":\"warehouseId\",\"checked\":true,\"disabled\":false,\"id\":\"warehouseId\",\"placeholder\":\"请选择\",\"interfaceName\":\"根据业务线查询仓库\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"发货仓库\",\"label\":\"发货仓库\",\"sortable\":false,\"relationField\":\"name\",\"popupTitle\":\"选择数据\",\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522701377537837317\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"地址详情\",\"value\":\"addressDetail\"}],\"align\":\"left\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessOrganizeId\",\"defaultValue\":\"\",\"jnpfKey\":\"popupSelect\",\"dataType\":\"varchar\",\"parameter\":\"businessOrganizeId\",\"id\":\"AyAmdw1\",\"required\":0,\"relationField\":\"warehouseId\"}],\"__config__\":{\"formId\":117,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货地址\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335307693,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"deliveryAddress\",\"__vModel__\":\"deliveryAddress\",\"checked\":true,\"disabled\":false,\"id\":\"deliveryAddress\",\"placeholder\":\"请选择\",\"interfaceName\":\"根据仓库查询地址\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"发货地址\",\"label\":\"发货地址\",\"sortable\":false,\"relationField\":\"addressDetail\",\"popupTitle\":\"选择数据\",\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522724961224231173\",\"propsValue\":\"id\"},{\"jnpfKey\":\"textarea\",\"fullName\":\"备注\",\"label\":\"备注\",\"sortable\":false,\"align\":\"left\",\"type\":\"textarea\",\"autoSize\":{\"minRows\":4,\"maxRows\":4},\"__config__\":{\"formId\":119,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"textarea\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335563897,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-textarea\",\"tag\":\"JnpfTextarea\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"remark\",\"showWordLimit\":true,\"__vModel__\":\"remark\",\"checked\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"remark\",\"placeholder\":\"请输入\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":124,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"商品名称\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335883313,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-productName\",\"showWordLimit\":false,\"__vModel__\":\"productName\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-productName\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-商品名称\",\"label\":\"-商品名称\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":125,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"规格\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335929153,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-spec\",\"showWordLimit\":false,\"__vModel__\":\"spec\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-spec\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-规格\",\"label\":\"-规格\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":126,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"库存单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943057,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-inventoryUnitId\",\"showWordLimit\":false,\"__vModel__\":\"inventoryUnitId\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-inventoryUnitId\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-库存单位\",\"label\":\"-库存单位\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":127,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943539,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-purchaseUnitId\",\"showWordLimit\":false,\"__vModel__\":\"purchaseUnitId\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-purchaseUnitId\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-销售单位\",\"label\":\"-销售单位\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":128,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336024417,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-purchaseNum\",\"showWordLimit\":false,\"__vModel__\":\"purchaseNum\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-purchaseNum\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-销售数量\",\"label\":\"-销售数量\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":129,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库货区\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336043733,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-storageAreaId\",\"showWordLimit\":false,\"__vModel__\":\"storageAreaId\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-storageAreaId\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-出库货区\",\"label\":\"-出库货区\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":130,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336044197,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-warehousingUnitId\",\"showWordLimit\":false,\"__vModel__\":\"warehousingUnitId\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-warehousingUnitId\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-出库单位\",\"label\":\"-出库单位\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":133,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"包装条码\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336333554,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-barCode\",\"showWordLimit\":false,\"__vModel__\":\"barCode\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-barCode\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-包装条码\",\"label\":\"-包装条码\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":131,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"通知出库数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336087073,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-notificationStorageNumber\",\"showWordLimit\":false,\"__vModel__\":\"notificationStorageNumber\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-notificationStorageNumber\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-通知出库数量\",\"label\":\"-通知出库数量\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":132,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"体积\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336121504,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-volume\",\"showWordLimit\":false,\"__vModel__\":\"volume\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-volume\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-体积\",\"label\":\"-体积\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":134,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"批次号\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336348139,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-batchNo\",\"showWordLimit\":false,\"__vModel__\":\"batchNo\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-batchNo\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-批次号\",\"label\":\"-批次号\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"},{\"clearable\":true,\"jnpfKey\":\"datePicker\",\"format\":\"yyyy-MM-dd\",\"fullName\":\"-生产日期\",\"label\":\"-生产日期\",\"sortable\":false,\"align\":\"left\",\"type\":\"date\",\"__config__\":{\"relationTable\":\"jg_warehousing_product\",\"endRelationField\":\"\",\"parentVModel\":\"tableField121\",\"dragDisabled\":false,\"className\":[],\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336353954,\"tagIcon\":\"icon-ym icon-ym-generator-date\",\"startRelationField\":\"\",\"defaultCurrent\":false,\"isSubTable\":true,\"tag\":\"JnpfDatePicker\",\"formId\":135,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"datePicker\",\"noShow\":false,\"endTimeTarget\":1,\"tipLabel\":\"\",\"startTimeType\":1,\"endTimeRule\":false,\"label\":\"生产日期\",\"startTimeRule\":false,\"startTimeValue\":\"\",\"trigger\":\"change\",\"endTimeValue\":\"\",\"endTimeType\":1,\"layout\":\"colFormItem\",\"startTimeTarget\":1,\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-produceDate\",\"__vModel__\":\"produceDate\",\"checked\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"tableField121-produceDate\",\"placeholder\":\"请选择\"},{\"suffixIcon\":\"\",\"align\":\"left\",\"__config__\":{\"formId\":136,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336369605,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-remark\",\"showWordLimit\":false,\"__vModel__\":\"remark\",\"checked\":false,\"disabled\":false,\"id\":\"tableField121-remark\",\"placeholder\":\"请输入\",\"addonBefore\":\"\",\"clearable\":true,\"jnpfKey\":\"input\",\"fullName\":\"-备注\",\"label\":\"-备注\",\"sortable\":false,\"addonAfter\":\"\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"prefixIcon\":\"\"}],\"treeTemplateJson\":[],\"treePropsName\":\"\",\"useColumnPermission\":false,\"treePropsUrl\":\"\",\"treeRelation\":\"\",\"treeSynType\":0,\"btnsList\":[{\"icon\":\"icon-ym icon-ym-btn-add\",\"label\":\"新增\",\"value\":\"add\"},{\"icon\":\"icon-ym icon-ym-btn-download\",\"label\":\"导出\",\"value\":\"download\"},{\"icon\":\"icon-ym icon-ym-btn-clearn\",\"label\":\"批量删除\",\"value\":\"batchRemove\"}],\"useDataPermission\":true,\"columnList\":[{\"jnpfKey\":\"billRule\",\"fullName\":\"通知编号\",\"label\":\"通知编号\",\"sortable\":false,\"align\":\"left\",\"__config__\":{\"formId\":104,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"billRule\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"rule\":\"cktz\",\"className\":[],\"label\":\"通知编号\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332437986,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-documents\",\"ruleName\":\"出库通知\",\"tag\":\"JnpfInput\",\"span\":8},\"readonly\":true,\"prop\":\"warehousingCode\",\"width\":0,\"__vModel__\":\"warehousingCode\",\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"id\":\"warehousingCode\",\"placeholder\":\"系统自动生成\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"订单编号\",\"value\":\"code\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":109,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售订单\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332717520,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"businessId\",\"__vModel__\":\"businessId\",\"disabled\":false,\"id\":\"businessId\",\"placeholder\":\"请选择\",\"interfaceName\":\"关联销售订单\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"销售订单\",\"label\":\"销售订单\",\"sortable\":false,\"relationField\":\"code\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"529307088124379205\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":112,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"客户名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708333879117,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"subjectBasicId\",\"__vModel__\":\"subjectBasicId\",\"disabled\":true,\"id\":\"subjectBasicId\",\"placeholder\":\"请选择\",\"interfaceName\":\"查询一级客户\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"客户名称\",\"label\":\"客户名称\",\"sortable\":false,\"relationField\":\"name\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522693551289534725\",\"propsValue\":\"id\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"收货地址\",\"label\":\"收货地址\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":113,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"收货地址\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334380601,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":8},\"readonly\":false,\"prop\":\"shippingAddress\",\"showWordLimit\":false,\"width\":0,\"__vModel__\":\"shippingAddress\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"shippingAddress\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"机构名称\",\"value\":\"f_full_name\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":115,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"机构名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334496015,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"enterpriseId\",\"__vModel__\":\"enterpriseId\",\"disabled\":true,\"id\":\"enterpriseId\",\"placeholder\":\"请选择\",\"interfaceName\":\"查询机构列表\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"机构名称\",\"label\":\"机构名称\",\"sortable\":false,\"relationField\":\"f_full_name\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522729853024209157\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"align\":\"left\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessLineId\",\"defaultValue\":\"\",\"dataType\":\"varchar\",\"parameter\":\"businessLineId\",\"id\":\"PneOdw1\",\"required\":0}],\"__config__\":{\"formId\":116,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货仓库\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334662759,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"warehouseId\",\"__vModel__\":\"warehouseId\",\"disabled\":false,\"id\":\"warehouseId\",\"placeholder\":\"请选择\",\"interfaceName\":\"根据业务线查询仓库\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"发货仓库\",\"label\":\"发货仓库\",\"sortable\":false,\"relationField\":\"name\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522701377537837317\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"地址详情\",\"value\":\"addressDetail\"}],\"align\":\"left\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessOrganizeId\",\"defaultValue\":\"\",\"jnpfKey\":\"popupSelect\",\"dataType\":\"varchar\",\"parameter\":\"businessOrganizeId\",\"id\":\"AyAmdw1\",\"required\":0,\"relationField\":\"warehouseId\"}],\"__config__\":{\"formId\":117,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货地址\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335307693,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"deliveryAddress\",\"__vModel__\":\"deliveryAddress\",\"disabled\":false,\"id\":\"deliveryAddress\",\"placeholder\":\"请选择\",\"interfaceName\":\"根据仓库查询地址\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"发货地址\",\"label\":\"发货地址\",\"sortable\":false,\"relationField\":\"addressDetail\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522724961224231173\",\"propsValue\":\"id\"}],\"sort\":\"desc\",\"thousands\":false,\"hasSuperQuery\":true,\"summaryField\":[],\"parentField\":\"\",\"treePropsLabel\":\"fullName\",\"treeDataSource\":\"dictionary\",\"groupField\":\"\",\"printIds\":[],\"uploaderTemplateJson\":{},\"treeDictionary\":\"\",\"hasTreeQuery\":false,\"useFormPermission\":false,\"customBtnsList\":[],\"complexHeaderList\":[],\"useBtnPermission\":true,\"treeInterfaceName\":\"\",\"defaultSidx\":\"\"}"); return sb.toString(); + } + /** app列表字段配置json */ + public static final String getAppColumnData(){ + StringBuilder sb = new StringBuilder(); +sb.append("{\"hasPage\":true,\"useColumnPermission\":false,\"searchList\":[],\"btnsList\":[{\"icon\":\"icon-ym icon-ym-btn-add\",\"label\":\"新增\",\"value\":\"add\"}],\"useDataPermission\":false,\"ruleListApp\":{\"conditionList\":[],\"matchLogic\":\"and\"},\"columnList\":[{\"jnpfKey\":\"billRule\",\"fullName\":\"通知编号\",\"label\":\"通知编号\",\"sortable\":false,\"align\":\"left\",\"__config__\":{\"formId\":104,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"billRule\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"rule\":\"cktz\",\"className\":[],\"label\":\"通知编号\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332437986,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-documents\",\"ruleName\":\"出库通知\",\"tag\":\"JnpfInput\",\"span\":8},\"readonly\":true,\"prop\":\"warehousingCode\",\"width\":0,\"__vModel__\":\"warehousingCode\",\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"id\":\"warehousingCode\",\"placeholder\":\"系统自动生成\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"订单编号\",\"value\":\"code\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":109,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售订单\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332717520,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"businessId\",\"__vModel__\":\"businessId\",\"disabled\":false,\"id\":\"businessId\",\"placeholder\":\"请选择\",\"interfaceName\":\"关联销售订单\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"销售订单\",\"label\":\"销售订单\",\"sortable\":false,\"relationField\":\"code\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"529307088124379205\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":112,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"客户名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708333879117,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"subjectBasicId\",\"__vModel__\":\"subjectBasicId\",\"disabled\":true,\"id\":\"subjectBasicId\",\"placeholder\":\"请选择\",\"interfaceName\":\"查询一级客户\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"客户名称\",\"label\":\"客户名称\",\"sortable\":false,\"relationField\":\"name\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522693551289534725\",\"propsValue\":\"id\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"收货地址\",\"label\":\"收货地址\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":113,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"收货地址\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334380601,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":8},\"readonly\":false,\"prop\":\"shippingAddress\",\"showWordLimit\":false,\"width\":0,\"__vModel__\":\"shippingAddress\",\"showPassword\":false,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"id\":\"shippingAddress\",\"placeholder\":\"请输入\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"机构名称\",\"value\":\"f_full_name\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":115,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"机构名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334496015,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"enterpriseId\",\"__vModel__\":\"enterpriseId\",\"disabled\":true,\"id\":\"enterpriseId\",\"placeholder\":\"请选择\",\"interfaceName\":\"查询机构列表\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"机构名称\",\"label\":\"机构名称\",\"sortable\":false,\"relationField\":\"f_full_name\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522729853024209157\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"align\":\"left\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessLineId\",\"defaultValue\":\"\",\"dataType\":\"varchar\",\"parameter\":\"businessLineId\",\"id\":\"PneOdw1\",\"required\":0}],\"__config__\":{\"formId\":116,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货仓库\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334662759,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"warehouseId\",\"__vModel__\":\"warehouseId\",\"disabled\":false,\"id\":\"warehouseId\",\"placeholder\":\"请选择\",\"interfaceName\":\"根据业务线查询仓库\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"发货仓库\",\"label\":\"发货仓库\",\"sortable\":false,\"relationField\":\"name\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522701377537837317\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"地址详情\",\"value\":\"addressDetail\"}],\"align\":\"left\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessOrganizeId\",\"defaultValue\":\"\",\"jnpfKey\":\"popupSelect\",\"dataType\":\"varchar\",\"parameter\":\"businessOrganizeId\",\"id\":\"AyAmdw1\",\"required\":0,\"relationField\":\"warehouseId\"}],\"__config__\":{\"formId\":117,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货地址\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335307693,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"deliveryAddress\",\"__vModel__\":\"deliveryAddress\",\"disabled\":false,\"id\":\"deliveryAddress\",\"placeholder\":\"请选择\",\"interfaceName\":\"根据仓库查询地址\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"发货地址\",\"label\":\"发货地址\",\"sortable\":false,\"relationField\":\"addressDetail\",\"popupTitle\":\"选择数据\",\"width\":0,\"fixed\":\"none\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522724961224231173\",\"propsValue\":\"id\"}],\"columnOptions\":[{\"border\":false,\"fullName\":\"\",\"props\":{\"label\":\"fullName\",\"value\":\"id\"},\"optionType\":\"button\",\"__config__\":{\"formId\":102,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"radio\",\"defaultValue\":\"8\",\"noShow\":false,\"dataType\":\"static\",\"dictionaryType\":\"\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"\",\"trigger\":\"change\",\"propsUrl\":\"\",\"templateJson\":[],\"showLabel\":false,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332266321,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-radio\",\"propsName\":\"\",\"tag\":\"JnpfRadio\",\"regList\":[],\"span\":24},\"size\":\"small\",\"options\":[{\"fullName\":\"销售出库\",\"id\":\"8\"}],\"__vModel__\":\"warehousingType\",\"style\":{},\"disabled\":false,\"interfaceHasPage\":false,\"id\":\"warehousingType\",\"direction\":\"horizontal\"},{\"__config__\":{\"formId\":104,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"billRule\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"rule\":\"cktz\",\"className\":[],\"label\":\"通知编号\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332437986,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-documents\",\"ruleName\":\"出库通知\",\"tag\":\"JnpfInput\",\"span\":8},\"readonly\":true,\"__vModel__\":\"warehousingCode\",\"fullName\":\"通知编号\",\"style\":{\"width\":\"100%\"},\"placeholder\":\"系统自动生成\",\"id\":\"warehousingCode\"},{\"__config__\":{\"formId\":106,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"createTime\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"制单时间\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332622689,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-createtime\",\"tag\":\"JnpfOpenData\",\"span\":8},\"readonly\":true,\"__vModel__\":\"preparationTime\",\"fullName\":\"制单时间\",\"style\":{\"width\":\"100%\"},\"placeholder\":\"\",\"id\":\"preparationTime\",\"type\":\"currTime\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"订单编号\",\"value\":\"code\"}],\"fullName\":\"销售订单\",\"templateJson\":[],\"relationField\":\"code\",\"__config__\":{\"formId\":109,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售订单\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332717520,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"businessId\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"529307088124379205\",\"interfaceName\":\"关联销售订单\",\"id\":\"businessId\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"fullName\":\"客户名称\",\"templateJson\":[],\"relationField\":\"name\",\"__config__\":{\"formId\":112,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"客户名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708333879117,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"subjectBasicId\",\"style\":{\"width\":\"100%\"},\"disabled\":true,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"522693551289534725\",\"interfaceName\":\"查询一级客户\",\"id\":\"subjectBasicId\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"收货地址\",\"addonAfter\":\"\",\"__config__\":{\"formId\":113,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"收货地址\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334380601,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":8},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"shippingAddress\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"shippingAddress\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"机构名称\",\"value\":\"f_full_name\"}],\"fullName\":\"机构名称\",\"templateJson\":[],\"relationField\":\"f_full_name\",\"__config__\":{\"formId\":115,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"机构名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334496015,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"enterpriseId\",\"style\":{\"width\":\"100%\"},\"disabled\":true,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"522729853024209157\",\"interfaceName\":\"查询机构列表\",\"id\":\"enterpriseId\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"fullName\":\"发货仓库\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessLineId\",\"defaultValue\":\"\",\"dataType\":\"varchar\",\"parameter\":\"businessLineId\",\"id\":\"PneOdw1\",\"required\":0}],\"relationField\":\"name\",\"__config__\":{\"formId\":116,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货仓库\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334662759,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"warehouseId\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"522701377537837317\",\"interfaceName\":\"根据业务线查询仓库\",\"id\":\"warehouseId\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"clearable\":true,\"pageSize\":20,\"columnOptions\":[{\"label\":\"地址详情\",\"value\":\"addressDetail\"}],\"fullName\":\"发货地址\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessOrganizeId\",\"defaultValue\":\"\",\"jnpfKey\":\"popupSelect\",\"dataType\":\"varchar\",\"parameter\":\"businessOrganizeId\",\"id\":\"AyAmdw1\",\"required\":0,\"relationField\":\"warehouseId\"}],\"relationField\":\"addressDetail\",\"__config__\":{\"formId\":117,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货地址\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335307693,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"popupTitle\":\"选择数据\",\"__vModel__\":\"deliveryAddress\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"interfaceHasPage\":false,\"placeholder\":\"请选择\",\"interfaceId\":\"522724961224231173\",\"interfaceName\":\"根据仓库查询地址\",\"id\":\"deliveryAddress\",\"popupWidth\":\"800px\",\"propsValue\":\"id\"},{\"fullName\":\"备注\",\"type\":\"textarea\",\"autoSize\":{\"minRows\":4,\"maxRows\":4},\"__config__\":{\"formId\":119,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"textarea\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335563897,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-textarea\",\"tag\":\"JnpfTextarea\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":true,\"__vModel__\":\"remark\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"remark\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-商品名称\",\"addonAfter\":\"\",\"__config__\":{\"formId\":124,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"商品名称\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335883313,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"productName\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-productName\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-规格\",\"addonAfter\":\"\",\"__config__\":{\"formId\":125,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"规格\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335929153,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"spec\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-spec\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-库存单位\",\"addonAfter\":\"\",\"__config__\":{\"formId\":126,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"库存单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943057,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"inventoryUnitId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-inventoryUnitId\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-销售单位\",\"addonAfter\":\"\",\"__config__\":{\"formId\":127,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943539,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"purchaseUnitId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-purchaseUnitId\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-销售数量\",\"addonAfter\":\"\",\"__config__\":{\"formId\":128,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336024417,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"purchaseNum\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-purchaseNum\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-出库货区\",\"addonAfter\":\"\",\"__config__\":{\"formId\":129,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库货区\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336043733,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"storageAreaId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-storageAreaId\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-出库单位\",\"addonAfter\":\"\",\"__config__\":{\"formId\":130,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336044197,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"warehousingUnitId\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-warehousingUnitId\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-包装条码\",\"addonAfter\":\"\",\"__config__\":{\"formId\":133,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"包装条码\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336333554,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"barCode\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-barCode\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-通知出库数量\",\"addonAfter\":\"\",\"__config__\":{\"formId\":131,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"通知出库数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336087073,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"notificationStorageNumber\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-notificationStorageNumber\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-体积\",\"addonAfter\":\"\",\"__config__\":{\"formId\":132,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"体积\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336121504,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"volume\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-volume\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-批次号\",\"addonAfter\":\"\",\"__config__\":{\"formId\":134,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"批次号\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336348139,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"batchNo\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-batchNo\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"format\":\"yyyy-MM-dd\",\"fullName\":\"-生产日期\",\"type\":\"date\",\"__config__\":{\"relationTable\":\"jg_warehousing_product\",\"endRelationField\":\"\",\"parentVModel\":\"tableField121\",\"dragDisabled\":false,\"className\":[],\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336353954,\"tagIcon\":\"icon-ym icon-ym-generator-date\",\"startRelationField\":\"\",\"defaultCurrent\":false,\"isSubTable\":true,\"tag\":\"JnpfDatePicker\",\"formId\":135,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"datePicker\",\"noShow\":false,\"endTimeTarget\":1,\"tipLabel\":\"\",\"startTimeType\":1,\"endTimeRule\":false,\"label\":\"生产日期\",\"startTimeRule\":false,\"startTimeValue\":\"\",\"trigger\":\"change\",\"endTimeValue\":\"\",\"endTimeType\":1,\"layout\":\"colFormItem\",\"startTimeTarget\":1,\"regList\":[],\"span\":24},\"readonly\":false,\"__vModel__\":\"produceDate\",\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请选择\",\"id\":\"tableField121-produceDate\"},{\"clearable\":true,\"suffixIcon\":\"\",\"fullName\":\"-备注\",\"addonAfter\":\"\",\"__config__\":{\"formId\":136,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336369605,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"showWordLimit\":false,\"__vModel__\":\"remark\",\"showPassword\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-remark\",\"prefixIcon\":\"\",\"addonBefore\":\"\"}],\"pageSize\":20,\"sort\":\"desc\",\"thousands\":false,\"columnBtnsList\":[{\"icon\":\"icon-ym icon-ym-btn-edit\",\"label\":\"编辑\",\"value\":\"edit\"},{\"icon\":\"icon-ym icon-ym-btn-clearn\",\"label\":\"删除\",\"value\":\"remove\"},{\"icon\":\"icon-ym icon-ym-generator-menu\",\"label\":\"详情\",\"value\":\"detail\"}],\"loading\":false,\"hasSuperQuery\":false,\"thousandsField\":[],\"defaultColumnList\":[{\"border\":false,\"jnpfKey\":\"radio\",\"fullName\":\"\",\"label\":\"\",\"sortable\":false,\"align\":\"left\",\"props\":{\"label\":\"fullName\",\"value\":\"id\"},\"optionType\":\"button\",\"__config__\":{\"formId\":102,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"radio\",\"defaultValue\":\"8\",\"noShow\":false,\"dataType\":\"static\",\"dictionaryType\":\"\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"\",\"trigger\":\"change\",\"propsUrl\":\"\",\"templateJson\":[],\"showLabel\":false,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332266321,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-radio\",\"propsName\":\"\",\"tag\":\"JnpfRadio\",\"regList\":[],\"span\":24},\"size\":\"small\",\"prop\":\"warehousingType\",\"options\":[{\"fullName\":\"销售出库\",\"id\":\"8\"}],\"__vModel__\":\"warehousingType\",\"checked\":false,\"style\":{},\"disabled\":false,\"interfaceHasPage\":false,\"id\":\"warehousingType\",\"direction\":\"horizontal\"},{\"jnpfKey\":\"billRule\",\"fullName\":\"通知编号\",\"label\":\"通知编号\",\"sortable\":false,\"align\":\"left\",\"__config__\":{\"formId\":104,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"billRule\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"rule\":\"cktz\",\"className\":[],\"label\":\"通知编号\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332437986,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-documents\",\"ruleName\":\"出库通知\",\"tag\":\"JnpfInput\",\"span\":8},\"readonly\":true,\"prop\":\"warehousingCode\",\"__vModel__\":\"warehousingCode\",\"checked\":false,\"style\":{\"width\":\"100%\"},\"placeholder\":\"系统自动生成\",\"id\":\"warehousingCode\"},{\"jnpfKey\":\"createTime\",\"fullName\":\"制单时间\",\"label\":\"制单时间\",\"sortable\":false,\"align\":\"left\",\"type\":\"currTime\",\"__config__\":{\"formId\":106,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"createTime\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"制单时间\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332622689,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-createtime\",\"tag\":\"JnpfOpenData\",\"span\":8},\"readonly\":true,\"prop\":\"preparationTime\",\"__vModel__\":\"preparationTime\",\"checked\":false,\"style\":{\"width\":\"100%\"},\"placeholder\":\"\",\"id\":\"preparationTime\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"订单编号\",\"value\":\"code\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":109,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售订单\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708332717520,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"businessId\",\"__vModel__\":\"businessId\",\"checked\":false,\"disabled\":false,\"placeholder\":\"请选择\",\"interfaceName\":\"关联销售订单\",\"id\":\"businessId\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"销售订单\",\"label\":\"销售订单\",\"sortable\":false,\"relationField\":\"code\",\"popupTitle\":\"选择数据\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"529307088124379205\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":112,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"客户名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708333879117,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"subjectBasicId\",\"__vModel__\":\"subjectBasicId\",\"checked\":false,\"disabled\":true,\"placeholder\":\"请选择\",\"interfaceName\":\"查询一级客户\",\"id\":\"subjectBasicId\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"客户名称\",\"label\":\"客户名称\",\"sortable\":false,\"relationField\":\"name\",\"popupTitle\":\"选择数据\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522693551289534725\",\"propsValue\":\"id\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"收货地址\",\"label\":\"收货地址\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":113,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"收货地址\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334380601,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":8},\"readonly\":false,\"prop\":\"shippingAddress\",\"showWordLimit\":false,\"__vModel__\":\"shippingAddress\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"shippingAddress\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"机构名称\",\"value\":\"f_full_name\"}],\"align\":\"left\",\"templateJson\":[],\"__config__\":{\"formId\":115,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"机构名称\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334496015,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"enterpriseId\",\"__vModel__\":\"enterpriseId\",\"checked\":false,\"disabled\":true,\"placeholder\":\"请选择\",\"interfaceName\":\"查询机构列表\",\"id\":\"enterpriseId\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"机构名称\",\"label\":\"机构名称\",\"sortable\":false,\"relationField\":\"f_full_name\",\"popupTitle\":\"选择数据\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522729853024209157\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"名称\",\"value\":\"name\"}],\"align\":\"left\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessLineId\",\"defaultValue\":\"\",\"dataType\":\"varchar\",\"parameter\":\"businessLineId\",\"id\":\"PneOdw1\",\"required\":0}],\"__config__\":{\"formId\":116,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货仓库\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708334662759,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"warehouseId\",\"__vModel__\":\"warehouseId\",\"checked\":false,\"disabled\":false,\"placeholder\":\"请选择\",\"interfaceName\":\"根据业务线查询仓库\",\"id\":\"warehouseId\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"发货仓库\",\"label\":\"发货仓库\",\"sortable\":false,\"relationField\":\"name\",\"popupTitle\":\"选择数据\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522701377537837317\",\"propsValue\":\"id\"},{\"popupType\":\"dialog\",\"hasPage\":false,\"pageSize\":20,\"columnOptions\":[{\"label\":\"地址详情\",\"value\":\"addressDetail\"}],\"align\":\"left\",\"templateJson\":[{\"fieldName\":\"\",\"field\":\"businessOrganizeId\",\"defaultValue\":\"\",\"jnpfKey\":\"popupSelect\",\"dataType\":\"varchar\",\"parameter\":\"businessOrganizeId\",\"id\":\"AyAmdw1\",\"required\":0,\"relationField\":\"warehouseId\"}],\"__config__\":{\"formId\":117,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"popupSelect\",\"defaultValue\":\"\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"发货地址\",\"trigger\":\"change\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335307693,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-popup\",\"tag\":\"JnpfPopupSelect\",\"regList\":[],\"span\":8},\"prop\":\"deliveryAddress\",\"__vModel__\":\"deliveryAddress\",\"checked\":false,\"disabled\":false,\"placeholder\":\"请选择\",\"interfaceName\":\"根据仓库查询地址\",\"id\":\"deliveryAddress\",\"popupWidth\":\"800px\",\"clearable\":true,\"jnpfKey\":\"popupSelect\",\"fullName\":\"发货地址\",\"label\":\"发货地址\",\"sortable\":false,\"relationField\":\"addressDetail\",\"popupTitle\":\"选择数据\",\"style\":{\"width\":\"100%\"},\"interfaceHasPage\":false,\"interfaceId\":\"522724961224231173\",\"propsValue\":\"id\"},{\"jnpfKey\":\"textarea\",\"fullName\":\"备注\",\"label\":\"备注\",\"sortable\":false,\"align\":\"left\",\"type\":\"textarea\",\"autoSize\":{\"minRows\":4,\"maxRows\":4},\"__config__\":{\"formId\":119,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"textarea\",\"noShow\":false,\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335563897,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-textarea\",\"tag\":\"JnpfTextarea\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"remark\",\"showWordLimit\":true,\"__vModel__\":\"remark\",\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"remark\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-商品名称\",\"label\":\"-商品名称\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":124,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"商品名称\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335883313,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-productName\",\"showWordLimit\":false,\"__vModel__\":\"productName\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-productName\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-规格\",\"label\":\"-规格\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":125,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"规格\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335929153,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-spec\",\"showWordLimit\":false,\"__vModel__\":\"spec\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-spec\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-库存单位\",\"label\":\"-库存单位\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":126,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"库存单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943057,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-inventoryUnitId\",\"showWordLimit\":false,\"__vModel__\":\"inventoryUnitId\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-inventoryUnitId\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-销售单位\",\"label\":\"-销售单位\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":127,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708335943539,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-purchaseUnitId\",\"showWordLimit\":false,\"__vModel__\":\"purchaseUnitId\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-purchaseUnitId\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-销售数量\",\"label\":\"-销售数量\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":128,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"销售数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336024417,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-purchaseNum\",\"showWordLimit\":false,\"__vModel__\":\"purchaseNum\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-purchaseNum\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-出库货区\",\"label\":\"-出库货区\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":129,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库货区\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336043733,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-storageAreaId\",\"showWordLimit\":false,\"__vModel__\":\"storageAreaId\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-storageAreaId\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-出库单位\",\"label\":\"-出库单位\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":130,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"出库单位\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336044197,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-warehousingUnitId\",\"showWordLimit\":false,\"__vModel__\":\"warehousingUnitId\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-warehousingUnitId\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-包装条码\",\"label\":\"-包装条码\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":133,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"包装条码\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336333554,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-barCode\",\"showWordLimit\":false,\"__vModel__\":\"barCode\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-barCode\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-通知出库数量\",\"label\":\"-通知出库数量\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":131,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"通知出库数量\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336087073,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-notificationStorageNumber\",\"showWordLimit\":false,\"__vModel__\":\"notificationStorageNumber\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-notificationStorageNumber\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-体积\",\"label\":\"-体积\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":132,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"体积\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336121504,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-volume\",\"showWordLimit\":false,\"__vModel__\":\"volume\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-volume\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-批次号\",\"label\":\"-批次号\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":134,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"批次号\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336348139,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-batchNo\",\"showWordLimit\":false,\"__vModel__\":\"batchNo\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-batchNo\",\"prefixIcon\":\"\",\"addonBefore\":\"\"},{\"clearable\":true,\"jnpfKey\":\"datePicker\",\"format\":\"yyyy-MM-dd\",\"fullName\":\"-生产日期\",\"label\":\"-生产日期\",\"sortable\":false,\"align\":\"left\",\"type\":\"date\",\"__config__\":{\"relationTable\":\"jg_warehousing_product\",\"endRelationField\":\"\",\"parentVModel\":\"tableField121\",\"dragDisabled\":false,\"className\":[],\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336353954,\"tagIcon\":\"icon-ym icon-ym-generator-date\",\"startRelationField\":\"\",\"defaultCurrent\":false,\"isSubTable\":true,\"tag\":\"JnpfDatePicker\",\"formId\":135,\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"datePicker\",\"noShow\":false,\"endTimeTarget\":1,\"tipLabel\":\"\",\"startTimeType\":1,\"endTimeRule\":false,\"label\":\"生产日期\",\"startTimeRule\":false,\"startTimeValue\":\"\",\"trigger\":\"change\",\"endTimeValue\":\"\",\"endTimeType\":1,\"layout\":\"colFormItem\",\"startTimeTarget\":1,\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-produceDate\",\"__vModel__\":\"produceDate\",\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请选择\",\"id\":\"tableField121-produceDate\"},{\"clearable\":true,\"jnpfKey\":\"input\",\"suffixIcon\":\"\",\"fullName\":\"-备注\",\"label\":\"-备注\",\"sortable\":false,\"align\":\"left\",\"addonAfter\":\"\",\"__config__\":{\"formId\":136,\"relationTable\":\"jg_warehousing_product\",\"visibility\":[\"pc\",\"app\"],\"jnpfKey\":\"input\",\"noShow\":false,\"parentVModel\":\"tableField121\",\"tipLabel\":\"\",\"dragDisabled\":false,\"className\":[],\"label\":\"备注\",\"trigger\":\"blur\",\"showLabel\":true,\"required\":false,\"tableName\":\"jg_warehousing_notification\",\"renderKey\":1708336369605,\"layout\":\"colFormItem\",\"tagIcon\":\"icon-ym icon-ym-generator-input\",\"unique\":false,\"isSubTable\":true,\"tag\":\"JnpfInput\",\"regList\":[],\"span\":24},\"readonly\":false,\"prop\":\"tableField121-remark\",\"showWordLimit\":false,\"__vModel__\":\"remark\",\"showPassword\":false,\"checked\":false,\"style\":{\"width\":\"100%\"},\"disabled\":false,\"placeholder\":\"请输入\",\"id\":\"tableField121-remark\",\"prefixIcon\":\"\",\"addonBefore\":\"\"}],\"sortList\":[],\"useFormPermission\":false,\"customBtnsList\":[],\"useBtnPermission\":false,\"defaultSidx\":\"\"}"); return sb.toString(); + } + /** 表列表 */ + public static final String getTableList(){ + StringBuilder sb = new StringBuilder(); +sb.append("[{\"relationField\":\"\",\"relationTable\":\"\",\"table\":\"jg_warehousing_notification\",\"tableName\":\"入库通知表\",\"tableField\":\"\",\"typeId\":\"1\",\"fields\":[{\"columnName\":\"id\",\"field\":\"id\",\"fieldName\":\"自然主键\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":1,\"allowNull\":0,\"autoIncrement\":0},{\"columnName\":\"warehousing_type\",\"field\":\"warehousingType\",\"fieldName\":\"业务类型(1:采购入库 2:退货入库 3:调拨入库 4:成品入库 5:盘盈入库 6:其他入库7:退货出库 8:销售出库 9:调拨出库 10:领料出库 11:盘盈出库 12:其他出库)\",\"dataType\":\"varchar\",\"dataLength\":\"20\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"warehousing_status\",\"field\":\"warehousingStatus\",\"fieldName\":\"单据状态(1:待入库 2:入库待确认 3:部分入库 4:已入库 5:已关闭)\",\"dataType\":\"char\",\"dataLength\":\"1\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"warehousing_code\",\"field\":\"warehousingCode\",\"fieldName\":\"通知编号\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"order_source\",\"field\":\"orderSource\",\"fieldName\":\"订单来源\",\"dataType\":\"char\",\"dataLength\":\"1\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"business_id\",\"field\":\"businessId\",\"fieldName\":\"业务id(采购单,调拨单等)\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"planned_warehousing_time_start\",\"field\":\"plannedWarehousingTimeStart\",\"fieldName\":\"计划入库时间开始\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"planned_warehousing_time_end\",\"field\":\"plannedWarehousingTimeEnd\",\"fieldName\":\"计划入库时间结束\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"subject_basic_id\",\"field\":\"subjectBasicId\",\"fieldName\":\"供应商id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"shipping_address\",\"field\":\"shippingAddress\",\"fieldName\":\"发货地址\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"enterprise_id\",\"field\":\"enterpriseId\",\"fieldName\":\"机构名称\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"delivery_address\",\"field\":\"deliveryAddress\",\"fieldName\":\"收货地址\",\"dataType\":\"varchar\",\"dataLength\":\"64\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"warehouse_id\",\"field\":\"warehouseId\",\"fieldName\":\"仓库id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"plan_warehousing_num\",\"field\":\"planWarehousingNum\",\"fieldName\":\"计划入库数量\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"confirm_warehousing_num\",\"field\":\"confirmWarehousingNum\",\"fieldName\":\"已确认入库数量\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"wait_warehousing_num\",\"field\":\"waitWarehousingNum\",\"fieldName\":\"待入库数量\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"remark\",\"field\":\"remark\",\"fieldName\":\"备注\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"reserved_fields1\",\"field\":\"reservedFields1\",\"fieldName\":\"预留字段1\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"reserved_fields2\",\"field\":\"reservedFields2\",\"fieldName\":\"预留字段2\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"reserved_fields3\",\"field\":\"reservedFields3\",\"fieldName\":\"预留字段3\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"reserved_fields4\",\"field\":\"reservedFields4\",\"fieldName\":\"预留字段4\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"remark2\",\"field\":\"remark2\",\"fieldName\":\"备注2\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"remark3\",\"field\":\"remark3\",\"fieldName\":\"备注3\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_creator_time\",\"field\":\"creatorTime\",\"fieldName\":\"创建时间\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_creator_user_id\",\"field\":\"creatorUserId\",\"fieldName\":\"创建用户\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_last_modify_time\",\"field\":\"lastModifyTime\",\"fieldName\":\"修改时间\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_last_modify_user_id\",\"field\":\"lastModifyUserId\",\"fieldName\":\"修改用户\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_delete_time\",\"field\":\"deleteTime\",\"fieldName\":\"删除时间\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_delete_user_id\",\"field\":\"deleteUserId\",\"fieldName\":\"删除用户\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_delete_mark\",\"field\":\"deleteMark\",\"fieldName\":\"删除标志\",\"dataType\":\"int\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_tenant_id\",\"field\":\"tenantId\",\"fieldName\":\"租户id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_flow_id\",\"field\":\"flowId\",\"fieldName\":\"流程id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"company_id\",\"field\":\"companyId\",\"fieldName\":\"公司id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"department_id\",\"field\":\"departmentId\",\"fieldName\":\"部门id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_flow_task_id\",\"field\":\"flowTaskId\",\"fieldName\":\"流程任务主键\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_version\",\"field\":\"version\",\"fieldName\":\"乐观锁\",\"dataType\":\"int\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"preparation_time\",\"field\":\"preparationTime\",\"fieldName\":\"制单时间\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0}]},{\"relationField\":\"id\",\"relationTable\":\"jg_warehousing_notification\",\"table\":\"jg_warehousing_product\",\"tableName\":\"入库通知商品信息\",\"tableField\":\"warehousingId\",\"typeId\":\"0\",\"fields\":[{\"columnName\":\"id\",\"field\":\"id\",\"fieldName\":\"自然主键\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":1,\"allowNull\":0,\"autoIncrement\":0},{\"columnName\":\"warehousing_id\",\"field\":\"warehousingId\",\"fieldName\":\"入库通知id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"product_id\",\"field\":\"productId\",\"fieldName\":\"商品id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"product_name\",\"field\":\"productName\",\"fieldName\":\"商品名称\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"spec\",\"field\":\"spec\",\"fieldName\":\"商品规格\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"inventory_unit_id\",\"field\":\"inventoryUnitId\",\"fieldName\":\"库存单位\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"purchase_unit_id\",\"field\":\"purchaseUnitId\",\"fieldName\":\"采购单位\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"purchase_num\",\"field\":\"purchaseNum\",\"fieldName\":\"采购数量\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"storage_area_id\",\"field\":\"storageAreaId\",\"fieldName\":\"入库货区id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"warehousing_unit_id\",\"field\":\"warehousingUnitId\",\"fieldName\":\"入库单位\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"received_quantity\",\"field\":\"receivedQuantity\",\"fieldName\":\"已入库数量\",\"dataType\":\"decimal\",\"dataLength\":\"21,6\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"remaining_stockable_quantity\",\"field\":\"remainingStockableQuantity\",\"fieldName\":\"剩余可入库数量\",\"dataType\":\"decimal\",\"dataLength\":\"32,6\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"notification_storage_number\",\"field\":\"notificationStorageNumber\",\"fieldName\":\"通知入库数量\",\"dataType\":\"decimal\",\"dataLength\":\"32,6\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"volume\",\"field\":\"volume\",\"fieldName\":\"体积\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"remark\",\"field\":\"remark\",\"fieldName\":\"备注\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"voucher_id\",\"field\":\"voucherId\",\"fieldName\":\"关联凭证id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"purchase_order_id\",\"field\":\"purchaseOrderId\",\"fieldName\":\"采购id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_creator_time\",\"field\":\"creatorTime\",\"fieldName\":\"创建时间\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_creator_user_id\",\"field\":\"creatorUserId\",\"fieldName\":\"创建用户\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_last_modify_time\",\"field\":\"lastModifyTime\",\"fieldName\":\"修改时间\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_last_modify_user_id\",\"field\":\"lastModifyUserId\",\"fieldName\":\"修改用户\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_delete_time\",\"field\":\"deleteTime\",\"fieldName\":\"删除时间\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_delete_user_id\",\"field\":\"deleteUserId\",\"fieldName\":\"删除用户\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_delete_mark\",\"field\":\"deleteMark\",\"fieldName\":\"删除标志\",\"dataType\":\"int\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"f_tenant_id\",\"field\":\"tenantId\",\"fieldName\":\"租户id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"company_id\",\"field\":\"companyId\",\"fieldName\":\"公司id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"department_id\",\"field\":\"departmentId\",\"fieldName\":\"部门id\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"bar_code\",\"field\":\"barCode\",\"fieldName\":\"包装条码\",\"dataType\":\"varchar\",\"dataLength\":\"50\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"batch_no\",\"field\":\"batchNo\",\"fieldName\":\"批次号\",\"dataType\":\"varchar\",\"dataLength\":\"255\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0},{\"columnName\":\"produce_date\",\"field\":\"produceDate\",\"fieldName\":\"生产日期\",\"dataType\":\"datetime\",\"dataLength\":\"默认\",\"primaryKey\":0,\"allowNull\":1,\"autoIncrement\":0}]}]"); return sb.toString(); + } +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingNotificationForm.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingNotificationForm.java new file mode 100644 index 00000000..53e3df00 --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingNotificationForm.java @@ -0,0 +1,59 @@ +package jnpf.model.warehousingnotification; + +import lombok.Data; +import java.util.List; +import java.math.BigDecimal; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * warehousingNotification + * @版本: V3.5 + * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * @作者: JNPF开发平台组 + * @日期: 2024-02-19 + */ +@Data +public class WarehousingNotificationForm { + /** 主键 */ + private String id; + /** 子表数据 **/ + @JsonProperty("warehousingProductList") + private List warehousingProductList; + /** 乐观锁 **/ + @JsonProperty("version") + private Integer version; + /** 流程id **/ + @JsonProperty("flowId") + private String flowId; + + /** **/ + @JsonProperty("warehousingType") + private String warehousingType; + /** 通知编号 **/ + @JsonProperty("warehousingCode") + private String warehousingCode; + /** 制单时间 **/ + @JsonProperty("preparationTime") + private String preparationTime; + /** 销售订单 **/ + @JsonProperty("businessId") + private String businessId; + /** 客户名称 **/ + @JsonProperty("subjectBasicId") + private String subjectBasicId; + /** 收货地址 **/ + @JsonProperty("shippingAddress") + private String shippingAddress; + /** 机构名称 **/ + @JsonProperty("enterpriseId") + private String enterpriseId; + /** 发货仓库 **/ + @JsonProperty("warehouseId") + private String warehouseId; + /** 发货地址 **/ + @JsonProperty("deliveryAddress") + private String deliveryAddress; + /** 备注 **/ + @JsonProperty("remark") + private String remark; +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingNotificationPagination.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingNotificationPagination.java new file mode 100644 index 00000000..ea0b2815 --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingNotificationPagination.java @@ -0,0 +1,33 @@ +package jnpf.model.warehousingnotification; + +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.Data; +import jnpf.base.Pagination; +import java.util.List; + +/** + * + * warehousingNotification + * @版本: V3.5 + * @版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * @作者: JNPF开发平台组 + * @日期: 2024-02-19 + */ +@Data +public class WarehousingNotificationPagination extends Pagination { + /** 查询key */ + private String[] selectKey; + /** json */ + private String json; + /** 数据类型 0-当前页,1-全部数据 */ + private String dataType; + /** 高级查询 */ + private String superQueryJson; + /** 功能id */ + private String moduleId; + /** 菜单id */ + private String menuId; + /** 通知编号 */ + @JsonProperty("warehousingCode") + private Object warehousingCode; +} diff --git a/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingProductModel.java b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingProductModel.java new file mode 100644 index 00000000..f26b3175 --- /dev/null +++ b/jnpf-java-boot/jnpf-scm/jnpf-scm-entity/src/main/java/jnpf/model/warehousingnotification/WarehousingProductModel.java @@ -0,0 +1,61 @@ +package jnpf.model.warehousingnotification; + +import lombok.Data; +import java.util.List; +import java.util.Date; +import java.math.BigDecimal; +import com.alibaba.fastjson.annotation.JSONField; +import cn.afterturn.easypoi.excel.annotation.Excel; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * + * warehousingNotification + * 版本: V3.5 + * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com) + * 作者: JNPF开发平台组 + * 日期: 2024-02-19 + */ +@Data +public class WarehousingProductModel { + /** 商品名称 **/ + @JSONField(name = "productName") + private String productName; + /** 规格 **/ + @JSONField(name = "spec") + private String spec; + /** 库存单位 **/ + @JSONField(name = "inventoryUnitId") + private String inventoryUnitId; + /** 销售单位 **/ + @JSONField(name = "purchaseUnitId") + private String purchaseUnitId; + /** 销售数量 **/ + @JSONField(name = "purchaseNum") + private String purchaseNum; + /** 出库货区 **/ + @JSONField(name = "storageAreaId") + private String storageAreaId; + /** 出库单位 **/ + @JSONField(name = "warehousingUnitId") + private String warehousingUnitId; + /** 包装条码 **/ + @JSONField(name = "barCode") + private String barCode; + /** 通知出库数量 **/ + @JSONField(name = "notificationStorageNumber") + private String notificationStorageNumber; + /** 体积 **/ + @JSONField(name = "volume") + private String volume; + /** 批次号 **/ + @JSONField(name = "batchNo") + private String batchNo; + /** 生产日期 **/ + @JSONField(name = "produceDate") + private Long produceDate; + + /** 备注 **/ + @JSONField(name = "remark") + private String remark; +} diff --git a/jnpf-java-boot/jnpf-web/src/views/scm/saleCenter/redeliveryOrder/index.vue b/jnpf-java-boot/jnpf-web/src/views/scm/saleCenter/redeliveryOrder/index.vue index e63e53a8..f5186ff9 100644 --- a/jnpf-java-boot/jnpf-web/src/views/scm/saleCenter/redeliveryOrder/index.vue +++ b/jnpf-java-boot/jnpf-web/src/views/scm/saleCenter/redeliveryOrder/index.vue @@ -1,10 +1,3 @@ - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -202,14 +200,13 @@ - + :style='{"width":"100%"}' @change="getCustomName"> @@ -498,17 +495,17 @@ - + -
添加 -
+ --> @@ -545,8 +542,7 @@ v-if="judgeRequired('businessorderproductrelationalList-productId')">*商品名称
- - - -