Commit 56b439aa authored by Quxl's avatar Quxl

x

parent ed5d0351
......@@ -42,6 +42,9 @@ public class ConfirmQuotationServiceImpl implements ConfirmQuotationService {
@Value("${xmlRoot}")
private String xmlRoot;
@Value("${systemId}")
private String systemId;
@Override
@Transactional
public void execute(Z_MT_SD_008_SO_CONFIRM_QUOTATION Z_MT_SD_008_SO_CONFIRM_QUOTATION) {
......@@ -93,7 +96,7 @@ public class ConfirmQuotationServiceImpl implements ConfirmQuotationService {
}
header.put("BATCH", dateString + "-" + common.getNextval("T_SO_CONFIRMACTION_HEADER_BATCH_" + KUNNR));
header.put("CREATED", now);
header.put("CREATEBY", "system");
header.put("CREATEBY", systemId);
String idIndex = StringUtil.format(common.getNextval("T_SO_CONFIRMATION_HEADER_ID_"+dateString), "00000");
Long hID = Long.valueOf(time+idIndex);
header.put("ID", hID);
......@@ -128,7 +131,7 @@ public class ConfirmQuotationServiceImpl implements ConfirmQuotationService {
itemData.put("POSTL_CODE1_I", id.getPOSTL_COD1_I());
itemData.put("CITY1_I", id.getCITY1_I());
itemData.put("CREATED", now);
itemData.put("CREATEBY", "system");
itemData.put("CREATEBY", systemId);
String iidIndex = StringUtil.format(common.getNextval("T_SO_CONFIRMATION_ITEM_DATA_ID_"+dateString), "00000");
Long iID = Long.valueOf(time+iidIndex);
itemData.put("ID", iID);
......@@ -151,7 +154,7 @@ public class ConfirmQuotationServiceImpl implements ConfirmQuotationService {
itemPricing.put("KBETR", StringUtil.toDouble(ip.getKBETR()));
itemPricing.put("KWERT", StringUtil.toDouble(ip.getKWERT()));
itemPricing.put("CREATED", now);
itemPricing.put("CREATEBY", "system");
itemPricing.put("CREATEBY", systemId);
String itemPricingID = StringUtil.format(common.getNextval("T_SO_CONFIRMATION_ITEM_PRICING_ID_"+dateString), "00000");
itemPricing.put("ID", Long.valueOf(time+itemPricingID));
insertTo(itemPricing, "t_so_confirmation_item_pricing");
......
......@@ -36,6 +36,9 @@ public class DNDeletionServiceImpl implements DNDeletionService {
@Value("${xmlRoot}")
private String xmlRoot;
@Value("${systemId}")
private String systemId;
@Override
@Transactional
public void execute(DELETED_DOCUMENTS DELETED_DOCUMENTS) {
......@@ -62,9 +65,9 @@ public class DNDeletionServiceImpl implements DNDeletionService {
map.put("TRACE_NO", "sapsodndeletion" + DateUtil.formatDate(now, DateUtil.FMT_DATETIME));
map.put("SEND_STATUS", "N");
map.put("CREATED", now);
map.put("CREATEBY", "system");
map.put("CREATEBY", systemId);
map.put("UPDATED", now);
map.put("UPDATEBY", "system");
map.put("UPDATEBY", systemId);
Sql headerSql = SqlUtil.insertSql("t_so_dn_deletion", map);
jdbcTemplate.update(headerSql.getSql(), headerSql.getArgs());
} catch (Exception e) {
......
......@@ -40,6 +40,9 @@ public class MaterialMasterServiceImpl implements MaterialMasterService {
@Value("${xmlRoot}")
private String xmlRoot;
@Value("${systemId}")
private String systemId;
@Override
@Transactional
public void execute(Z_MT_SD_001_MATERIAL_MASTER Z_MT_SD_001_MATERIAL_MASTER) {
......@@ -137,7 +140,7 @@ public class MaterialMasterServiceImpl implements MaterialMasterService {
private void updateGoods(Map<String, Object> goods) {
goods.put("UPDATED", new Date());
goods.put("UPDATEBY", "system");
goods.put("UPDATEBY", systemId);
String sql = "update t_ven_goods set ";
List<Object> args = new ArrayList<>();
......@@ -163,7 +166,7 @@ public class MaterialMasterServiceImpl implements MaterialMasterService {
Long ID = Long.valueOf(time+idIndex);
goods.put("ID", ID);
goods.put("CREATED", DateUtil.formatDate(now, DateUtil.FMT_DATE_TIME)/* datetimef.format(new Date()) */);
goods.put("CREATEBY", "system");
goods.put("CREATEBY", systemId);
String insertSql = "insert into t_ven_goods ";
String fieldSql = "(";
......
......@@ -51,6 +51,9 @@ public class PrformaInvoiceServiceImpl implements PrformaInvoiceService {
@Value("${xmlRoot}")
private String xmlRoot;
@Value("${systemId}")
private String systemId;
@Override
@Transactional
public void execute(Z_MT_SD_005_PERFORM_INVOICE Z_MT_SD_005_PERFORM_INVOICE) {
......@@ -157,7 +160,7 @@ public class PrformaInvoiceServiceImpl implements PrformaInvoiceService {
headMap.put("BATCH", dateString + "-" + common.getNextval("T_PERFORM_INVOICE_HEADER_BATCH_" + BATCH_CODE));
headMap.put("TRACE_NO", "sapproformainvoice" + DateUtil.formatDate(now, DateUtil.FMT_DATETIME));
headMap.put("CREATED", now);
headMap.put("CREATEBY", "system");
headMap.put("CREATEBY", systemId);
List<Map<String, Object>> itemDatas = new ArrayList<Map<String, Object>>();
if(itemList != null) {
......@@ -239,7 +242,7 @@ public class PrformaInvoiceServiceImpl implements PrformaInvoiceService {
}
}
itemDataMap.put("CREATED", now);
itemDataMap.put("CREATEBY", "system");
itemDataMap.put("CREATEBY", systemId);
itemDatas.add(itemDataMap);
}
}
......
......@@ -40,6 +40,9 @@ public class PriceListServiceImpl implements PriceListService {
@Value("${xmlRoot}")
private String xmlRoot;
@Value("${systemId}")
private String systemId;
@Override
@Transactional
public void execute(Z_MT_SD_002_PRICE_LIST Z_MT_SD_002_PRICE_LIST) {
......@@ -122,7 +125,7 @@ public class PriceListServiceImpl implements PriceListService {
}
private void updatePriceObj(Map<String, Object> priceObj) {
priceObj.put("UPDATEBY", "system");
priceObj.put("UPDATEBY", systemId);
priceObj.put("UPDATED", new Date());
String sql = "update t_price_list set ";
......@@ -149,7 +152,7 @@ public class PriceListServiceImpl implements PriceListService {
Long ID = Long.valueOf(time + idIndex);
priceObj.put("ID", ID);
priceObj.put("CREATED", now);
priceObj.put("CREATEBY", "system");
priceObj.put("CREATEBY", systemId);
String insertSql = "insert into t_price_list ";
String fieldSql = "(";
......
......@@ -46,6 +46,9 @@ public class ShippingNotificationServiceImpl implements ShippingNotificationServ
@Value("${xmlRoot}")
private String xmlRoot;
@Value("${systemId}")
private String systemId;
@Override
@Transactional
public void execute(Z_MT_SD_007_SHIPPING_NOTFIRMATION_FILE Z_MT_SD_007_SHIPPING_NOTFIRMATION_FILE) {
......@@ -112,7 +115,7 @@ public class ShippingNotificationServiceImpl implements ShippingNotificationServ
header.put("SEND_STATUS", "N");
header.put("TRACE_NO", "sapshippingnotification"+DateUtil.formatDate(now, DateUtil.FMT_DATETIME));
header.put("CREATED", now);
header.put("CREATEBY", "system");
header.put("CREATEBY", systemId);
Long hID = Long.valueOf(time+StringUtil.format(common.getNextval("T_SHIPPING_NOTIFICATION_HEADER_ID_"+dateString), "00000"));
header.put("ID", hID);
insertTo(header, "t_shipping_notification_header");
......@@ -160,7 +163,7 @@ public class ShippingNotificationServiceImpl implements ShippingNotificationServ
}
}
item.put("CREATED", now);
item.put("CREATEBY", "system");
item.put("CREATEBY", systemId);
insertTo(item, "t_shipping_notification_item");
}
}
......
xmlRoot: xml
systemId: system
server:
port: 8080
spring:
......
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