|
|
@@ -1,11 +1,14 @@
|
|
|
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.QuotationDown;
|
|
|
@@ -16,7 +19,7 @@ import com.uas.platform.b2b.service.PurchaseInquiryService;
|
|
|
* 对卖家ERP的数据接口
|
|
|
*
|
|
|
* @author yingp
|
|
|
- *
|
|
|
+ *
|
|
|
*/
|
|
|
@Controller
|
|
|
@RequestMapping("/erp/sale/quotation")
|
|
|
@@ -39,4 +42,16 @@ public class QuotationDownController {
|
|
|
return quotationDownService.convertPurchaseInquiry(purchaseInquiryService.findNotUploadInquiry());
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 平台的客户询价单传到供应商ERP之后,修改平台里面的询价单的上传状态
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ * @throws UnsupportedEncodingException
|
|
|
+ */
|
|
|
+ @RequestMapping(method = RequestMethod.POST)
|
|
|
+ @ResponseBody
|
|
|
+ public void onQuotationDownSuccess(@RequestParam("data") String data) throws UnsupportedEncodingException {
|
|
|
+ purchaseInquiryService.onQuotationDownSuccess(URLDecoder.decode(data, "UTF-8").split(","));
|
|
|
+ }
|
|
|
+
|
|
|
}
|