|
|
@@ -0,0 +1,57 @@
|
|
|
+package com.uas.platform.b2b.controller;
|
|
|
+
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.data.domain.Page;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
+
|
|
|
+import com.uas.platform.b2b.model.PurchaseApBill;
|
|
|
+import com.uas.platform.b2b.service.PurchaseApBillService;
|
|
|
+import com.uas.platform.b2b.support.SystemSession;
|
|
|
+import com.uas.platform.core.model.PageInfo;
|
|
|
+import com.uas.platform.core.model.PageParams;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 卖家获取对应的客户应付票据
|
|
|
+ *
|
|
|
+ * @author suntg
|
|
|
+ *
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@RequestMapping("/sale/apBill")
|
|
|
+public class SaleApBillController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private PurchaseApBillService purchaseApBillService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 作为卖家,客户的应付票据(全部)
|
|
|
+ *
|
|
|
+ * @param json
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public Page<PurchaseApBill> getReceivedPurchaseApBills(PageParams params) {
|
|
|
+ PageInfo info = new PageInfo(params);
|
|
|
+ // 我作为卖家,把我的企业ID作为供应商ID传入
|
|
|
+ info.filter("vendUU", SystemSession.getUser().getEnterprise().getUu());
|
|
|
+ return purchaseApBillService.findAllByPageInfo(info);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 作为卖家,根据变更单ID查找客户应付票据(含明细)
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public PurchaseApBill getReceivedPurchaseApBillById(@PathVariable("id") Long id) {
|
|
|
+ return purchaseApBillService.findById(id);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|