完善单据明细导入接口的逻辑
This commit is contained in:
@@ -1114,65 +1114,72 @@ public class DepotItemService {
|
||||
return depotItemMapperEx.getCountByMaterialAndDepot(mId, depotId);
|
||||
}
|
||||
|
||||
public JSONObject parseMapByExcelData(String barCodes, Map<String, Map<String, String>> barCodeNumMap, String prefixNo) {
|
||||
public JSONObject parseMapByExcelData(String barCodes, List<Map<String, String>> detailList, String prefixNo) {
|
||||
JSONObject map = new JSONObject();
|
||||
try {
|
||||
JSONArray arr = new JSONArray();
|
||||
List<MaterialVo4Unit> list = depotItemMapperEx.getBillItemByParam(barCodes);
|
||||
for (MaterialVo4Unit m: list) {
|
||||
Map<String, MaterialVo4Unit> materialMap = new HashMap<>();
|
||||
for (MaterialVo4Unit material: list) {
|
||||
materialMap.put(material.getmBarCode(), material);
|
||||
}
|
||||
for (Map<String, String> detailMap: detailList) {
|
||||
JSONObject item = new JSONObject();
|
||||
item.put("barCode", m.getmBarCode());
|
||||
item.put("name", m.getName());
|
||||
item.put("standard", m.getStandard());
|
||||
if(StringUtil.isNotEmpty(m.getModel())) {
|
||||
item.put("model", m.getModel());
|
||||
}
|
||||
if(StringUtil.isNotEmpty(m.getColor())) {
|
||||
item.put("color", m.getColor());
|
||||
}
|
||||
if(StringUtil.isNotEmpty(m.getSku())) {
|
||||
item.put("sku", m.getSku());
|
||||
}
|
||||
BigDecimal stock = depotItemMapperEx.getCurrentStockByParam(null, m.getId());
|
||||
item.put("stock", stock);
|
||||
item.put("unit", m.getCommodityUnit());
|
||||
Map<String, String> materialMap = barCodeNumMap.get(m.getmBarCode());
|
||||
BigDecimal operNumber = BigDecimal.ZERO;
|
||||
BigDecimal unitPrice = BigDecimal.ZERO;
|
||||
BigDecimal taxRate = BigDecimal.ZERO;
|
||||
if(materialMap.get("num")!=null) {
|
||||
operNumber = new BigDecimal(materialMap.get("num"));
|
||||
}
|
||||
if(StringUtil.isNotEmpty(materialMap.get("unitPrice"))) {
|
||||
unitPrice = new BigDecimal(materialMap.get("unitPrice"));
|
||||
} else {
|
||||
if("CGDD".equals(prefixNo)) {
|
||||
unitPrice = m.getPurchaseDecimal();
|
||||
} else if("XSDD".equals(prefixNo)) {
|
||||
unitPrice = m.getWholesaleDecimal();
|
||||
String barCode = detailMap.get("barCode");
|
||||
MaterialVo4Unit m = materialMap.get(barCode);
|
||||
if(m!=null) {
|
||||
item.put("barCode", barCode);
|
||||
item.put("name", m.getName());
|
||||
item.put("standard", m.getStandard());
|
||||
if(StringUtil.isNotEmpty(m.getModel())) {
|
||||
item.put("model", m.getModel());
|
||||
}
|
||||
if(StringUtil.isNotEmpty(m.getColor())) {
|
||||
item.put("color", m.getColor());
|
||||
}
|
||||
if(StringUtil.isNotEmpty(m.getSku())) {
|
||||
item.put("sku", m.getSku());
|
||||
}
|
||||
BigDecimal stock = depotItemMapperEx.getCurrentStockByParam(null, m.getId());
|
||||
item.put("stock", stock);
|
||||
item.put("unit", m.getCommodityUnit());
|
||||
BigDecimal operNumber = BigDecimal.ZERO;
|
||||
BigDecimal unitPrice = BigDecimal.ZERO;
|
||||
BigDecimal taxRate = BigDecimal.ZERO;
|
||||
if(StringUtil.isNotEmpty(detailMap.get("num"))) {
|
||||
operNumber = new BigDecimal(detailMap.get("num"));
|
||||
}
|
||||
if(StringUtil.isNotEmpty(detailMap.get("unitPrice"))) {
|
||||
unitPrice = new BigDecimal(detailMap.get("unitPrice"));
|
||||
} else {
|
||||
if("CGDD".equals(prefixNo)) {
|
||||
unitPrice = m.getPurchaseDecimal();
|
||||
} else if("XSDD".equals(prefixNo)) {
|
||||
unitPrice = m.getWholesaleDecimal();
|
||||
}
|
||||
}
|
||||
if(StringUtil.isNotEmpty(detailMap.get("taxRate"))) {
|
||||
taxRate = new BigDecimal(detailMap.get("taxRate"));
|
||||
}
|
||||
String remark = detailMap.get("remark");
|
||||
item.put("operNumber", operNumber);
|
||||
item.put("unitPrice", unitPrice);
|
||||
BigDecimal allPrice = BigDecimal.ZERO;
|
||||
if(unitPrice!=null && unitPrice.compareTo(BigDecimal.ZERO)!=0) {
|
||||
allPrice = unitPrice.multiply(operNumber);
|
||||
}
|
||||
BigDecimal taxMoney = BigDecimal.ZERO;
|
||||
if(taxRate.compareTo(BigDecimal.ZERO) != 0) {
|
||||
taxMoney = taxRate.multiply(allPrice).divide(BigDecimal.valueOf(100), 2, BigDecimal.ROUND_HALF_UP);
|
||||
}
|
||||
BigDecimal taxLastMoney = allPrice.add(taxMoney);
|
||||
item.put("allPrice", allPrice);
|
||||
item.put("taxRate", taxRate);
|
||||
item.put("taxMoney", taxMoney);
|
||||
item.put("taxLastMoney", taxLastMoney);
|
||||
item.put("remark", remark);
|
||||
arr.add(item);
|
||||
}
|
||||
if(materialMap.get("taxRate")!=null) {
|
||||
taxRate = new BigDecimal(materialMap.get("taxRate"));
|
||||
}
|
||||
String remark = materialMap.get("remark");
|
||||
item.put("operNumber", operNumber);
|
||||
item.put("unitPrice", unitPrice);
|
||||
BigDecimal allPrice = BigDecimal.ZERO;
|
||||
if(unitPrice!=null && unitPrice.compareTo(BigDecimal.ZERO)!=0) {
|
||||
allPrice = unitPrice.multiply(operNumber);
|
||||
}
|
||||
BigDecimal taxMoney = BigDecimal.ZERO;
|
||||
if(taxRate.compareTo(BigDecimal.ZERO) != 0) {
|
||||
taxMoney = taxRate.multiply(allPrice).divide(BigDecimal.valueOf(100), 2, BigDecimal.ROUND_HALF_UP);
|
||||
}
|
||||
BigDecimal taxLastMoney = allPrice.add(taxMoney);
|
||||
item.put("allPrice", allPrice);
|
||||
item.put("taxRate", taxRate);
|
||||
item.put("taxMoney", taxMoney);
|
||||
item.put("taxLastMoney", taxLastMoney);
|
||||
item.put("remark", remark);
|
||||
arr.add(item);
|
||||
}
|
||||
map.put("rows", arr);
|
||||
} catch (Exception e) {
|
||||
|
||||
Reference in New Issue
Block a user