|
|
@@ -1,16 +1,5 @@
|
|
|
package com.uas.platform.b2b.erp.controller;
|
|
|
|
|
|
-import java.io.UnsupportedEncodingException;
|
|
|
-import java.net.URLDecoder;
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.stereotype.Controller;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
-import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
-
|
|
|
import com.uas.platform.b2b.erp.model.MessageLog;
|
|
|
import com.uas.platform.b2b.erp.model.Purchase;
|
|
|
import com.uas.platform.b2b.erp.model.PurchaseDetailEnd;
|
|
|
@@ -20,6 +9,16 @@ import com.uas.platform.b2b.erp.support.ErpBufferedLogger;
|
|
|
import com.uas.platform.b2b.service.PurchaseOrderService;
|
|
|
import com.uas.platform.core.logging.BufferedLoggerManager;
|
|
|
import com.uas.platform.core.util.serializer.FlexJsonUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
+
|
|
|
+import java.io.UnsupportedEncodingException;
|
|
|
+import java.net.URLDecoder;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* 对买家ERP的数据接口<br>
|
|
|
@@ -49,11 +48,12 @@ public class PurchaseController {
|
|
|
*/
|
|
|
@RequestMapping(method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
- public void savePurchases(@RequestParam("data") String data) throws UnsupportedEncodingException {
|
|
|
+ public List<Purchase> savePurchases(@RequestParam("data") String data) throws UnsupportedEncodingException {
|
|
|
String jsonStr = URLDecoder.decode(data, "UTF-8");
|
|
|
List<Purchase> purchases = FlexJsonUtils.fromJsonArray(jsonStr, Purchase.class);
|
|
|
purchaseOrderService.save(purchaseService.convertPurchase(purchases));
|
|
|
logger.log("采购单", "上传采购单", purchases.size());
|
|
|
+ return purchaseService.getB2bId(purchases);
|
|
|
}
|
|
|
|
|
|
/**
|