Commit 4e39db45 authored by 曲欣红's avatar 曲欣红

1

parent 27a35219
......@@ -87,17 +87,19 @@ public class MaterialMasterServiceImpl implements MaterialMasterService {
goods.put("PUBLIC", element.elementText("PUBLIC"));
goods.put("INTERNET", element.elementText("INTERNET"));
/*******************新增字段,样例中没有******************/
/*********************缺*********************/
goods.put("CATEGORY_NAME", "");
goods.put("PRODUCTION_LINE_CODE", "");
goods.put("MSTAV", "");
goods.put("BARCODE", "");
goods.put("TAX_RATE", 0);
goods.put("PRODUCTION_LINE_NAME", "");
goods.put("GOODS_KEY", "");
goods.put("SEND_TIME", new Date());
goods.put("DIS_UPDATE_STATUS", "N");
goods.put("CATEGORY_NAME", "");//品类名称
goods.put("PRODUCTION_LINE_CODE", "");//产线(产地)编码
goods.put("PRODUCTION_LINE_NAME", "");//产线(产地)名称
goods.put("MSTAV", "");//停产标志2
goods.put("BARCODE", "");//物料条码
goods.put("TAX_RATE", 0);//税率
goods.put("GOODS_KEY", "");//物料唯一码
goods.put("SEND_TIME", new Date());//发送时间
goods.put("DIS_UPDATE_STATUS", "N");//分销商更新结果(Y成功,N失败)
/*********************缺*********************/
/***************item**************/
/**
* 数据库没有数据追踪号对应字段TRACE_NO
......
......@@ -76,9 +76,11 @@ public class PriceListServiceImpl implements PriceListService {
priceObj.put("PLINE", element.elementText("PLINE"));
priceObj.put("PRSCH_1", StringUtil.toDouble(element.elementText("PRSCH_1")));
/**********item***********/
/***********缺**************/
priceObj.put("SEND_DATE", new Date());
priceObj.put("SEND_DATE", new Date());//发送时间
/***********缺**************/
priceObj.put("SEND_STATUS", "N");
String BATCH = (String) priceObj.get("BATCH");
if(BATCH==null||"".equals(BATCH.trim())) {
......
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