Commit bfa228d6 authored by 刘学辉's avatar 刘学辉

产品主数据接口增加日志

parent e45dd6cb
......@@ -270,7 +270,8 @@ public class NonProdApplyController extends CommonController {
resultMap.put("type", "S");
resultMap.put("message","成功");
resultMap.put("businessType", "接收SAP产品数据");
resultMap.put("businessId",prodApplyFromSapVO.getMatnr().substring(0,32));
resultMap.put("businessId",prodApplyFromSapVO.getMatnr().length()>31?prodApplyFromSapVO.getMatnr().substring(0,31):prodApplyFromSapVO.getMatnr());
resultMap.put("parameter", JSON.toJSONString(prodApplyFromSapVO));
String message="";
try {
......
......@@ -339,8 +339,8 @@ public class ProdApplyFromSapVO {
/**
* 销售项次组
*/
@JsonProperty("MTPOS")
private String mtpos;
// @JsonProperty("MTPOS")
// private String mtpos;
/**
* 运输组
......
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