Commit 253a4e1f by 宋祥

1.存货类型页面完善

2.存货档案页面完善
parent bc0022e9
...@@ -28,6 +28,8 @@ public class HPConstant { ...@@ -28,6 +28,8 @@ public class HPConstant {
public static final String HPPZ002_CUST_CODE = "HPPZ002_CUST_CODE"; public static final String HPPZ002_CUST_CODE = "HPPZ002_CUST_CODE";
// 客户编码 // 客户编码
public static final String HPPZ003_CUST_CODE = "HPPZ003_CUST_CODE"; public static final String HPPZ003_CUST_CODE = "HPPZ003_CUST_CODE";
// 存货编码
public static final String INVENT_CODE = "INVENT_CODE";
} }
/** /**
......
package com.baosight.hpjx.hp.kc.service; package com.baosight.hpjx.hp.kc.service;
import com.baosight.hpjx.common.DdynamicEnum; import com.baosight.hpjx.common.DdynamicEnum;
import com.baosight.hpjx.common.HPConstants;
import com.baosight.hpjx.common.InventTypeEnun; import com.baosight.hpjx.common.InventTypeEnun;
import com.baosight.hpjx.hp.kc.domain.HPKC001; import com.baosight.hpjx.hp.kc.domain.HPKC001;
import com.baosight.hpjx.hp.kc.domain.HPKC001;
import com.baosight.hpjx.hp.pz.domain.HPPZ007;
import com.baosight.hpjx.hp.pz.domain.THppz004;
import com.baosight.hpjx.util.CommonMethod; import com.baosight.hpjx.util.CommonMethod;
import com.baosight.hpjx.util.StringUtil; import com.baosight.hpjx.util.StringUtil;
import com.baosight.hpjx.util.contants.ACConstants; import com.baosight.hpjx.util.contants.ACConstants;
...@@ -18,7 +14,6 @@ import com.baosight.iplat4j.core.service.impl.ServiceBase; ...@@ -18,7 +14,6 @@ import com.baosight.iplat4j.core.service.impl.ServiceBase;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import java.util.*; import java.util.*;
import java.util.stream.Collectors;
/** /**
* @author YK * @author YK
......
package com.baosight.hpjx.hp.kc.service; package com.baosight.hpjx.hp.kc.service;
import com.baosight.hpjx.common.DdynamicEnum; import com.baosight.hpjx.common.DdynamicEnum;
import com.baosight.hpjx.core.constant.CommonConstant;
import com.baosight.hpjx.core.dao.DaoUtils; import com.baosight.hpjx.core.dao.DaoUtils;
import com.baosight.hpjx.hp.constant.HPConstant; import com.baosight.hpjx.hp.constant.HPConstant;
import com.baosight.hpjx.hp.kc.domain.HPKC003; import com.baosight.hpjx.hp.kc.domain.HPKC003;
import com.baosight.hpjx.hp.kc.domain.HPKC009;
import com.baosight.hpjx.hp.pz.domain.HPPZ007;
import com.baosight.hpjx.hp.pz.domain.HPPZ009; import com.baosight.hpjx.hp.pz.domain.HPPZ009;
import com.baosight.hpjx.hp.pz.domain.THppz004;
import com.baosight.hpjx.hp.pz.tools.HPPZTools; import com.baosight.hpjx.hp.pz.tools.HPPZTools;
import com.baosight.hpjx.util.CommonMethod; import com.baosight.hpjx.util.CommonMethod;
import com.baosight.hpjx.util.EiInfoUtils; import com.baosight.hpjx.util.EiInfoUtils;
...@@ -17,14 +13,12 @@ import com.baosight.hpjx.util.StringUtil; ...@@ -17,14 +13,12 @@ import com.baosight.hpjx.util.StringUtil;
import com.baosight.iplat4j.core.ei.EiBlock; import com.baosight.iplat4j.core.ei.EiBlock;
import com.baosight.iplat4j.core.ei.EiConstant; import com.baosight.iplat4j.core.ei.EiConstant;
import com.baosight.iplat4j.core.ei.EiInfo; import com.baosight.iplat4j.core.ei.EiInfo;
import com.baosight.iplat4j.core.exception.PlatException;
import com.baosight.iplat4j.core.service.impl.ServiceBase; import com.baosight.iplat4j.core.service.impl.ServiceBase;
import com.baosight.iplat4j.ed.util.SequenceGenerator; import com.baosight.iplat4j.ed.util.SequenceGenerator;
import org.apache.commons.collections.MapUtils; import org.apache.commons.collections.MapUtils;
import java.util.Arrays; import java.util.Arrays;
import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
...@@ -88,9 +82,9 @@ public class ServiceHPKC003 extends ServiceBase { ...@@ -88,9 +82,9 @@ public class ServiceHPKC003 extends ServiceBase {
fKc003.fromMap(resultRows.get(i)); fKc003.fromMap(resultRows.get(i));
fKc003.setDocumentDate(StringUtil.removeHorizontalLine(fKc003.getDocumentDate())); fKc003.setDocumentDate(StringUtil.removeHorizontalLine(fKc003.getDocumentDate()));
// 仓库名称 // 仓库名称
fKc003.setWhName(HPPZTools.getWhNameByCode(fKc003.getWhCode())); fKc003.setWhName(HPPZTools.getPz007ByCode(fKc003.getWhCode()).getWhName());
// 物料名称 // 物料名称
fKc003.setInventName(HPPZTools.getInventNameByCode(fKc003.getInventCode())); fKc003.setInventName(HPPZTools.getPz004ByCode(fKc003.getInventCode()).getInventName());
// 生成入库单号 // 生成入库单号
fKc003.setProdNo(SequenceGenerator.getNextSequence(HPConstant.SequenceId.HPKC003_PROD_NO)); fKc003.setProdNo(SequenceGenerator.getNextSequence(HPConstant.SequenceId.HPKC003_PROD_NO));
DaoUtils.insert("HPKC003.insert", fKc003); DaoUtils.insert("HPKC003.insert", fKc003);
...@@ -119,9 +113,9 @@ public class ServiceHPKC003 extends ServiceBase { ...@@ -119,9 +113,9 @@ public class ServiceHPKC003 extends ServiceBase {
fKc003.fromMap(resultRows.get(i)); fKc003.fromMap(resultRows.get(i));
fKc003.setDocumentDate(StringUtil.removeHorizontalLine(fKc003.getDocumentDate())); fKc003.setDocumentDate(StringUtil.removeHorizontalLine(fKc003.getDocumentDate()));
// 仓库名称 // 仓库名称
fKc003.setWhName(HPPZTools.getWhNameByCode(fKc003.getWhCode())); fKc003.setWhName(HPPZTools.getPz007ByCode(fKc003.getWhCode()).getWhName());
// 物料名称 // 物料名称
fKc003.setInventName(HPPZTools.getInventNameByCode(fKc003.getInventCode())); fKc003.setInventName(HPPZTools.getPz004ByCode(fKc003.getInventCode()).getInventName());
DaoUtils.update("HPKC003.update", fKc003); DaoUtils.update("HPKC003.update", fKc003);
} }
inInfo = this.query(inInfo); inInfo = this.query(inInfo);
......
...@@ -3,17 +3,12 @@ package com.baosight.hpjx.hp.kc.service; ...@@ -3,17 +3,12 @@ package com.baosight.hpjx.hp.kc.service;
import com.baosight.hpjx.common.DdynamicEnum; import com.baosight.hpjx.common.DdynamicEnum;
import com.baosight.hpjx.core.dao.DaoUtils; import com.baosight.hpjx.core.dao.DaoUtils;
import com.baosight.hpjx.hp.constant.HPConstant; import com.baosight.hpjx.hp.constant.HPConstant;
import com.baosight.hpjx.hp.kc.domain.HPKC003;
import com.baosight.hpjx.hp.kc.domain.HPKC004; import com.baosight.hpjx.hp.kc.domain.HPKC004;
import com.baosight.hpjx.hp.pz.domain.HPPZ007;
import com.baosight.hpjx.hp.pz.domain.HPPZ009;
import com.baosight.hpjx.hp.pz.domain.THppz004;
import com.baosight.hpjx.hp.pz.tools.HPPZTools; import com.baosight.hpjx.hp.pz.tools.HPPZTools;
import com.baosight.hpjx.util.CommonMethod; import com.baosight.hpjx.util.CommonMethod;
import com.baosight.hpjx.util.EiInfoUtils; import com.baosight.hpjx.util.EiInfoUtils;
import com.baosight.hpjx.util.LogUtils; import com.baosight.hpjx.util.LogUtils;
import com.baosight.hpjx.util.StringUtil; import com.baosight.hpjx.util.StringUtil;
import com.baosight.hpjx.util.contants.ACConstants;
import com.baosight.iplat4j.core.ei.EiBlock; import com.baosight.iplat4j.core.ei.EiBlock;
import com.baosight.iplat4j.core.ei.EiConstant; import com.baosight.iplat4j.core.ei.EiConstant;
import com.baosight.iplat4j.core.ei.EiInfo; import com.baosight.iplat4j.core.ei.EiInfo;
...@@ -24,7 +19,6 @@ import com.baosight.iplat4j.ed.util.SequenceGenerator; ...@@ -24,7 +19,6 @@ import com.baosight.iplat4j.ed.util.SequenceGenerator;
import org.apache.commons.collections.MapUtils; import org.apache.commons.collections.MapUtils;
import java.util.*; import java.util.*;
import java.util.stream.Collectors;
/** /**
* @author YK * @author YK
...@@ -86,9 +80,9 @@ public class ServiceHPKC004 extends ServiceBase { ...@@ -86,9 +80,9 @@ public class ServiceHPKC004 extends ServiceBase {
fKc004.fromMap(resultRows.get(i)); fKc004.fromMap(resultRows.get(i));
fKc004.setReceiptDate(StringUtil.removeHorizontalLine(fKc004.getReceiptDate())); fKc004.setReceiptDate(StringUtil.removeHorizontalLine(fKc004.getReceiptDate()));
// 仓库名称 // 仓库名称
fKc004.setWhName(HPPZTools.getWhNameByCode(fKc004.getWhCode())); fKc004.setWhName(HPPZTools.getPz007ByCode(fKc004.getWhCode()).getWhName());
// 物料名称 // 物料名称
fKc004.setInventName(HPPZTools.getInventNameByCode(fKc004.getInventCode())); fKc004.setInventName(HPPZTools.getPz004ByCode(fKc004.getInventCode()).getInventName());
// 生成销售单号 // 生成销售单号
fKc004.setSaleNo(SequenceGenerator.getNextSequence(HPConstant.SequenceId.HPKC004_SALE_NO)); fKc004.setSaleNo(SequenceGenerator.getNextSequence(HPConstant.SequenceId.HPKC004_SALE_NO));
DaoUtils.insert("HPKC004.insert", fKc004); DaoUtils.insert("HPKC004.insert", fKc004);
...@@ -117,9 +111,9 @@ public class ServiceHPKC004 extends ServiceBase { ...@@ -117,9 +111,9 @@ public class ServiceHPKC004 extends ServiceBase {
fKc004.fromMap(resultRows.get(i)); fKc004.fromMap(resultRows.get(i));
fKc004.setReceiptDate(StringUtil.removeHorizontalLine(fKc004.getReceiptDate())); fKc004.setReceiptDate(StringUtil.removeHorizontalLine(fKc004.getReceiptDate()));
// 仓库名称 // 仓库名称
fKc004.setWhName(HPPZTools.getWhNameByCode(fKc004.getWhCode())); fKc004.setWhName(HPPZTools.getPz007ByCode(fKc004.getWhCode()).getWhName());
// 物料名称 // 物料名称
fKc004.setInventName(HPPZTools.getInventNameByCode(fKc004.getInventCode())); fKc004.setInventName(HPPZTools.getPz004ByCode(fKc004.getInventCode()).getInventName());
DaoUtils.update("HPKC004.update", fKc004); DaoUtils.update("HPKC004.update", fKc004);
} }
inInfo = this.query(inInfo); inInfo = this.query(inInfo);
......
package com.baosight.hpjx.hp.kc.service; package com.baosight.hpjx.hp.kc.service;
import com.baosight.hpjx.common.DdynamicEnum; import com.baosight.hpjx.common.DdynamicEnum;
import com.baosight.hpjx.core.constant.CommonConstant;
import com.baosight.hpjx.core.dao.DaoUtils; import com.baosight.hpjx.core.dao.DaoUtils;
import com.baosight.hpjx.hp.constant.HPConstant; import com.baosight.hpjx.hp.constant.HPConstant;
import com.baosight.hpjx.hp.kc.domain.HPKC005; import com.baosight.hpjx.hp.kc.domain.HPKC005;
import com.baosight.hpjx.hp.pz.domain.HPPZ007; import com.baosight.hpjx.hp.pz.domain.HPPZ007;
import com.baosight.hpjx.hp.pz.domain.HPPZ009; import com.baosight.hpjx.hp.pz.domain.HPPZ004;
import com.baosight.hpjx.hp.pz.domain.THppz004; import com.baosight.hpjx.hp.pz.tools.HPPZTools;
import com.baosight.hpjx.util.AssertUtils; import com.baosight.hpjx.util.AssertUtils;
import com.baosight.hpjx.util.CommonMethod; import com.baosight.hpjx.util.CommonMethod;
import com.baosight.hpjx.util.EiInfoUtils; import com.baosight.hpjx.util.EiInfoUtils;
import com.baosight.hpjx.util.LogUtils; import com.baosight.hpjx.util.LogUtils;
import com.baosight.hpjx.util.StringUtil; import com.baosight.hpjx.util.StringUtil;
import com.baosight.hpjx.util.contants.ACConstants;
import com.baosight.iplat4j.core.ei.EiBlock; import com.baosight.iplat4j.core.ei.EiBlock;
import com.baosight.iplat4j.core.ei.EiConstant; import com.baosight.iplat4j.core.ei.EiConstant;
import com.baosight.iplat4j.core.ei.EiInfo; import com.baosight.iplat4j.core.ei.EiInfo;
...@@ -27,7 +25,6 @@ import java.util.Arrays; ...@@ -27,7 +25,6 @@ import java.util.Arrays;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors;
/** /**
* *
...@@ -90,15 +87,9 @@ public class ServiceHPKC005 extends ServiceBase { ...@@ -90,15 +87,9 @@ public class ServiceHPKC005 extends ServiceBase {
// 去除日期字符串中的- // 去除日期字符串中的-
fKc005.setReceiptDate(StringUtil.removeHorizontalLine(fKc005.getReceiptDate())); fKc005.setReceiptDate(StringUtil.removeHorizontalLine(fKc005.getReceiptDate()));
// 仓库名称 // 仓库名称
Map params = new HashMap<>(); fKc005.setWhName(HPPZTools.getPz007ByCode(fKc005.getWhCode()).getWhName());
params.put("whCode", fKc005.getWhCode());
List query = dao.query("HPPZ007.queryByWhCode", params);
fKc005.setWhName(((HPPZ007) query.get(0)).getWhName());
// 物料名称 // 物料名称
Map params1 = new HashMap<>(); fKc005.setInventName(HPPZTools.getPz004ByCode(fKc005.getInventCode()).getInventName());
params1.put("inventCode", fKc005.getInventCode());
List query1 = dao.query("HPPZ004.queryMatNameByCode", params1);
fKc005.setInventName(((THppz004) query1.get(0)).getInventName());
if (fKc005.getId() == null || fKc005.getId() == 0) { if (fKc005.getId() == null || fKc005.getId() == 0) {
this.add(fKc005); this.add(fKc005);
} else { } else {
...@@ -158,28 +149,18 @@ public class ServiceHPKC005 extends ServiceBase { ...@@ -158,28 +149,18 @@ public class ServiceHPKC005 extends ServiceBase {
CommonMethod.creatorInfo(inInfo, EiConstant.resultBlock); CommonMethod.creatorInfo(inInfo, EiConstant.resultBlock);
List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows(); List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
for (int i = 0; i < resultRows.size(); i++) { for (int i = 0; i < resultRows.size(); i++) {
Map resultRow = resultRows.get(i); HPKC005 fKc005 = new HPKC005();
fKc005.fromMap(resultRows.get(i));
// 去除日期字符串中的- // 去除日期字符串中的-
String receiptDate = MapUtils.getString(resultRow, "receiptDate"); fKc005.setReceiptDate(StringUtil.removeHorizontalLine(fKc005.getReceiptDate()));
resultRow.put("receiptDate", StringUtil.removeHorizontalLine(receiptDate));
String whCode = MapUtils.getString(resultRow, "whCode");
String inventCode = MapUtils.getString(resultRow, "inventCode");
// 仓库名称 // 仓库名称
Map params = new HashMap<>(); fKc005.setWhName(HPPZTools.getPz007ByCode(fKc005.getWhCode()).getWhName());
params.put("whCode", whCode);
List query = dao.query("HPPZ007.queryByWhCode", params);
String whName = ((HPPZ007) query.get(0)).getWhName();
resultRow.put("whName", whName);
// 物料名称 // 物料名称
Map params1 = new HashMap<>(); fKc005.setInventName(HPPZTools.getPz004ByCode(fKc005.getInventCode()).getInventName());
params1.put("inventCode", inventCode);
List query1 = dao.query("HPPZ004.queryMatNameByCode", params1);
String inventName = ((THppz004) query1.get(0)).getInventName();
resultRow.put("inventName", inventName);
// 生成单据号 // 生成单据号
resultRow.put("statisticalNumber", SequenceGenerator.getNextSequence( fKc005.setStatisticalNumber(SequenceGenerator.getNextSequence(
HPConstant.SequenceId.STATISTICAL_NUMBER)); HPConstant.SequenceId.STATISTICAL_NUMBER));
DaoUtils.insert("HPKC005.insert", resultRow); DaoUtils.insert("HPKC005.insert", fKc005);
} }
inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据新增成功!"); inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据新增成功!");
} catch (Exception e) { } catch (Exception e) {
...@@ -189,30 +170,22 @@ public class ServiceHPKC005 extends ServiceBase { ...@@ -189,30 +170,22 @@ public class ServiceHPKC005 extends ServiceBase {
} }
/** /**
* 修改操作. * 修改操作
*
* @param inInfo
* @return
*/ */
public EiInfo update(EiInfo inInfo) { public EiInfo update(EiInfo inInfo) {
try { try {
EiBlock eiBlock = inInfo.getBlock(EiConstant.resultBlock); EiBlock eiBlock = inInfo.getBlock(EiConstant.resultBlock);
List<String> list = new ArrayList<>();
for (int i = 0; i < eiBlock.getRowCount(); i++) { for (int i = 0; i < eiBlock.getRowCount(); i++) {
HPKC005 HPKC005 = new HPKC005(); HPKC005 fKc005 = new HPKC005();
HPKC005.fromMap(eiBlock.getRow(i)); fKc005.fromMap(eiBlock.getRow(i));
if (HPKC005.getStatus() == 1) { // 仓库名称
list.add(HPKC005.getStatisticalNumber()); fKc005.setWhName(HPPZTools.getPz007ByCode(fKc005.getWhCode()).getWhName());
continue; // 物料名称
} fKc005.setInventName(HPPZTools.getPz004ByCode(fKc005.getInventCode()).getInventName());
Map params=new HashMap<>(); this.dao.update("HPKC005.update", fKc005);
params.put("whCode", HPKC005.getWhCode());
List query = dao.query("HPPZ007.queryByWhCode",params);
String whName = ((HPPZ007)query.get(0)).getWhName();
HPKC005.setWhName(whName);
Map params1=new HashMap<>();
params1.put("inventCode", HPKC005.getInventCode());
List query1 = dao.query("HPPZ004.queryMatNameByCode",params1);
String matName = ((THppz004)query1.get(0)).getInventName();
HPKC005.setInventName(matName);
this.dao.update("HPKC005.update", HPKC005.toMap());
} }
inInfo = this.query(inInfo); inInfo = this.query(inInfo);
inInfo.setStatus(EiConstant.STATUS_SUCCESS); inInfo.setStatus(EiConstant.STATUS_SUCCESS);
......
...@@ -2,10 +2,8 @@ package com.baosight.hpjx.hp.kc.service; ...@@ -2,10 +2,8 @@ package com.baosight.hpjx.hp.kc.service;
import com.baosight.hpjx.core.dao.DaoUtils; import com.baosight.hpjx.core.dao.DaoUtils;
import com.baosight.hpjx.hp.constant.HPConstant; import com.baosight.hpjx.hp.constant.HPConstant;
import com.baosight.hpjx.hp.kc.domain.HPKC005;
import com.baosight.hpjx.hp.kc.domain.HPKC008; import com.baosight.hpjx.hp.kc.domain.HPKC008;
import com.baosight.hpjx.hp.pz.domain.HPPZ007; import com.baosight.hpjx.hp.pz.domain.HPPZ004;
import com.baosight.hpjx.hp.pz.domain.THppz004;
import com.baosight.hpjx.util.EiInfoUtils; import com.baosight.hpjx.util.EiInfoUtils;
import com.baosight.hpjx.util.LogUtils; import com.baosight.hpjx.util.LogUtils;
import com.baosight.hpjx.util.StringUtil; import com.baosight.hpjx.util.StringUtil;
...@@ -80,8 +78,8 @@ public class ServiceHPKC008 extends ServiceBase { ...@@ -80,8 +78,8 @@ public class ServiceHPKC008 extends ServiceBase {
// 物料名称 // 物料名称
Map params1 = new HashMap<>(); Map params1 = new HashMap<>();
params1.put("inventCode", MapUtils.getString(resultRow, "materialCode")); params1.put("inventCode", MapUtils.getString(resultRow, "materialCode"));
List query1 = dao.query("HPPZ004.queryMatNameByCode", params1); List query1 = dao.query("HPPZ004.query", params1);
String matName = ((THppz004) query1.get(0)).getInventName(); String matName = ((HPPZ004) query1.get(0)).getInventName();
resultRow.put("materialName", matName); resultRow.put("materialName", matName);
// 生成单据号 // 生成单据号
resultRow.put("statisticalNumber", SequenceGenerator.getNextSequence( resultRow.put("statisticalNumber", SequenceGenerator.getNextSequence(
......
...@@ -14,7 +14,7 @@ import com.baosight.hpjx.hp.kc.domain.HPKC007; ...@@ -14,7 +14,7 @@ import com.baosight.hpjx.hp.kc.domain.HPKC007;
import com.baosight.hpjx.hp.kc.domain.HPKC009; import com.baosight.hpjx.hp.kc.domain.HPKC009;
import com.baosight.hpjx.hp.pz.domain.HPPZ007; import com.baosight.hpjx.hp.pz.domain.HPPZ007;
import com.baosight.hpjx.hp.pz.domain.HPPZ009; import com.baosight.hpjx.hp.pz.domain.HPPZ009;
import com.baosight.hpjx.hp.pz.domain.THppz004; import com.baosight.hpjx.hp.pz.domain.HPPZ004;
import com.baosight.hpjx.hp.pz.tools.HPPZTools; import com.baosight.hpjx.hp.pz.tools.HPPZTools;
import com.baosight.hpjx.util.BeanUtils; import com.baosight.hpjx.util.BeanUtils;
import com.baosight.hpjx.util.CommonMethod; import com.baosight.hpjx.util.CommonMethod;
...@@ -381,14 +381,14 @@ public class ServiceHPKC009 extends ServiceBase { ...@@ -381,14 +381,14 @@ public class ServiceHPKC009 extends ServiceBase {
Map<String, HPPZ007> mapPz007 = HPPZTools.mapPz007(whCodes); Map<String, HPPZ007> mapPz007 = HPPZTools.mapPz007(whCodes);
// 存货名称 // 存货名称
List<String> inventCodes = kc009s.stream().map(HPKC009::getInventCode).collect(Collectors.toList()); List<String> inventCodes = kc009s.stream().map(HPKC009::getInventCode).collect(Collectors.toList());
Map<String, THppz004> mapPz004 = HPPZTools.mapPz004(inventCodes); Map<String, HPPZ004> mapPz004 = HPPZTools.mapPz004(inventCodes);
for (HPKC009 kc009 : kc009s) { for (HPKC009 kc009 : kc009s) {
String whCode = kc009.getWhCode(); String whCode = kc009.getWhCode();
// 仓库名称 // 仓库名称
HPPZ007 pz007 = mapPz007 == null ? null : mapPz007.get(whCode); HPPZ007 pz007 = mapPz007 == null ? null : mapPz007.get(whCode);
kc009.setWhName(pz007 == null ? "" : pz007.getWhName()); kc009.setWhName(pz007 == null ? "" : pz007.getWhName());
// 存货名称 // 存货名称
THppz004 pz004 = mapPz004 == null ? null : mapPz004.get(whCode); HPPZ004 pz004 = mapPz004 == null ? null : mapPz004.get(whCode);
kc009.setInventName(pz004 == null ? "" : pz004.getInventName()); kc009.setInventName(pz004 == null ? "" : pz004.getInventName());
} }
} }
......
/**
* Generate time : 2024-01-10 14:11:21
* Version : 1.0
*/
package com.baosight.hpjx.hp.pz.domain;
import com.baosight.iplat4j.core.util.NumberUtils;
import com.baosight.iplat4j.core.ei.EiColumn;
import com.baosight.iplat4j.core.data.DaoEPBase;
import java.util.HashMap;
import java.util.Map;
import com.baosight.iplat4j.core.util.StringUtils;
/**
* THppz004
*
*/
public class THppz004 extends DaoEPBase {
private Long id = 0L;
private String companyCode = " "; /* 企业编码 预留*/
private String inventName = " "; /* 存货名称*/
private String inventCode = " "; /* 存货编码*/
private int inventType; /* 存货类型*/
private int status; /* 状态 0未启用 1启用*/
private String createdBy = " "; /* 创建人*/
private String createdTime = " "; /* 创建时间*/
private String updatedBy = " "; /* 更新人*/
private String updatedTime = " "; /* 更新时间*/
private String depCode = " "; /* 部门编码*/
/**
* initialize the metadata
*/
public void initMetaData() {
EiColumn eiColumn;
eiColumn = new EiColumn("id");
eiColumn.setPrimaryKey(true);
eiColumn.setDescName(" ");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("companyCode");
eiColumn.setDescName("企业编码 预留");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("inventName");
eiColumn.setDescName("存货名称");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("inventCode");
eiColumn.setDescName("存货编码");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("inventType");
eiColumn.setDescName("存货类型");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("status");
eiColumn.setDescName("状态 0未启用 1启用");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("createdBy");
eiColumn.setDescName("创建人");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("createdTime");
eiColumn.setDescName("创建时间");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("updatedBy");
eiColumn.setDescName("更新人");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("updatedTime");
eiColumn.setDescName("更新时间");
eiMetadata.addMeta(eiColumn);
eiColumn = new EiColumn("depCode");
eiColumn.setDescName("部门编码");
eiMetadata.addMeta(eiColumn);
}
/**
* the constructor
*/
public THppz004() {
initMetaData();
}
/**
* get the id
* @return the id
*/
public Long getId() {
return this.id;
}
/**
* set the id
*/
public void setId(Long id) {
this.id = id;
}
/**
* get the companyCode - 企业编码 预留
* @return the companyCode
*/
public String getCompanyCode() {
return this.companyCode;
}
/**
* set the companyCode - 企业编码 预留
*/
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
/**
* get the inventName - 存货名称
* @return the inventName
*/
public String getInventName() {
return this.inventName;
}
/**
* set the inventName - 存货名称
*/
public void setInventName(String inventName) {
this.inventName = inventName;
}
/**
* get the inventCode - 存货编码
* @return the inventCode
*/
public String getInventCode() {
return this.inventCode;
}
/**
* set the inventCode - 存货编码
*/
public void setInventCode(String inventCode) {
this.inventCode = inventCode;
}
/**
* get the inventType - 存货类型
* @return the inventType
*/
public int getInventType() {
return this.inventType;
}
/**
* set the inventType - 存货类型
*/
public void setInventType(int inventType) {
this.inventType = inventType;
}
/**
* get the status - 状态 0未启用 1启用
* @return the status
*/
public int getStatus() {
return this.status;
}
/**
* set the status - 状态 0未启用 1启用
*/
public void setStatus(int status) {
this.status = status;
}
/**
* get the createdBy - 创建人
* @return the createdBy
*/
public String getCreatedBy() {
return this.createdBy;
}
/**
* set the createdBy - 创建人
*/
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
/**
* get the createdTime - 创建时间
* @return the createdTime
*/
public String getCreatedTime() {
return this.createdTime;
}
/**
* set the createdTime - 创建时间
*/
public void setCreatedTime(String createdTime) {
this.createdTime = createdTime;
}
/**
* get the updatedBy - 更新人
* @return the updatedBy
*/
public String getUpdatedBy() {
return this.updatedBy;
}
/**
* set the updatedBy - 更新人
*/
public void setUpdatedBy(String updatedBy) {
this.updatedBy = updatedBy;
}
/**
* get the updatedTime - 更新时间
* @return the updatedTime
*/
public String getUpdatedTime() {
return this.updatedTime;
}
/**
* set the updatedTime - 更新时间
*/
public void setUpdatedTime(String updatedTime) {
this.updatedTime = updatedTime;
}
/**
* get the depCode - 部门编码
* @return the depCode
*/
public String getDepCode() {
return this.depCode;
}
/**
* set the depCode - 部门编码
*/
public void setDepCode(String depCode) {
this.depCode = depCode;
}
/**
* get the value from Map
*/
public void fromMap(Map map) {
setId(NumberUtils.toLong(StringUtils.toString(map.get("id")), id));
setCompanyCode(StringUtils.defaultIfEmpty(StringUtils.toString(map.get("companyCode")), companyCode));
setInventName(StringUtils.defaultIfEmpty(StringUtils.toString(map.get("inventName")), inventName));
setInventCode(StringUtils.defaultIfEmpty(StringUtils.toString(map.get("inventCode")), inventCode));
setInventType(NumberUtils.toint(StringUtils.toString(map.get("inventType")), inventType));
setStatus(NumberUtils.toint(StringUtils.toString(map.get("status")), status));
setCreatedBy(StringUtils.defaultIfEmpty(StringUtils.toString(map.get("createdBy")), createdBy));
setCreatedTime(StringUtils.defaultIfEmpty(StringUtils.toString(map.get("createdTime")), createdTime));
setUpdatedBy(StringUtils.defaultIfEmpty(StringUtils.toString(map.get("updatedBy")), updatedBy));
setUpdatedTime(StringUtils.defaultIfEmpty(StringUtils.toString(map.get("updatedTime")), updatedTime));
setDepCode(StringUtils.defaultIfEmpty(StringUtils.toString(map.get("depCode")), depCode));
}
/**
* set the value to Map
*/
public Map toMap() {
Map map = new HashMap();
map.put("id",StringUtils.toString(id, eiMetadata.getMeta("id")));
map.put("companyCode",StringUtils.toString(companyCode, eiMetadata.getMeta("companyCode")));
map.put("inventName",StringUtils.toString(inventName, eiMetadata.getMeta("inventName")));
map.put("inventCode",StringUtils.toString(inventCode, eiMetadata.getMeta("inventCode")));
map.put("inventType",StringUtils.toString(inventType, eiMetadata.getMeta("inventType")));
map.put("status",StringUtils.toString(status, eiMetadata.getMeta("status")));
map.put("createdBy",StringUtils.toString(createdBy, eiMetadata.getMeta("createdBy")));
map.put("createdTime",StringUtils.toString(createdTime, eiMetadata.getMeta("createdTime")));
map.put("updatedBy",StringUtils.toString(updatedBy, eiMetadata.getMeta("updatedBy")));
map.put("updatedTime",StringUtils.toString(updatedTime, eiMetadata.getMeta("updatedTime")));
map.put("depCode",StringUtils.toString(depCode, eiMetadata.getMeta("depCode")));
return map;
}
}
\ No newline at end of file
package com.baosight.hpjx.hp.pz.service; package com.baosight.hpjx.hp.pz.service;
import com.baosight.hpjx.common.CompanyTypeEnum;
import com.baosight.hpjx.common.DdynamicEnum; import com.baosight.hpjx.common.DdynamicEnum;
import com.baosight.hpjx.common.InitiateModeEnum; import com.baosight.hpjx.common.InitiateModeEnum;
import com.baosight.hpjx.common.InventTypeEnun; import com.baosight.hpjx.core.dao.DaoUtils;
import com.baosight.hpjx.hp.pz.domain.THppz004; import com.baosight.hpjx.hp.constant.HPConstant;
import com.baosight.hpjx.hp.pz.domain.HPPZ003;
import com.baosight.hpjx.hp.pz.domain.HPPZ004;
import com.baosight.hpjx.util.CommonMethod; import com.baosight.hpjx.util.CommonMethod;
import com.baosight.iplat4j.core.data.DaoEPBase; import com.baosight.hpjx.util.LogUtils;
import com.baosight.iplat4j.core.ei.EiBlock;
import com.baosight.iplat4j.core.ei.EiConstant; import com.baosight.iplat4j.core.ei.EiConstant;
import com.baosight.iplat4j.core.ei.EiInfo; import com.baosight.iplat4j.core.ei.EiInfo;
import com.baosight.iplat4j.core.exception.PlatException; import com.baosight.iplat4j.core.exception.PlatException;
import com.baosight.iplat4j.core.service.impl.ServiceBase; import com.baosight.iplat4j.core.service.impl.ServiceBase;
import com.baosight.iplat4j.ed.util.SequenceGenerator;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
...@@ -19,124 +20,125 @@ import java.util.List; ...@@ -19,124 +20,125 @@ import java.util.List;
import java.util.Map; import java.util.Map;
/** /**
* @author xuao * @author:songx
* @date 2024年01月09日 19:35 * @date:2024/1/22,15:18
*/ */
public class ServiceHPPZ004 extends ServiceBase { public class ServiceHPPZ004 extends ServiceBase {
/** /**
* 画面初始化. * 画面初始化
*/ *
public EiInfo initLoad(EiInfo inInfo) { * @param inInfo
THppz004 hppz004 = new THppz004(); * @return
EiInfo outInfo = new EiInfo(); */
outInfo.addBlock(EiConstant.resultBlock); public EiInfo initLoad(EiInfo inInfo) {
outInfo.getBlock(EiConstant.resultBlock).addBlockMeta(hppz004.eiMetadata); try {
outInfo.setBlock(InventTypeEnun.generatorEiBlock()); inInfo.setBlock(InitiateModeEnum.generatorEiBlock());
outInfo.setBlock(InitiateModeEnum.generatorEiBlock()); inInfo.addBlock(EiConstant.resultBlock).addBlockMeta(new HPPZ004().eiMetadata);
return outInfo; } catch (PlatException e) {
} LogUtils.setDetailMsg(inInfo, e, "初始化失败");
}
/** return inInfo;
* 查询操作. }
*/
@Override /**
public EiInfo query(EiInfo inInfo) { * 查询操作
/* 调用EI查询方法.*/ *
EiInfo outInfo = super.query(inInfo, "HPPZ004.query", new THppz004()); * @param inInfo
return outInfo; * @return
*/
} @Override
public EiInfo query(EiInfo inInfo) {
/** try {
* 新增操作. inInfo = super.query(inInfo, "HPPZ004.query", new HPPZ003());
*/ } catch (Exception e) {
@Override LogUtils.setDetailMsg(inInfo, e, "查询失败");
public EiInfo insert(EiInfo inInfo) { }
try { return inInfo;
CommonMethod.creatorInfo(inInfo,EiConstant.resultBlock); }
THppz004 hppz004 = new THppz004();
EiBlock eiBlock = inInfo.getBlock(EiConstant.resultBlock); /**
for (int i = 0; i < eiBlock.getRowCount(); i++) { * 新增操作
Map<?, ?> map = eiBlock.getRow(i); *
hppz004.fromMap(map); * @param inInfo
* @return
this.dao.insert("HPPZ004.insert", hppz004.toMap()); */
} @Override
inInfo.setStatus(EiConstant.STATUS_SUCCESS); public EiInfo insert(EiInfo inInfo) {
inInfo.setMsg("新增成功!"); try {
List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
} catch (PlatException e) { // 数据写入
e.printStackTrace(); for (int i = 0; i < resultRows.size(); i++) {
inInfo.setStatus(EiConstant.STATUS_FAILURE); HPPZ004 fPz004 = new HPPZ004();
inInfo.setMsg("新增失败!原因参见详细错误描述!"); fPz004.fromMap(resultRows.get(i));
inInfo.setDetailMsg(e.getMessage()); // 生成客户编码
logError("新增失败", e.getMessage()); fPz004.setInventCode(SequenceGenerator.getNextSequence(HPConstant.SequenceId.INVENT_CODE));
return inInfo; DaoUtils.insert(HPPZ004.INSERT, fPz004);
} }
return inInfo; inInfo = this.query(inInfo);
} inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据新增成功!");
} catch (Exception e) {
/** LogUtils.setDetailMsg(inInfo, e, "新增失败");
* 修改操作. }
*/ return inInfo;
public EiInfo update(EiInfo inInfo) { }
try {
CommonMethod.creatorInfo(inInfo,EiConstant.resultBlock); /**
THppz004 HPPZ004 = new THppz004(); * 修改操作
EiBlock eiBlock = inInfo.getBlock(EiConstant.resultBlock); *
for (int i = 0; i < eiBlock.getRowCount(); i++) { * @param inInfo
Map<?, ?> map = eiBlock.getRow(i); * @return
HPPZ004.fromMap(map); */
public EiInfo update(EiInfo inInfo) {
this.dao.update("HPPZ004.update", HPPZ004.toMap()); try {
} List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
inInfo.setStatus(EiConstant.STATUS_SUCCESS); for (int i = 0; i < resultRows.size(); i++) {
inInfo.setMsg("修改成功!"); HPPZ004 fPz004 = new HPPZ004();
} catch (PlatException e) { fPz004.fromMap(resultRows.get(i));
inInfo.setStatus(EiConstant.STATUS_FAILURE); DaoUtils.update(HPPZ004.UPDATE, fPz004);
inInfo.setMsg("操作失败!原因参见详细错误描述!"); }
inInfo.setDetailMsg(e.getMessage()); inInfo = this.query(inInfo);
logError("修改失败", e.getMessage()); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
return inInfo; inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据修改成功!");
} } catch (Exception e) {
return query(inInfo); LogUtils.setDetailMsg(inInfo, e, "修改失败");
} }
return inInfo;
/** }
* 删除操作.
*/ /**
public EiInfo delete(EiInfo eiInfo) { * 删除操作
THppz004 HPPZ004 = new THppz004(); *
EiBlock eiBlock = eiInfo.getBlock(EiConstant.resultBlock); * @param inInfo
try { * @return
for (int i = 0; i < eiBlock.getRowCount(); i++) { */
Map<?, ?> map = eiBlock.getRow(i); public EiInfo delete(EiInfo inInfo) {
HPPZ004.fromMap(map); try {
List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
this.dao.delete("HPPZ004.delete", HPPZ004.toMap()); for (int i = 0; i < resultRows.size(); i++) {
} DaoUtils.update(HPPZ004.DELETE, resultRows.get(i));
} catch (PlatException e) { }
eiInfo.setStatus(EiConstant.STATUS_FAILURE); inInfo = this.query(inInfo);
eiInfo.setMsg("删除失败,原因参见详细错误描述!"); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
eiInfo.setDetailMsg(e.getMessage()); inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据删除成功!");
logError("删除失败!", e.getMessage()); } catch (Exception e) {
return eiInfo; LogUtils.setDetailMsg(inInfo, e, "删除失败");
} }
return inInfo;
eiInfo.setStatus(EiConstant.STATUS_SUCCESS); }
eiInfo.setMsg("删除成功!");
return eiInfo; /**
} * @param eiInfo
* @return
public EiInfo queryComboBox(EiInfo eiInfo) { */
Map map = new HashMap(); public EiInfo queryComboBox(EiInfo eiInfo) {
map.put("inventType", eiInfo.getString("inventType")); Map map = new HashMap();
List<DdynamicEnum> list = new ArrayList<>(); map.put("inventType", eiInfo.getString("inventType"));
list.add(DdynamicEnum.INVENT_NAME_BLOCK_ID); List<DdynamicEnum> list = new ArrayList<>();
CommonMethod.initBlock(eiInfo, list, map); list.add(DdynamicEnum.INVENT_NAME_BLOCK_ID);
return eiInfo; CommonMethod.initBlock(eiInfo, list, map);
} return eiInfo;
}
} }
...@@ -2,12 +2,14 @@ package com.baosight.hpjx.hp.pz.service; ...@@ -2,12 +2,14 @@ package com.baosight.hpjx.hp.pz.service;
import com.baosight.hpjx.common.DdynamicEnum; import com.baosight.hpjx.common.DdynamicEnum;
import com.baosight.hpjx.common.InitiateModeEnum; import com.baosight.hpjx.common.InitiateModeEnum;
import com.baosight.hpjx.common.InventTypeEnun; import com.baosight.hpjx.core.dao.DaoUtils;
import com.baosight.hpjx.hp.pz.domain.THppz006; import com.baosight.hpjx.hp.kc.domain.HPKC006;
import com.baosight.hpjx.hp.pz.domain.HPPZ006;
import com.baosight.hpjx.hp.pz.tools.HPPZTools;
import com.baosight.hpjx.util.AssertUtils;
import com.baosight.hpjx.util.CommonMethod; import com.baosight.hpjx.util.CommonMethod;
import com.baosight.hpjx.util.EiInfoUtils; import com.baosight.hpjx.util.EiInfoUtils;
import com.baosight.hpjx.util.LogUtils; import com.baosight.hpjx.util.LogUtils;
import com.baosight.iplat4j.core.ei.EiBlock;
import com.baosight.iplat4j.core.ei.EiConstant; import com.baosight.iplat4j.core.ei.EiConstant;
import com.baosight.iplat4j.core.ei.EiInfo; import com.baosight.iplat4j.core.ei.EiInfo;
import com.baosight.iplat4j.core.exception.PlatException; import com.baosight.iplat4j.core.exception.PlatException;
...@@ -15,127 +17,133 @@ import com.baosight.iplat4j.core.service.impl.ServiceBase; ...@@ -15,127 +17,133 @@ import com.baosight.iplat4j.core.service.impl.ServiceBase;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
/** /**
* @author xuao * @author:songx
* @date 2024年01月10日 15:51 * @date:2024/1/22,15:17
*/ */
public class ServiceHPPZ006 extends ServiceBase { public class ServiceHPPZ006 extends ServiceBase {
/** /**
* 画面初始化. * 画面初始化
*/ *
public EiInfo initLoad(EiInfo inInfo) { * @param inInfo
THppz006 hppz006 = new THppz006(); * @return
EiInfo outInfo = new EiInfo(); */
outInfo.addBlock(EiConstant.resultBlock); public EiInfo initLoad(EiInfo inInfo) {
outInfo.getBlock(EiConstant.resultBlock).addBlockMeta(hppz006.eiMetadata); try {
outInfo.setBlock(InitiateModeEnum.generatorEiBlock()); CommonMethod.initBlock(inInfo, Arrays.asList(DdynamicEnum.INVENT_NAME_BLOCK_ID), null);
outInfo.setBlock(InventTypeEnun.generatorEiBlock()); inInfo.setBlock(InitiateModeEnum.generatorEiBlock());
CommonMethod.initBlock(outInfo, Arrays.asList( inInfo.addBlock(EiConstant.resultBlock).addBlockMeta(new HPPZ006().eiMetadata);
DdynamicEnum.INVENT_NAME_BLOCK_ID), } catch (PlatException e) {
new HashMap<String,String>(1) {{ LogUtils.setDetailMsg(inInfo, e, "初始化失败");
put("status", "1" ); }
}}); return inInfo;
}
return outInfo;
} /**
* 查询操作.
/** */
* 查询操作. @Override
*/ public EiInfo query(EiInfo inInfo) {
@Override try {
public EiInfo query(EiInfo inInfo) { inInfo = super.query(inInfo, "HPPZ006.query", new HPKC006());
/* 调用EI查询方法.*/ } catch (Exception e) {
EiInfo outInfo = super.query(inInfo, "HPPZ006.query", new THppz006()); LogUtils.setDetailMsg(inInfo, e, "查询失败");
return outInfo; }
return inInfo;
} }
/** /**
* 新增操作. * 新增操作
*/ *
@Override * @param inInfo
public EiInfo insert(EiInfo inInfo) { * @return
try { */
CommonMethod.creatorInfo(inInfo,EiConstant.resultBlock); @Override
public EiInfo insert(EiInfo inInfo) {
for (int i = 0; i < inInfo.getBlock(EiConstant.resultBlock).getRowCount(); i++) { try {
String inventName =inInfo.getCellStr(EiConstant.resultBlock,i,"inventName"); List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
String[] str = inventName.split("-"); // 数据写入
inInfo.setCell(EiConstant.resultBlock,i,"inventCode", str[0]); this.checkSaveData(resultRows);
inInfo.setCell(EiConstant.resultBlock,i,"inventName", str[1]); // 数据写入
for (int i = 0; i < resultRows.size(); i++) {
} HPPZ006 fPz006 = new HPPZ006();
inInfo.setStatus(EiConstant.STATUS_SUCCESS); fPz006.fromMap(resultRows.get(i));
inInfo.setMsg("新增成功!"); // 存货名称
fPz006.setInventName(HPPZTools.getPz004ByCode(fPz006.getInventCode()).getInventName());
} catch (PlatException e) { DaoUtils.insert(HPPZ006.INSERT, fPz006);
e.printStackTrace(); }
inInfo.setStatus(EiConstant.STATUS_FAILURE); inInfo = this.query(inInfo);
inInfo.setMsg("新增失败!原因参见详细错误描述!"); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setDetailMsg(e.getMessage()); inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据新增成功!");
logError("新增失败", e.getMessage()); } catch (Exception e) {
return inInfo; LogUtils.setDetailMsg(inInfo, e, "新增失败");
} }
return super.insert(inInfo,"HPPZ006.insert"); return inInfo;
} }
/**
/** * 校验保存的数据
* 修改操作. *
*/ * @param resultRows
public EiInfo update(EiInfo inInfo) { */
try { private void checkSaveData(List<Map> resultRows) {
CommonMethod.creatorInfo(inInfo,EiConstant.resultBlock); for (int i = 0; i < resultRows.size(); i++) {
THppz006 hppz006 = new THppz006(); HPPZ006 fPz006 = new HPPZ006();
EiBlock eiBlock = inInfo.getBlock(EiConstant.resultBlock); fPz006.fromMap(resultRows.get(i));
for (int i = 0; i < eiBlock.getRowCount(); i++) { AssertUtils.isNull(fPz006.getInventType(), "存货类型不能为空");
Map<?, ?> map = eiBlock.getRow(i); AssertUtils.isNull(fPz006.getInventCode(), "存货名称不能为空");
hppz006.fromMap(map); }
}
this.dao.update("HPPZ006.update", hppz006.toMap());
} /**
inInfo.setStatus(EiConstant.STATUS_SUCCESS); * 修改操作
inInfo.setMsg("修改成功!"); *
} catch (PlatException e) { * @param inInfo
inInfo.setStatus(EiConstant.STATUS_FAILURE); * @return
inInfo.setMsg("操作失败!原因参见详细错误描述!"); */
inInfo.setDetailMsg(e.getMessage()); public EiInfo update(EiInfo inInfo) {
logError("修改失败", e.getMessage()); try {
return inInfo; List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
} for (int i = 0; i < resultRows.size(); i++) {
return query(inInfo); HPPZ006 fPz006 = new HPPZ006();
} fPz006.fromMap(resultRows.get(i));
// 存货名称
/** fPz006.setInventName(HPPZTools.getPz004ByCode(fPz006.getInventCode()).getInventName());
* 删除操作. DaoUtils.update(HPPZ006.UPDATE, fPz006);
*/ }
public EiInfo delete(EiInfo eiInfo) { inInfo = this.query(inInfo);
THppz006 hppz006 = new THppz006(); inInfo.setStatus(EiConstant.STATUS_DEFAULT);
EiBlock eiBlock = eiInfo.getBlock(EiConstant.resultBlock); inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据修改成功!");
try { } catch (Exception e) {
for (int i = 0; i < eiBlock.getRowCount(); i++) { LogUtils.setDetailMsg(inInfo, e, "修改失败");
Map<?, ?> map = eiBlock.getRow(i); }
hppz006.fromMap(map); return inInfo;
}
this.dao.delete("HPPZ006.delete", hppz006.toMap());
} /**
} catch (PlatException e) { * 删除操作
eiInfo.setStatus(EiConstant.STATUS_FAILURE); *
eiInfo.setMsg("删除失败,原因参见详细错误描述!"); * @param inInfo
eiInfo.setDetailMsg(e.getMessage()); * @return
logError("删除失败!", e.getMessage()); */
return eiInfo; public EiInfo delete(EiInfo inInfo) {
} try {
List<Map> resultRows = inInfo.getBlock(EiConstant.resultBlock).getRows();
eiInfo.setStatus(EiConstant.STATUS_SUCCESS); for (int i = 0; i < resultRows.size(); i++) {
eiInfo.setMsg("删除成功!"); DaoUtils.update(HPPZ006.DELETE, resultRows.get(i));
return eiInfo; }
} inInfo = this.query(inInfo);
inInfo.setStatus(EiConstant.STATUS_DEFAULT);
inInfo.setMsg("操作成功!本次对[" + resultRows.size() + "]条数据删除成功!");
} catch (Exception e) {
LogUtils.setDetailMsg(inInfo, e, "删除失败");
}
return inInfo;
}
/** /**
* 规格下拉框 * 规格下拉框
...@@ -149,7 +157,7 @@ public class ServiceHPPZ006 extends ServiceBase { ...@@ -149,7 +157,7 @@ public class ServiceHPPZ006 extends ServiceBase {
list.add(DdynamicEnum.INVENT_SPEC_BLOCK_ID); list.add(DdynamicEnum.INVENT_SPEC_BLOCK_ID);
CommonMethod.initBlock(inInfo, list, EiInfoUtils.getFirstRow(inInfo), false); CommonMethod.initBlock(inInfo, list, EiInfoUtils.getFirstRow(inInfo), false);
} catch (Exception e) { } catch (Exception e) {
LogUtils.setDetailMsg(inInfo, e, "规格下拉框"); LogUtils.setDetailMsg(inInfo, e, "查询规格失败");
} }
return inInfo; return inInfo;
} }
......
...@@ -97,7 +97,6 @@ ...@@ -97,7 +97,6 @@
UPDATE hpjx.t_hppz002 UPDATE hpjx.t_hppz002
SET SET
CUST_TYPE = #custType#, <!-- 供应商类型 1 国企 : 2 民营 --> CUST_TYPE = #custType#, <!-- 供应商类型 1 国企 : 2 民营 -->
CUST_CODE = #custCode#, <!-- 供应商编码 -->
CUST_NAME = #custName#, <!-- 供应商名称 --> CUST_NAME = #custName#, <!-- 供应商名称 -->
ADDRESS = #address#, <!-- 地址 --> ADDRESS = #address#, <!-- 地址 -->
STATUS = #status#, <!-- 状态 0禁用 1启用 --> STATUS = #status#, <!-- 状态 0禁用 1启用 -->
......
...@@ -96,7 +96,6 @@ ...@@ -96,7 +96,6 @@
UPDATE hpjx.t_hppz003 UPDATE hpjx.t_hppz003
SET SET
CUST_TYPE = #custType#, <!-- 客商类型 1:国企;2:民营; --> CUST_TYPE = #custType#, <!-- 客商类型 1:国企;2:民营; -->
CUST_CODE = #custCode#, <!-- 客户编码 -->
CUST_NAME = #custName#, <!-- 客户名称 --> CUST_NAME = #custName#, <!-- 客户名称 -->
ADDRESS = #address#, <!-- 地址 --> ADDRESS = #address#, <!-- 地址 -->
STATUS = #status#, <!-- 状态 0未启用 1启用 --> STATUS = #status#, <!-- 状态 0未启用 1启用 -->
......
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd"> <!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
<!-- table information
Generate time : 2024-01-09 19:25:19
Version : 1.0
tableName :hpjx.t_hppz004
ID INTEGER NOT NULL primarykey,
COMPANY_CODE VARCHAR NOT NULL,
INVENT_NAME VARCHAR NOT NULL,
INVENT_CODE VARCHAR NOT NULL,
INVENT_FATHER_NAME VARCHAR NOT NULL,
INVENT_FATHER_CODE VARCHAR NOT NULL,
STATUS TINYINT NOT NULL,
CREATED_BY VARCHAR,
CREATED_TIME VARCHAR,
UPDATED_BY VARCHAR,
UPDATED_TIME VARCHAR
-->
<sqlMap namespace="HPPZ004"> <sqlMap namespace="HPPZ004">
<select id="query" parameterClass="java.util.HashMap" <sql id="column">
resultClass="com.baosight.hpjx.hp.pz.domain.THppz004"> ID as "id",
SELECT COMPANY_CODE as "companyCode", <!-- 企业编码 预留 -->
ID as "id", DEP_CODE as "depCode", <!-- 部门编码 -->
COMPANY_CODE as "companyCode", <!-- 企业编码 预留 --> INVENT_TYPE as "inventType", <!-- 存货类型 -->
INVENT_NAME as "inventName", <!-- 存货名称 --> INVENT_CODE as "inventCode", <!-- 存货编码 -->
INVENT_CODE as "inventCode", <!-- 存货编码 --> INVENT_NAME as "inventName", <!-- 存货名称 -->
INVENT_TYPE as "inventType", <!-- 存货类型 --> STATUS as "status", <!-- 状态 0未启用 1启用 -->
STATUS as "status", <!-- 状态 0未启用 1启用 --> CREATED_BY as "createdBy", <!-- 创建人 -->
CREATED_BY as "createdBy", <!-- 创建人 --> CREATED_NAME as "createdName", <!-- 创建人名称 -->
CREATED_TIME as "createdTime", <!-- 创建时间 --> CREATED_TIME as "createdTime", <!-- 创建时间 -->
UPDATED_BY as "updatedBy", <!-- 更新人 --> UPDATED_BY as "updatedBy", <!-- 更新人 -->
UPDATED_TIME as "updatedTime", <!-- 更新时间 --> UPDATED_NAME as "updatedName", <!-- 更新人名称 -->
DEP_CODE as "depCode" <!-- 部门编码 --> UPDATED_TIME as "updatedTime" <!-- 更新时间 -->
FROM hpjx.t_hppz004 WHERE 1=1 </sql>
<isNotEmpty prepend=" AND " property="id">
ID = #id# <sql id="condition">
</isNotEmpty> <isNotEmpty prepend=" AND " property="id">
ID = #id#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="companyCode">
COMPANY_CODE = #companyCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="depCode">
DEP_CODE = #depCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventType">
INVENT_TYPE = #inventType#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventCode">
INVENT_CODE = #inventCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventName">
INVENT_NAME LIKE CONCAT('%', #inventName#, '%')
</isNotEmpty>
<isNotEmpty prepend=" AND " property="status">
STATUS = #status#
</isNotEmpty>
</sql>
<sql id="customCondition">
<isNotEmpty prepend=" AND " property="inventCodes"> <isNotEmpty prepend=" AND " property="inventCodes">
INVENT_CODE IN <iterate close=")" open="(" conjunction="," property="inventCodes">#inventCodes[]#</iterate> INVENT_CODE IN <iterate close=")" open="(" conjunction="," property="inventCodes">#inventCodes[]#</iterate>
</isNotEmpty> </isNotEmpty>
<isNotEmpty prepend=" AND " property="inventName"> </sql>
INVENT_NAME = #inventName#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="status">
STATUS = #status#
</isNotEmpty>
<dynamic prepend="ORDER BY">
<isNotEmpty property="orderBy">
$orderBy$
</isNotEmpty>
<isEmpty property="orderBy">
ID asc
</isEmpty>
</dynamic>
</select> <sql id="order">
<dynamic prepend="ORDER BY">
<isNotEmpty property="orderBy">
$orderBy$
</isNotEmpty>
<isEmpty property="orderBy">
ID DESC
</isEmpty>
</dynamic>
</sql>
<select id="count" resultClass="int"> <select id="query" resultClass="com.baosight.hpjx.hp.pz.domain.HPPZ004">
SELECT COUNT(*) FROM hpjx.t_hppz004 WHERE 1=1 SELECT
<isNotEmpty prepend=" AND " property="id"> <include refid="column"/>
ID = #id# FROM hpjx.t_hppz004 WHERE 1=1
</isNotEmpty> <include refid="condition"/>
</select> <include refid="customCondition"/>
<include refid="order"/>
</select>
<!-- <select id="count" resultClass="int">
<isNotEmpty prepend=" AND " property="id"> SELECT COUNT(*) FROM hpjx.t_hppz004 WHERE 1=1
ID = #id# <include refid="condition"/>
</isNotEmpty> <include refid="customCondition"/>
<isNotEmpty prepend=" AND " property="companyCode"> </select>
COMPANY_CODE = #companyCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventName">
INVENT_NAME = #inventName#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventCode">
INVENT_CODE = #inventCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventFatherName">
INVENT_FATHER_NAME = #inventFatherName#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventFatherCode">
INVENT_FATHER_CODE = #inventFatherCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="status">
STATUS = #status#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="createdBy">
CREATED_BY = #createdBy#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="createdTime">
CREATED_TIME = #createdTime#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="updatedBy">
UPDATED_BY = #updatedBy#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="updatedTime">
UPDATED_TIME = #updatedTime#
</isNotEmpty>
-->
<insert id="insert"> <insert id="insert">
INSERT INTO hpjx.t_hppz004 ( INSERT INTO ${hpjxSchema}.T_HPPZ004 (
COMPANY_CODE, <!-- 企业编码 预留 --> COMPANY_CODE, <!-- 企业编码 预留 -->
INVENT_NAME, <!-- 存货名称 --> DEP_CODE, <!-- 部门编码 -->
INVENT_CODE, <!-- 存货编码 --> INVENT_TYPE, <!-- 存货类型 -->
INVENT_TYPE, <!-- 存货类型 --> INVENT_CODE, <!-- 存货编码 -->
STATUS, <!-- 状态 0未启用 1启用 --> INVENT_NAME, <!-- 存货名称 -->
CREATED_BY, <!-- 创建人 --> STATUS, <!-- 状态 0未启用 1启用 -->
CREATED_TIME, <!-- 创建时间 --> CREATED_BY, <!-- 创建人 -->
DEP_CODE <!-- 部门编码 --> CREATED_NAME, <!-- 创建人名称 -->
) CREATED_TIME <!-- 创建时间 -->
VALUES ( #companyCode#, #inventName#, #inventCode#, #inventType#, #status#, #createdBy#, #createdTime#, #depCode#) ) VALUES (
</insert> #companyCode#, #depCode#, #inventType#, #inventCode#, #inventName#,
#status#, #createdBy#, #createdName#, #createdTime#
)
</insert>
<delete id="delete"> <delete id="delete">
DELETE FROM hpjx.t_hppz004 WHERE DELETE FROM hpjx.t_hppz004 WHERE ID = #id#
ID = #id#
</delete> </delete>
<update id="update"> <update id="update">
UPDATE hpjx.t_hppz004 UPDATE hpjx.t_hppz004
SET SET
INVENT_NAME = #inventName#, <!-- 存货名称 --> INVENT_TYPE = #inventType#, <!-- 存货类型 -->
INVENT_CODE = #inventCode#, <!-- 存货编码 --> INVENT_NAME = #inventName#, <!-- 存货名称 -->
INVENT_TYPE = #inventType#, <!-- 存货类型 --> STATUS = #status#, <!-- 状态 0未启用 1启用 -->
STATUS = #status#, <!-- 状态 0未启用 1启用 --> UPDATED_BY = #updatedBy#, <!-- 更新人 -->
UPDATED_BY = #updatedBy#, <!-- 更新人 --> UPDATED_NAME = #updatedName#, <!-- 更新人名称 -->
UPDATED_TIME = #updatedTime# <!-- 更新时间 --> UPDATED_TIME = #updatedTime# <!-- 更新时间 -->
WHERE WHERE ID = #id#
ID = #id#
</update> </update>
<select id="queryComboBox" parameterClass="java.util.HashMap" <!-- -->
resultClass="java.util.HashMap"> <select id="queryComboBox" parameterClass="java.util.HashMap" resultClass="java.util.HashMap">
SELECT DISTINCT SELECT DISTINCT
INVENT_CODE as "inventCode", INVENT_CODE as "inventCode",
INVENT_NAME as "inventName" INVENT_NAME as "inventName"
FROM hpjx.t_hppz004 WHERE STATUS=1 FROM hpjx.t_hppz004
WHERE STATUS = 1
<isNotEmpty prepend=" AND " property="companyCode"> <isNotEmpty prepend=" AND " property="companyCode">
COMPANY_CODE = #companyCode# COMPANY_CODE = #companyCode#
</isNotEmpty> </isNotEmpty>
...@@ -146,31 +123,6 @@ ...@@ -146,31 +123,6 @@
<isNotEmpty prepend=" AND " property="inventType"> <isNotEmpty prepend=" AND " property="inventType">
INVENT_TYPE = #inventType# INVENT_TYPE = #inventType#
</isNotEmpty> </isNotEmpty>
<isNotEmpty prepend=" AND " property="status">
STATUS = #status#
</isNotEmpty>
ORDER BY INVENT_CODE
</select>
<select id="queryMatNameByCode" parameterClass="java.util.HashMap"
resultClass="com.baosight.hpjx.hp.pz.domain.THppz004">
SELECT DISTINCT
INVENT_CODE as "inventCode",
INVENT_NAME as "inventName"
FROM hpjx.t_hppz004 WHERE STATUS=1
<isNotEmpty prepend=" AND " property="companyCode">
COMPANY_CODE = #companyCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventCode">
INVENT_CODE = #inventCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventType">
INVENT_TYPE = #inventType#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="status">
STATUS = #status#
</isNotEmpty>
ORDER BY INVENT_CODE ORDER BY INVENT_CODE
</select> </select>
......
...@@ -2,110 +2,130 @@ ...@@ -2,110 +2,130 @@
<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd"> <!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
<sqlMap namespace="HPPZ006"> <sqlMap namespace="HPPZ006">
<select id="query" parameterClass="java.util.HashMap" <sql id="column">
resultClass="com.baosight.hpjx.hp.pz.domain.THppz006"> ID as "id",
COMPANY_CODE as "companyCode", <!-- 企业编码 预留 -->
DEP_CODE as "depCode", <!-- 部门编码 -->
INVENT_TYPE as "inventType", <!-- 存货类型 -->
INVENT_CODE as "inventCode", <!-- 存货编码 -->
INVENT_NAME as "inventName", <!-- 存货名称 -->
STATUS as "status", <!-- 状态 0未启用 1启用 -->
SPEC as "spec", <!-- 规格 -->
LENGTH as "length", <!-- 长 -->
WIDE as "wide", <!-- 宽 -->
THICK as "thick", <!-- 厚 -->
MATERIAL as "material", <!-- 材质 -->
COEFFICIENT as "coefficient", <!-- 系数 -->
UNIT as "unit", <!-- 单位 -->
CREATED_BY as "createdBy", <!-- 创建人 -->
CREATED_NAME as "createdName", <!-- 创建人名称 -->
CREATED_TIME as "createdTime", <!-- 创建时间 -->
UPDATED_BY as "updatedBy", <!-- 更新人 -->
UPDATED_NAME as "updatedName", <!-- 更新人名称 -->
UPDATED_TIME as "updatedTime" <!-- 更新时间 -->
</sql>
<sql id="condition">
<isNotEmpty prepend=" AND " property="id">
ID = #id#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="companyCode">
COMPANY_CODE = #companyCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="depCode">
DEP_CODE = #depCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventType">
INVENT_TYPE = #inventType#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventCode">
INVENT_CODE = #inventCode#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventName">
INVENT_NAME = #inventName#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="status">
STATUS = #status#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="spec">
SPEC = #spec#
</isNotEmpty>
</sql>
<sql id="order">
<dynamic prepend="ORDER BY">
<isNotEmpty property="orderBy">
$orderBy$
</isNotEmpty>
<isEmpty property="orderBy">
ID DESC
</isEmpty>
</dynamic>
</sql>
<select id="query" resultClass="com.baosight.hpjx.hp.pz.domain.HPPZ006">
SELECT SELECT
ID as "id", <include refid="column"/>
COMPANY_CODE as "companyCode", <!-- 企业编码 预留 -->
INVENT_NAME as "inventName", <!-- 存货名称 -->
INVENT_CODE as "inventCode", <!-- 存货编码 -->
INVENT_TYPE as "inventType", <!-- 存货类型 -->
STATUS as "status", <!-- 状态 0未启用 1启用 -->
SPEC as "spec", <!-- 规格 -->
LENGTH as "length", <!-- 长 -->
WIDE as "wide", <!-- 宽 -->
THICK as "thick", <!-- 厚 -->
MATERIAL as "material", <!-- 材质 -->
COEFFICIENT as "coefficient", <!-- 系数 -->
UNIT as "unit", <!-- 单位 -->
CREATED_BY as "createdBy", <!-- 创建人 -->
CREATED_TIME as "createdTime", <!-- 创建时间 -->
UPDATED_BY as "updatedBy", <!-- 更新人 -->
UPDATED_TIME as "updatedTime", <!-- 更新时间 -->
DEP_CODE as "depCode" <!-- 部门编码 -->
FROM hpjx.t_hppz006 WHERE 1=1 FROM hpjx.t_hppz006 WHERE 1=1
<isNotEmpty prepend=" AND " property="id"> <include refid="condition"/>
ID = #id# <include refid="order"/>
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventType">
INVENT_TYPE = #inventType#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="inventName">
INVENT_NAME = #inventName#
</isNotEmpty>
<isNotEmpty prepend=" AND " property="status">
STATUS = #status#
</isNotEmpty>
<dynamic prepend="ORDER BY">
<isNotEmpty property="orderBy">
$orderBy$
</isNotEmpty>
<isEmpty property="orderBy">
ID asc
</isEmpty>
</dynamic>
</select> </select>
<select id="count" resultClass="int"> <select id="count" resultClass="int">
SELECT COUNT(*) FROM hpjx.t_hppz006 WHERE 1=1 SELECT COUNT(*) FROM hpjx.t_hppz006 WHERE 1=1
<isNotEmpty prepend=" AND " property="id"> <include refid="condition"/>
ID = #id#
</isNotEmpty>
</select> </select>
<insert id="insert"> <insert id="insert">
INSERT INTO hpjx.t_hppz006 ( INSERT INTO ${hpjxSchema}.T_HPPZ006 (
COMPANY_CODE, <!-- 企业编码 预留 --> COMPANY_CODE, <!-- 企业编码 预留 -->
INVENT_NAME, <!-- 存货名称 --> DEP_CODE, <!-- 部门编码 -->
INVENT_CODE, <!-- 存货编码 --> INVENT_TYPE, <!-- 存货类型 -->
INVENT_TYPE, <!-- 存货类型 --> INVENT_CODE, <!-- 存货编码 -->
STATUS, <!-- 状态 0未启用 1启用 --> INVENT_NAME, <!-- 存货名称 -->
SPEC, <!-- 规格 --> STATUS, <!-- 状态 0未启用 1启用 -->
LENGTH, <!-- 长 --> SPEC, <!-- 规格 -->
WIDE, <!-- 宽 --> LENGTH, <!-- 长 -->
THICK, <!-- 厚 --> WIDE, <!-- 宽 -->
MATERIAL, <!-- 材质 --> THICK, <!-- 厚 -->
COEFFICIENT, <!-- 系数 --> MATERIAL, <!-- 材质 -->
UNIT, <!-- 单位 --> COEFFICIENT, <!-- 系数 -->
CREATED_BY, <!-- 创建人 --> UNIT, <!-- 单位 -->
CREATED_TIME, <!-- 创建时间 --> CREATED_BY, <!-- 创建人 -->
DEP_CODE <!-- 部门编码 --> CREATED_NAME, <!-- 创建人名称 -->
) CREATED_TIME <!-- 创建时间 -->
VALUES ( #companyCode#, #inventName#, #inventCode#, #inventType#, #status#, #spec#, #length#, #wide#, #thick#, #material#, #coefficient#, #unit#, #createdBy#, #createdTime#, #depCode#) ) VALUES (
</insert> #companyCode#, #depCode#, #inventType#, #inventCode#, #inventName#,
#status#, #spec#, #length#, #wide#, #thick#, #material#, #coefficient#,
#unit#, #createdBy#, #createdName#, #createdTime#
)
</insert>
<delete id="delete"> <delete id="delete">
DELETE FROM hpjx.t_hppz006 WHERE DELETE FROM hpjx.t_hppz006 WHERE ID = #id#
ID = #id#
</delete> </delete>
<update id="update"> <update id="update">
UPDATE hpjx.t_hppz006 UPDATE hpjx.t_hppz006
SET SET
INVENT_NAME = #inventName#, <!-- 存货名称 --> STATUS = #status#, <!-- 状态 0未启用 1启用 -->
INVENT_CODE = #inventCode#, <!-- 存货编码 --> SPEC = #spec#, <!-- 规格 -->
INVENT_TYPE = #inventType#, <!-- 存货类型 --> LENGTH = #length#, <!-- 长 -->
STATUS = #status#, <!-- 状态 0未启用 1启用 --> WIDE = #wide#, <!-- 宽 -->
SPEC = #spec#, <!-- 规格 --> THICK = #thick#, <!-- 厚 -->
LENGTH = #length#, <!-- 长 --> MATERIAL = #material#, <!-- 材质 -->
WIDE = #wide#, <!-- 宽 --> COEFFICIENT = #coefficient#, <!-- 系数 -->
THICK = #thick#, <!-- 厚 --> UNIT = #unit#, <!-- 单位 -->
MATERIAL = #material#, <!-- 材质 --> UPDATED_BY = #updatedBy#, <!-- 更新人 -->
COEFFICIENT = #coefficient#, <!-- 系数 --> UPDATED_NAME = #updatedName#, <!-- 更新人名称 -->
UNIT = #unit#, <!-- 单位 --> UPDATED_TIME = #updatedTime# <!-- 更新时间 -->
UPDATED_BY = #updatedBy#, <!-- 更新人 --> WHERE ID = #id#
UPDATED_TIME = #updatedTime# <!-- 更新时间 -->
WHERE
ID = #id#
</update> </update>
<select id="queryComboBox" parameterClass="java.util.HashMap" <select id="queryComboBox" parameterClass="java.util.HashMap" resultClass="java.util.HashMap">
resultClass="java.util.HashMap">
SELECT DISTINCT SELECT DISTINCT
ID as "id", ID as "id",
CONCAT(INVENT_CODE,'-',INVENT_NAME,'[',SPEC,']') as "inventName" CONCAT(INVENT_CODE,'-',INVENT_NAME,'[',SPEC,']') as "inventName"
FROM hpjx.t_hppz006 WHERE STATUS=1 FROM hpjx.t_hppz006 WHERE STATUS=1
<isNotEmpty prepend=" AND " property="companyCode"> <isNotEmpty prepend=" AND " property="companyCode">
COMPANY_CODE = #companyCode# COMPANY_CODE = #companyCode#
......
...@@ -4,8 +4,7 @@ import com.baosight.hpjx.core.constant.CommonConstant; ...@@ -4,8 +4,7 @@ import com.baosight.hpjx.core.constant.CommonConstant;
import com.baosight.hpjx.core.dao.DaoBase; import com.baosight.hpjx.core.dao.DaoBase;
import com.baosight.hpjx.hp.pz.domain.HPPZ007; import com.baosight.hpjx.hp.pz.domain.HPPZ007;
import com.baosight.hpjx.hp.pz.domain.HPPZ009; import com.baosight.hpjx.hp.pz.domain.HPPZ009;
import com.baosight.hpjx.hp.pz.domain.THppz004; import com.baosight.hpjx.hp.pz.domain.HPPZ004;
import com.baosight.hpjx.hp.pz.domain.THppz006;
import com.baosight.hpjx.util.AssertUtils; import com.baosight.hpjx.util.AssertUtils;
import org.springframework.util.CollectionUtils; import org.springframework.util.CollectionUtils;
...@@ -21,31 +20,33 @@ import java.util.stream.Collectors; ...@@ -21,31 +20,33 @@ import java.util.stream.Collectors;
public class HPPZTools { public class HPPZTools {
/** /**
* 查询存货名称 * 查询存货
* *
* @param inventCode * @param inventCode
* @return * @return
*/ */
public static String getInventNameByCode(String inventCode) { public static HPPZ004 getPz004ByCode(String inventCode) {
AssertUtils.isEmpty(inventCode, "存货编码不能为空"); AssertUtils.isEmpty(inventCode, "存货编码不能为空");
Map queryMap = new HashMap(); Map queryMap = new HashMap();
queryMap.put("inventCode", inventCode); queryMap.put("inventCode", inventCode);
List<THppz004> pz004s = DaoBase.getInstance().query("HPPZ004.queryMatNameByCode", queryMap); List<HPPZ004> pz004s = DaoBase.getInstance().query("HPPZ004.query", queryMap);
return CollectionUtils.isEmpty(pz004s) ? null : pz004s.get(0).getInventName(); AssertUtils.isNull(pz004s, String.format("存货编码[%s]不存在", inventCode));
return pz004s.get(0);
} }
/** /**
* 查询仓库名称 * 查询仓库
* *
* @param whCode * @param whCode
* @return * @return
*/ */
public static String getWhNameByCode(String whCode) { public static HPPZ007 getPz007ByCode(String whCode) {
AssertUtils.isEmpty(whCode, "仓库编码不能为空"); AssertUtils.isEmpty(whCode, "仓库编码不能为空");
Map queryMap = new HashMap(); Map queryMap = new HashMap();
queryMap.put("whCode", whCode); queryMap.put("whCode", whCode);
List<HPPZ007> pz007s = DaoBase.getInstance().query("HPPZ007.queryByWhCode", queryMap); List<HPPZ007> pz007s = DaoBase.getInstance().query("HPPZ007.queryByWhCode", queryMap);
return CollectionUtils.isEmpty(pz007s) ? null : pz007s.get(0).getWhName(); AssertUtils.isNull(pz007s, String.format("仓库编码[%s]不存在", whCode));
return pz007s.get(0);
} }
/** /**
...@@ -54,7 +55,7 @@ public class HPPZTools { ...@@ -54,7 +55,7 @@ public class HPPZTools {
* @param inventCodes * @param inventCodes
* @return * @return
*/ */
public static List<THppz004> listPz004(List<String> inventCodes) { public static List<HPPZ004> listPz004(List<String> inventCodes) {
if (CollectionUtils.isEmpty(inventCodes)) { if (CollectionUtils.isEmpty(inventCodes)) {
return null; return null;
} }
...@@ -69,12 +70,12 @@ public class HPPZTools { ...@@ -69,12 +70,12 @@ public class HPPZTools {
* @param inventCodes * @param inventCodes
* @return * @return
*/ */
public static Map<String, THppz004> mapPz004(List<String> inventCodes) { public static Map<String, HPPZ004> mapPz004(List<String> inventCodes) {
List<THppz004> pz004s = listPz004(inventCodes); List<HPPZ004> pz004s = listPz004(inventCodes);
if (CollectionUtils.isEmpty(pz004s)) { if (CollectionUtils.isEmpty(pz004s)) {
return null; return null;
} }
return pz004s.stream().collect(Collectors.toMap(THppz004::getInventCode, item -> item)); return pz004s.stream().collect(Collectors.toMap(HPPZ004::getInventCode, item -> item));
} }
/** /**
......
...@@ -3,9 +3,7 @@ import com.baosight.hpjx.common.DdynamicEnum; ...@@ -3,9 +3,7 @@ import com.baosight.hpjx.common.DdynamicEnum;
import com.baosight.hpjx.core.dao.DaoUtils; import com.baosight.hpjx.core.dao.DaoUtils;
import com.baosight.hpjx.hp.constant.HPConstant; import com.baosight.hpjx.hp.constant.HPConstant;
import com.baosight.hpjx.hp.kc.domain.HPKC008; import com.baosight.hpjx.hp.kc.domain.HPKC008;
import com.baosight.hpjx.hp.pz.domain.THppz004;
import com.baosight.hpjx.hp.sc.domain.THPSC001; import com.baosight.hpjx.hp.sc.domain.THPSC001;
import com.baosight.hpjx.hp.sc.domain.THPSC002;
import com.baosight.hpjx.hp.zl.domain.HPZL001; import com.baosight.hpjx.hp.zl.domain.HPZL001;
import com.baosight.hpjx.util.CommonMethod; import com.baosight.hpjx.util.CommonMethod;
import com.baosight.hpjx.util.EiInfoUtils; import com.baosight.hpjx.util.EiInfoUtils;
......
...@@ -129,10 +129,9 @@ $(function() { ...@@ -129,10 +129,9 @@ $(function() {
}); });
/** /**
* 查询 * 页面加载时执行
*/ */
let query = function () { $(window).load(function () {
resultGrid.dataSource.page(1); // 点击查询按钮,从第1页开始查询
// 存货名称 // 存货名称
let eiInfo = new EiInfo(); let eiInfo = new EiInfo();
EiCommunicator.send("HPPZ004", "queryComboBox", eiInfo, { EiCommunicator.send("HPPZ004", "queryComboBox", eiInfo, {
...@@ -150,6 +149,15 @@ let query = function () { ...@@ -150,6 +149,15 @@ let query = function () {
onFail: function (ei) { onFail: function (ei) {
} }
}, {async: false}); }, {async: false});
// 查询
query();
});
/**
* 查询
*/
let query = function () {
resultGrid.dataSource.page(1); // 点击查询按钮,从第1页开始查询
} }
/** /**
......
$(function() { $(function() {
// 查询 // 查询
$("#QUERY").on("click", function () { $("#QUERY").on("click", query);
resultGrid.dataSource.page(1); // 点击查询按钮,从第1页开始查询
});
IPLATUI.EFGrid.result = { IPLATUI.EFGrid.result = {
pageable: { pageable: {
pageSize: 20, pageSize: 20,
pageSizes: [10, 20, 30, 50, 100, 200], pageSizes: [10, 20, 30, 50, 100, 200]
}, }
}
} });
/**
* 页面加载时执行
*/
$(window).load(function () {
// 查询
query();
}); });
/**
* 查询
*/
let query = function () {
resultGrid.dataSource.page(1);
}
...@@ -5,50 +5,41 @@ ...@@ -5,50 +5,41 @@
<c:set var="ctx" value="${pageContext.request.contextPath}"/> <c:set var="ctx" value="${pageContext.request.contextPath}"/>
<EF:EFPage title="存货类型"> <EF:EFPage title="存货类型">
<EF:EFRegion id="inqu" title="查询条件">
<EF:EFRegion id="inqu" title="查询条件"> <div class="row">
<div class="row"> <EF:EFInput cname="存货名称" ename="inventName" blockId="inqu_status" row="0" colWidth="3"/>
<EF:EFSelect ename="inqu_status-0-inventType" cname="存货类型" colWidth="4" <EF:EFSelect cname="存货类型" ename="inventType" blockId="inqu_status" row="0" colWidth="3" filter="contains"
template="#=valueField#-#=textField#" valueTemplate="#=valueField#-#=textField#" enable="true"> defaultValue="">
<EF:EFOption label="全部" value=""/> <EF:EFOption label="请选择" value=""/>
<EF:EFOptions blockId="customer_type_block_id" textField="valueField" valueField="textField"/> <EF:EFCodeOption codeName="hpjx.hpkc.inventType"/>
</EF:EFSelect> </EF:EFSelect>
<EF:EFSelect ename="inqu_status-0-status" cname="状态" colWidth="4" <EF:EFSelect cname="状态" ename="inqu_status-0-status" colWidth="3"
template="#=valueField#-#=textField#" valueTemplate="#=valueField#-#=textField#" enable="true"> template="#=valueField#-#=textField#" valueTemplate="#=valueField#-#=textField#">
<EF:EFOption label="全部" value=""/> <EF:EFOption label="全部" value=""/>
<EF:EFOptions blockId="initiate_mode_block_id" textField="valueField" valueField="textField"/> <EF:EFCodeOption codeName="hpjx.hpjx.status"/>
</EF:EFSelect> </EF:EFSelect>
</div> </div>
<EF:EFButton ename="QUERY" cname="查询" row="1" class="btn-align-right"></EF:EFButton> </EF:EFRegion>
</EF:EFRegion>
<EF:EFRegion id="result" title="明细信息">
<EF:EFGrid blockId="result" autoDraw="false" isFloat="true" autoFit="true">
<EF:EFColumn ename="id" cname="内码" hidden="true"/>
<EF:EFColumn ename="inventCode" cname="类型编码" width="100" readonly="false" required="true"/>
<EF:EFColumn ename="inventName" cname="存货名称" width="100" readonly="false" required="true"/>
<EF:EFComboColumn ename="inventType" cname="存货类型" align="center"
blockName="customer_type_block_id"
columnTemplate="#=textField#-#=valueField#" optionLabel=" "
itemTemplate="#=textField#-#=valueField#" textField="valueField"
valueField="textField" width="100" required="true">
</EF:EFComboColumn>
<EF:EFComboColumn ename="status" cname="状态" align="center"
blockName="initiate_mode_block_id"
columnTemplate="#=textField#-#=valueField#" optionLabel=" "
itemTemplate="#=textField#-#=valueField#" textField="valueField"
valueField="textField" width="100" required="true">
</EF:EFComboColumn>
<EF:EFColumn ename="createdTime" cname="创建时间" readonly="true" width="100" align="center" enable="false"
parseFormats="['yyyyMMddHHmmss']" editType="datetime" dateFormat="yyyy-MM-dd HH:mm:ss" />
<EF:EFColumn ename="createdBy" cname="创建人" width="100" readonly="true" disabled="true"/>
<EF:EFColumn ename="updatedTime" cname="更新时间" readonly="true" width="100" align="center" enable="false"
parseFormats="['yyyyMMddHHmmss']" editType="datetime" dateFormat="yyyy-MM-dd HH:mm:ss" />
<EF:EFColumn ename="updatedBy" cname="更新人" width="100" readonly="true" disabled="true"/>
</EF:EFGrid>
</EF:EFRegion>
<EF:EFRegion id="result" title="明细信息">
<EF:EFGrid blockId="result" autoDraw="false" isFloat="true" autoFit="true">
<EF:EFColumn ename="id" cname="内码" hidden="true"/>
<EF:EFColumn ename="inventCode" cname="存货编码" enable="false" width="100" align="center"/>
<EF:EFColumn ename="inventName" cname="存货名称" width="120" required="true"/>
<EF:EFComboColumn ename="inventType" cname="存货类型" width="90" align="center">
<EF:EFCodeOption codeName="hpjx.hpkc.inventType"/>
</EF:EFComboColumn>
<EF:EFComboColumn ename="status" cname="状态" align="center" width="100" required="true">
<EF:EFCodeOption codeName="hpjx.hpjx.status"/>
</EF:EFComboColumn>
<EF:EFColumn ename="createdName" cname="创建人名称" enable="false" width="100" align="center"/>
<EF:EFColumn ename="createdTime" cname="创建时间" enable="false" width="140" align="center"
parseFormats="['yyyyMMddHHmmss']" editType="datetime" dateFormat="yyyy-MM-dd HH:mm:ss"/>
<EF:EFColumn ename="updatedName" cname="更新人名称" enable="false" width="100" align="center"/>
<EF:EFColumn ename="updatedTime" cname="更新时间" enable="false" width="140" align="center"
parseFormats="['yyyyMMddHHmmss']" editType="datetime" dateFormat="yyyy-MM-dd HH:mm:ss"/>
</EF:EFGrid>
</EF:EFRegion>
</EF:EFPage> </EF:EFPage>
var inventNameGlobalData = [];
$(function() { $(function() {
// 查询 // 查询
$("#QUERY").on("click", function () { $("#QUERY").on("click", query);
resultGrid.dataSource.page(1); // 点击查询按钮,从第1页开始查询
});
IPLATUI.EFGrid.result = { IPLATUI.EFGrid.result = {
pageable: { pageable: {
pageSize: 20, pageSize: 20,
pageSizes: [10, 20, 30, 50, 100, 200], pageSizes: [10, 20, 30, 50, 100, 200]
}, },
columns: [{
field: "inventCode",
template: function (dataItem) {
for (let i = 0; i < inventNameGlobalData.length; i++) {
if (inventNameGlobalData[i]['valueField'] === dataItem['inventCode']) {
return inventNameGlobalData[i]['textField'];
}
}
return "";
},
editor: function (container, options) {
var grid = container.closest(".k-grid").data("kendoGrid");
var cellIndex = grid.cellIndex(container);
var input = $('<input />');
input.attr("name", options.field);
input.attr("id", options.field);
input.appendTo(container);
let eiInfo = new EiInfo();
eiInfo.set("inventType", options.model["inventType"]);
var dataSource;
EiCommunicator.send("HPPZ004", "queryComboBox", eiInfo, {
onSuccess: function (ei) {
dataSource = ei.getBlock("invent_name_block_id").getMappedRows();
},
onFail: function (ei) {
}
}, {async: false});
input.kendoDropDownList({
valuePrimitive: true,
dataTextField: "textField",
dataValueField: "valueField",
dataSource: dataSource,
template: "#=textField#"
});
}
}]
}
} });
/**
* 页面加载时执行
*/
$(window).load(function () {
// 存货名称
let inInfo = new EiInfo();
EiCommunicator.send("HPPZ004", "queryComboBox", inInfo, {
onSuccess: function (ei) {
inventNameGlobalData = ei.getBlock("invent_name_block_id").getMappedRows();
},
onFail: function (ei) {
}
}, {async: false});
// 查询
query();
}); });
/**
* 查询
*/
let query = function () {
resultGrid.dataSource.page(1);
}
...@@ -6,81 +6,55 @@ ...@@ -6,81 +6,55 @@
<c:set var="ctx" value="${pageContext.request.contextPath}"/> <c:set var="ctx" value="${pageContext.request.contextPath}"/>
<EF:EFPage title="存货档案"> <EF:EFPage title="存货档案">
<EF:EFRegion id="inqu" title="查询条件"> <EF:EFRegion id="inqu" title="查询条件">
<div class="row"> <div class="row">
<EF:EFSelect ename="inqu_status-0-inventName" cname="存货名称" <EF:EFSelect cname="存货类型" ename="inventType" blockId="inqu_status" row="0" colWidth="3" filter="contains"
valueTemplate="#=textField#" defaultValue="">
template="#=textField#" <EF:EFOption label="请选择" value=""/>
textField="textField" <EF:EFCodeOption codeName="hpjx.hpkc.inventType"/>
valueField="valueField" </EF:EFSelect>
required="true" <EF:EFSelect ename="inqu_status-0-inventCode" cname="存货名称" colWidth="3" filter="contains">
locked="true" <EF:EFOption label="--全部--" value=""/>
filter="contains"> <EF:EFOptions blockId="invent_name_block_id" textField="textField" valueField="valueField"/>
<EF:EFOption label="--全部--" value=""/> </EF:EFSelect>
<EF:EFOptions blockId="invent_name_block_id" textField="textField" valueField="valueField"/> <EF:EFSelect cname="状态" ename="inqu_status-0-status" colWidth="3"
</EF:EFSelect> template="#=valueField#-#=textField#" valueTemplate="#=valueField#-#=textField#">
<EF:EFOption label="全部" value=""/>
<EF:EFSelect ename="inqu_status-0-inventType" cname="存货类型" colWidth="4" <EF:EFCodeOption codeName="hpjx.hpjx.status"/>
template="#=valueField#-#=textField#" valueTemplate="#=valueField#-#=textField#" enable="true"> </EF:EFSelect>
<EF:EFOption label="全部" value=""/> </div>
<EF:EFOptions blockId="customer_type_block_id" textField="valueField" valueField="textField"/>
</EF:EFSelect>
<EF:EFSelect ename="inqu_status-0-status" cname="状态" colWidth="4"
template="#=valueField#-#=textField#" valueTemplate="#=valueField#-#=textField#" enable="true">
<EF:EFOption label="全部" value=""/>
<EF:EFOptions blockId="initiate_mode_block_id" textField="valueField" valueField="textField"/>
</EF:EFSelect>
</div>
<EF:EFButton ename="QUERY" cname="查询" row="1" class="btn-align-right"></EF:EFButton>
</EF:EFRegion> </EF:EFRegion>
<EF:EFRegion id="result" title="明细信息"> <EF:EFRegion id="result" title="明细信息">
<EF:EFGrid blockId="result" autoDraw="false" isFloat="true" autoFit="true"> <EF:EFGrid blockId="result" autoDraw="false" isFloat="true" autoFit="true">
<EF:EFColumn ename="id" cname="内码" hidden="true"/>
<EF:EFColumn ename="id" cname="内码" hidden="true"/> <EF:EFComboColumn ename="inventType" cname="存货类型" width="120" align="center">
<EF:EFCodeOption codeName="hpjx.hpkc.inventType"/>
<EF:EFComboColumn ename="inventName" cname="存货名称" </EF:EFComboColumn>
columnTemplate="#=textField#" <EF:EFColumn ename="inventCode" cname="存货名称" width="120" align="center"/>
itemTemplate="#=textField#" <EF:EFColumn ename="spec" cname="规格" width="120" align="center" maxLength="50"
blockName="invent_name_block_id" required="true"/>
textField="textField" <EF:EFColumn ename="length" cname="长" width="100" align="right" format="{0:N2}" maxLength="10"
valueField="textField" required="true"/>
maxLength="20" <EF:EFColumn ename="wide" cname="宽" width="100" align="right" format="{0:N2}" maxLength="10"
readonly="false" required="true"/>
style="color:blue;" <EF:EFColumn ename="thick" cname="厚" width="100" align="right" format="{0:N2}" maxLength="10"
required="true" required="true"/>
filter="contains" <EF:EFColumn ename="material" cname="材质" width="100" align="center" required="true"/>
width="150"> <EF:EFColumn ename="coefficient" cname="系数" width="100" align="right" format="{0:N2}" maxLength="10"
</EF:EFComboColumn> required="true"/>
<EF:EFColumn ename="unit" cname="单位" width="100" align="center" required="true"/>
<EF:EFComboColumn ename="inventType" cname="存货类型" align="center" <EF:EFComboColumn ename="status" cname="状态" align="center" width="100" required="true">
blockName="customer_type_block_id" <EF:EFCodeOption codeName="hpjx.hpjx.status"/>
columnTemplate="#=textField#-#=valueField#" optionLabel=" " </EF:EFComboColumn>
itemTemplate="#=textField#-#=valueField#" textField="valueField" <EF:EFColumn ename="createdName" cname="创建人名称" enable="false" width="100" align="center"/>
valueField="textField" width="100" required="true"> <EF:EFColumn ename="createdTime" cname="创建时间" enable="false" width="140" align="center"
</EF:EFComboColumn> parseFormats="['yyyyMMddHHmmss']" editType="datetime" dateFormat="yyyy-MM-dd HH:mm:ss"/>
<EF:EFColumn ename="spec" cname="规格" width="100" readonly="false" required="true"/> <EF:EFColumn ename="updatedName" cname="更新人名称" enable="false" width="100" align="center"/>
<EF:EFColumn ename="length" cname="长" width="100" readonly="false" required="true"/> <EF:EFColumn ename="updatedTime" cname="更新时间" enable="false" width="140" align="center"
<EF:EFColumn ename="wide" cname="宽" width="100" readonly="false" required="true"/> parseFormats="['yyyyMMddHHmmss']" editType="datetime" dateFormat="yyyy-MM-dd HH:mm:ss"/>
<EF:EFColumn ename="thick" cname="厚" width="100" readonly="false" required="true"/> </EF:EFGrid>
<EF:EFColumn ename="material" cname="材质" width="100" readonly="false" required="true"/> </EF:EFRegion>
<EF:EFColumn ename="coefficient" cname="系数" width="100" readonly="false" required="true"/>
<EF:EFColumn ename="unit" cname="单位" width="100" readonly="false" required="true"/>
<EF:EFComboColumn ename="status" cname="状态" align="center"
blockName="initiate_mode_block_id"
columnTemplate="#=textField#-#=valueField#" optionLabel=" "
itemTemplate="#=textField#-#=valueField#" textField="valueField"
valueField="textField" width="100" required="true">
</EF:EFComboColumn>
<EF:EFColumn ename="createdTime" cname="创建时间" readonly="true" width="100" align="center" enable="false"
parseFormats="['yyyyMMddHHmmss']" editType="datetime" dateFormat="yyyy-MM-dd HH:mm:ss" />
<EF:EFColumn ename="createdBy" cname="创建人" width="100" readonly="true" disabled="true"/>
<EF:EFColumn ename="updatedTime" cname="更新时间" readonly="true" width="100" align="center" enable="false"
parseFormats="['yyyyMMddHHmmss']" editType="datetime" dateFormat="yyyy-MM-dd HH:mm:ss" />
<EF:EFColumn ename="updatedBy" cname="更新人" width="100" readonly="true" disabled="true"/>
</EF:EFGrid>
</EF:EFRegion>
</EF:EFPage> </EF:EFPage>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment