|
@@ -112,94 +112,9 @@ public class SaleNoticeController {
|
|
|
return searchService.searchPurchaseNoticeIds(keyword, pageParams);
|
|
return searchService.searchPurchaseNoticeIds(keyword, pageParams);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- /**
|
|
|
|
|
- * 作为卖家,收到的送货提醒(待发货) -不搜索
|
|
|
|
|
- *
|
|
|
|
|
- * @param params
|
|
|
|
|
- * @return
|
|
|
|
|
- * @throws UnsupportedEncodingException
|
|
|
|
|
- */
|
|
|
|
|
- @RequestMapping(value = "/info/nosearch", params = RequestState.TODO, method = RequestMethod.GET)
|
|
|
|
|
- @ResponseBody
|
|
|
|
|
- public SPage<PurchaseNotice> getTodoPurchaseNoticesInfo(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
|
|
|
- SearchFilter filter = new SearchFilter();
|
|
|
|
|
- filter.setEndDate(endDate);
|
|
|
|
|
- filter.setFromDate(fromDate);
|
|
|
|
|
- SearchFilter disfilter = userService.distribute();
|
|
|
|
|
- if (disfilter != null && disfilter.getDistribute() == null) {
|
|
|
|
|
- return null;
|
|
|
|
|
- }
|
|
|
|
|
- if (disfilter != null && !CollectionUtils.isEmpty(disfilter.getDistribute())) {
|
|
|
|
|
- List<Object> list = new ArrayList<>();
|
|
|
|
|
- list.addAll(disfilter.getDistribute());
|
|
|
|
|
- filter.setDistribute(list);
|
|
|
|
|
- }
|
|
|
|
|
- PageInfo pageInfo = new PageInfo(params);
|
|
|
|
|
- pageInfo.filter("vendUU", SystemSession.getUser().getEnterprise().getUu());
|
|
|
|
|
- pageInfo.filter("status", (short)Status.NOT_REPLY.value());
|
|
|
|
|
- pageInfo.filter("waiting", Constant.NO);
|
|
|
|
|
- return purchaseNoticeService.findAllNoticesByPageInfo(pageInfo, null, filter);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 作为卖家,收到的送货提醒(已发货)
|
|
|
|
|
- *
|
|
|
|
|
- * @param params
|
|
|
|
|
- * @return
|
|
|
|
|
- * @throws UnsupportedEncodingException
|
|
|
|
|
- */
|
|
|
|
|
- @RequestMapping(value = "/info/nosearch", params = RequestState.DONE, method = RequestMethod.GET)
|
|
|
|
|
- @ResponseBody
|
|
|
|
|
- public SPage<PurchaseNotice> getDonePurchaseNoticesInfo(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
|
|
|
- logger.log("客户送货提醒", "查看收到的客户送货提醒列表(已发货)");
|
|
|
|
|
- SearchFilter filter = new SearchFilter();
|
|
|
|
|
- filter.setEndDate(endDate);
|
|
|
|
|
- filter.setFromDate(fromDate);
|
|
|
|
|
- SearchFilter disfilter = userService.distribute();
|
|
|
|
|
- if (disfilter != null && disfilter.getDistribute() == null) {
|
|
|
|
|
- return null;
|
|
|
|
|
- }
|
|
|
|
|
- if (disfilter != null && !CollectionUtils.isEmpty(disfilter.getDistribute())) {
|
|
|
|
|
- List<Object> list = new ArrayList<>();
|
|
|
|
|
- list.addAll(disfilter.getDistribute());
|
|
|
|
|
- filter.setDistribute(list);
|
|
|
|
|
- }
|
|
|
|
|
- PageInfo pageInfo = new PageInfo(params);
|
|
|
|
|
- pageInfo.filter("vendUU", SystemSession.getUser().getEnterprise().getUu());
|
|
|
|
|
- pageInfo.filter("status", (short)Status.REPLIED.value());
|
|
|
|
|
- return purchaseNoticeService.findDoneNoticesByPageInfo(pageInfo, null, filter);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 作为卖家,收到的送货提醒,对应id
|
|
|
|
|
- *
|
|
|
|
|
- * @param id
|
|
|
|
|
- * @return
|
|
|
|
|
- */
|
|
|
|
|
- @RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
|
|
|
|
- @ResponseBody
|
|
|
|
|
- public PurchaseNotice getReceivedPurchaseNoticeById(@PathVariable("id") Long id) {
|
|
|
|
|
- logger.log("客户送货提醒", "查看单个客户送货提醒", null, null, id);
|
|
|
|
|
- return purchaseNoticeService.findById(id);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 作为卖家,收到的送货提醒,对应id
|
|
|
|
|
- *
|
|
|
|
|
- * @param id
|
|
|
|
|
- * @return
|
|
|
|
|
- */
|
|
|
|
|
- @RequestMapping(value = "/{id}/sendItems", method = RequestMethod.GET)
|
|
|
|
|
- @ResponseBody
|
|
|
|
|
- public List<SaleSendItem> getSendItemsNoticeById(@PathVariable("id") Long id) {
|
|
|
|
|
- logger.log("客户送货提醒", "查看单个客户送货提醒的发货记录", null, null, id);
|
|
|
|
|
- return purchaseNoticeService.findSendById(id);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* 作为卖家,收到的送货提醒(待发货)
|
|
* 作为卖家,收到的送货提醒(待发货)
|
|
|
- *
|
|
|
|
|
|
|
+ *
|
|
|
* @param params
|
|
* @param params
|
|
|
* @return
|
|
* @return
|
|
|
* @throws UnsupportedEncodingException
|
|
* @throws UnsupportedEncodingException
|
|
@@ -238,7 +153,7 @@ public class SaleNoticeController {
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 作为卖家,收到的送货提醒(已发货)
|
|
* 作为卖家,收到的送货提醒(已发货)
|
|
|
- *
|
|
|
|
|
|
|
+ *
|
|
|
* @param params
|
|
* @param params
|
|
|
* @return
|
|
* @return
|
|
|
* @throws UnsupportedEncodingException
|
|
* @throws UnsupportedEncodingException
|
|
@@ -277,7 +192,7 @@ public class SaleNoticeController {
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 作为卖家,收到的送货提醒(备料中)
|
|
* 作为卖家,收到的送货提醒(备料中)
|
|
|
- *
|
|
|
|
|
|
|
+ *
|
|
|
* @param params
|
|
* @param params
|
|
|
* @return
|
|
* @return
|
|
|
* @throws UnsupportedEncodingException
|
|
* @throws UnsupportedEncodingException
|
|
@@ -285,7 +200,7 @@ public class SaleNoticeController {
|
|
|
@RequestMapping(value = "/info/search", params = RequestState.WAITING, method = RequestMethod.GET)
|
|
@RequestMapping(value = "/info/search", params = RequestState.WAITING, method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
@ResponseBody
|
|
|
public SPage<PurchaseNotice> getWaitingPurchaseNotices(PageParams params, String keyword, Long fromDate,
|
|
public SPage<PurchaseNotice> getWaitingPurchaseNotices(PageParams params, String keyword, Long fromDate,
|
|
|
- Long endDate){
|
|
|
|
|
|
|
+ Long endDate){
|
|
|
logger.log("客户送货提醒", "查看收到的客户送货提醒列表(备料中)");
|
|
logger.log("客户送货提醒", "查看收到的客户送货提醒列表(备料中)");
|
|
|
com.uas.search.b2b.model.PageParams pageParams = searchService.convertPageParams(params, null);
|
|
com.uas.search.b2b.model.PageParams pageParams = searchService.convertPageParams(params, null);
|
|
|
pageParams.getFilters().put("pn_venduu", SystemSession.getUser().getEnterprise().getUu());
|
|
pageParams.getFilters().put("pn_venduu", SystemSession.getUser().getEnterprise().getUu());
|
|
@@ -316,7 +231,7 @@ public class SaleNoticeController {
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 作为卖家,收到的送货提醒(已结案)
|
|
* 作为卖家,收到的送货提醒(已结案)
|
|
|
- *
|
|
|
|
|
|
|
+ *
|
|
|
* @param params
|
|
* @param params
|
|
|
* @return
|
|
* @return
|
|
|
* @throws UnsupportedEncodingException
|
|
* @throws UnsupportedEncodingException
|
|
@@ -352,6 +267,92 @@ public class SaleNoticeController {
|
|
|
return searchService.searchPurchaseNoticeIds(keyword, pageParams);
|
|
return searchService.searchPurchaseNoticeIds(keyword, pageParams);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 作为卖家,收到的送货提醒(待发货) -不搜索
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param params
|
|
|
|
|
+ * @return
|
|
|
|
|
+ * @throws UnsupportedEncodingException
|
|
|
|
|
+ */
|
|
|
|
|
+ @RequestMapping(value = "/info/nosearch", params = RequestState.TODO, method = RequestMethod.GET)
|
|
|
|
|
+ @ResponseBody
|
|
|
|
|
+ public SPage<PurchaseNotice> getTodoPurchaseNoticesInfo(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
|
|
|
+ SearchFilter filter = new SearchFilter();
|
|
|
|
|
+ filter.setEndDate(endDate);
|
|
|
|
|
+ filter.setFromDate(fromDate);
|
|
|
|
|
+ SearchFilter disfilter = userService.distribute();
|
|
|
|
|
+ if (disfilter != null && disfilter.getDistribute() == null) {
|
|
|
|
|
+ return null;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (disfilter != null && !CollectionUtils.isEmpty(disfilter.getDistribute())) {
|
|
|
|
|
+ List<Object> list = new ArrayList<>();
|
|
|
|
|
+ list.addAll(disfilter.getDistribute());
|
|
|
|
|
+ filter.setDistribute(list);
|
|
|
|
|
+ }
|
|
|
|
|
+ PageInfo pageInfo = new PageInfo(params);
|
|
|
|
|
+ pageInfo.filter("vendUU", SystemSession.getUser().getEnterprise().getUu());
|
|
|
|
|
+ pageInfo.filter("status", (short)Status.NOT_REPLY.value());
|
|
|
|
|
+ pageInfo.filter("waiting", Constant.NO);
|
|
|
|
|
+ return purchaseNoticeService.findAllNoticesByPageInfo(pageInfo, null, filter);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 作为卖家,收到的送货提醒(已发货)
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param params
|
|
|
|
|
+ * @return
|
|
|
|
|
+ * @throws UnsupportedEncodingException
|
|
|
|
|
+ */
|
|
|
|
|
+ @RequestMapping(value = "/info/nosearch", params = RequestState.DONE, method = RequestMethod.GET)
|
|
|
|
|
+ @ResponseBody
|
|
|
|
|
+ public SPage<PurchaseNotice> getDonePurchaseNoticesInfo(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
|
|
|
+ logger.log("客户送货提醒", "查看收到的客户送货提醒列表(已发货)");
|
|
|
|
|
+ SearchFilter filter = new SearchFilter();
|
|
|
|
|
+ filter.setEndDate(endDate);
|
|
|
|
|
+ filter.setFromDate(fromDate);
|
|
|
|
|
+ SearchFilter disfilter = userService.distribute();
|
|
|
|
|
+ if (disfilter != null && disfilter.getDistribute() == null) {
|
|
|
|
|
+ return null;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (disfilter != null && !CollectionUtils.isEmpty(disfilter.getDistribute())) {
|
|
|
|
|
+ List<Object> list = new ArrayList<>();
|
|
|
|
|
+ list.addAll(disfilter.getDistribute());
|
|
|
|
|
+ filter.setDistribute(list);
|
|
|
|
|
+ }
|
|
|
|
|
+ PageInfo pageInfo = new PageInfo(params);
|
|
|
|
|
+ pageInfo.filter("vendUU", SystemSession.getUser().getEnterprise().getUu());
|
|
|
|
|
+ pageInfo.filter("status", (short)Status.REPLIED.value());
|
|
|
|
|
+ return purchaseNoticeService.findDoneNoticesByPageInfo(pageInfo, null, filter);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 作为卖家,收到的送货提醒,对应id
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param id
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ @RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
|
|
|
|
+ @ResponseBody
|
|
|
|
|
+ public PurchaseNotice getReceivedPurchaseNoticeById(@PathVariable("id") Long id) {
|
|
|
|
|
+ logger.log("客户送货提醒", "查看单个客户送货提醒", null, null, id);
|
|
|
|
|
+ return purchaseNoticeService.findById(id);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 作为卖家,收到的送货提醒,对应id
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param id
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ @RequestMapping(value = "/{id}/sendItems", method = RequestMethod.GET)
|
|
|
|
|
+ @ResponseBody
|
|
|
|
|
+ public List<SaleSendItem> getSendItemsNoticeById(@PathVariable("id") Long id) {
|
|
|
|
|
+ logger.log("客户送货提醒", "查看单个客户送货提醒的发货记录", null, null, id);
|
|
|
|
|
+ return purchaseNoticeService.findSendById(id);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 作为卖家,针对送货提醒发货
|
|
* 作为卖家,针对送货提醒发货
|
|
|
*
|
|
*
|
|
@@ -408,7 +409,7 @@ public class SaleNoticeController {
|
|
|
* @param params
|
|
* @param params
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- @RequestMapping(value = "/sends", method = RequestMethod.GET)
|
|
|
|
|
|
|
+ @RequestMapping(value = "/sends/info/search", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
@ResponseBody
|
|
|
public SPage<SaleSendAll> getSaleSends(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
public SPage<SaleSendAll> getSaleSends(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
|
logger.log("发货单", "查看全部的发货单");
|
|
logger.log("发货单", "查看全部的发货单");
|
|
@@ -438,66 +439,13 @@ public class SaleNoticeController {
|
|
|
return searchService.searchSaleSendIds(keyword, pageParams);
|
|
return searchService.searchSaleSendIds(keyword, pageParams);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- /**
|
|
|
|
|
- * 作为卖家,查看单个发货单
|
|
|
|
|
- *
|
|
|
|
|
- * @param params
|
|
|
|
|
- * @return
|
|
|
|
|
- */
|
|
|
|
|
- @RequestMapping(value = "/sends/{id}/info", method = RequestMethod.GET)
|
|
|
|
|
- @ResponseBody
|
|
|
|
|
- public SaleSendAll getSaleSendsById(PageParams params, @PathVariable("id") Long id) {
|
|
|
|
|
- logger.log("发货单", "查看单个送货单", "根据Id查找", "", id);
|
|
|
|
|
- return purchaseNoticeService.findSaleSendById(id);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 打印权限判断
|
|
|
|
|
- *
|
|
|
|
|
- * @return
|
|
|
|
|
- */
|
|
|
|
|
- @RequestMapping(value = "/sends/print/permission", method = RequestMethod.POST)
|
|
|
|
|
- @ResponseBody
|
|
|
|
|
- public ModelMap printPermission() {
|
|
|
|
|
- return new ModelMap("success", true);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 增加发货单打印次数
|
|
|
|
|
- *
|
|
|
|
|
- * @param params
|
|
|
|
|
- * @return
|
|
|
|
|
- */
|
|
|
|
|
- @RequestMapping(value = "/sends/print/{id}", method = RequestMethod.POST)
|
|
|
|
|
- @ResponseBody
|
|
|
|
|
- public void printCount(PageParams params, @PathVariable("id") Long id) {
|
|
|
|
|
- logger.log("发货单", "打印单个发货单", "根据Id查找", "", id);
|
|
|
|
|
- purchaseNoticeService.printCount(id);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 更新发货单的条码规则
|
|
|
|
|
- *
|
|
|
|
|
- * @param json
|
|
|
|
|
- */
|
|
|
|
|
- @RequestMapping(value = "/sends/{id}", method = RequestMethod.POST)
|
|
|
|
|
- @ResponseBody
|
|
|
|
|
- public void updateSaleSend(@RequestBody String json) {
|
|
|
|
|
- SaleSendItem saleSendItem = FlexJsonUtils.fromJson(json, SaleSendItem.class);
|
|
|
|
|
- if (saleSendItem != null && saleSendItem.getId() != null) {
|
|
|
|
|
- logger.log("条码维护", "保存条码数据", "根据Id查找", "", saleSendItem.getId());
|
|
|
|
|
- purchaseNoticeService.updateBarCode(saleSendItem.getId(), saleSendItem.getPackageQty(),
|
|
|
|
|
- saleSendItem.getOutBoxQty());
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* 作为卖家,查看送货单-已收料
|
|
* 作为卖家,查看送货单-已收料
|
|
|
- *
|
|
|
|
|
|
|
+ *
|
|
|
* @param params
|
|
* @param params
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- @RequestMapping(value = "/sends", params = RequestState.DONE, method = RequestMethod.GET)
|
|
|
|
|
|
|
+ @RequestMapping(value = "/sends/info/search", params = RequestState.DONE, method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
@ResponseBody
|
|
|
public SPage<SaleSendAll> getReceivedSaleSends(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
public SPage<SaleSendAll> getReceivedSaleSends(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
|
logger.log("发货单", "查看全部的送货单");
|
|
logger.log("发货单", "查看全部的送货单");
|
|
@@ -531,11 +479,11 @@ public class SaleNoticeController {
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 作为卖家,查看送货单-未收料(包括部分收料)
|
|
* 作为卖家,查看送货单-未收料(包括部分收料)
|
|
|
- *
|
|
|
|
|
|
|
+ *
|
|
|
* @param params
|
|
* @param params
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- @RequestMapping(value = "/sends", params = RequestState.TODO, method = RequestMethod.GET)
|
|
|
|
|
|
|
+ @RequestMapping(value = "/sends/info/search", params = RequestState.TODO, method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
@ResponseBody
|
|
|
public SPage<SaleSendAll> getUnReceivedSaleSends(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
public SPage<SaleSendAll> getUnReceivedSaleSends(PageParams params, String keyword, Long fromDate, Long endDate) {
|
|
|
logger.log("发货单", "查看全部的送货单");
|
|
logger.log("发货单", "查看全部的送货单");
|
|
@@ -566,6 +514,59 @@ public class SaleNoticeController {
|
|
|
return searchService.searchSaleSendIds(keyword, pageParams);
|
|
return searchService.searchSaleSendIds(keyword, pageParams);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 作为卖家,查看单个发货单
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param params
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ @RequestMapping(value = "/sends/{id}/info", method = RequestMethod.GET)
|
|
|
|
|
+ @ResponseBody
|
|
|
|
|
+ public SaleSendAll getSaleSendsById(PageParams params, @PathVariable("id") Long id) {
|
|
|
|
|
+ logger.log("发货单", "查看单个送货单", "根据Id查找", "", id);
|
|
|
|
|
+ return purchaseNoticeService.findSaleSendById(id);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 打印权限判断
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ @RequestMapping(value = "/sends/print/permission", method = RequestMethod.POST)
|
|
|
|
|
+ @ResponseBody
|
|
|
|
|
+ public ModelMap printPermission() {
|
|
|
|
|
+ return new ModelMap("success", true);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 增加发货单打印次数
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param params
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ @RequestMapping(value = "/sends/print/{id}", method = RequestMethod.POST)
|
|
|
|
|
+ @ResponseBody
|
|
|
|
|
+ public void printCount(PageParams params, @PathVariable("id") Long id) {
|
|
|
|
|
+ logger.log("发货单", "打印单个发货单", "根据Id查找", "", id);
|
|
|
|
|
+ purchaseNoticeService.printCount(id);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 更新发货单的条码规则
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param json
|
|
|
|
|
+ */
|
|
|
|
|
+ @RequestMapping(value = "/sends/{id}", method = RequestMethod.POST)
|
|
|
|
|
+ @ResponseBody
|
|
|
|
|
+ public void updateSaleSend(@RequestBody String json) {
|
|
|
|
|
+ SaleSendItem saleSendItem = FlexJsonUtils.fromJson(json, SaleSendItem.class);
|
|
|
|
|
+ if (saleSendItem != null && saleSendItem.getId() != null) {
|
|
|
|
|
+ logger.log("条码维护", "保存条码数据", "根据Id查找", "", saleSendItem.getId());
|
|
|
|
|
+ purchaseNoticeService.updateBarCode(saleSendItem.getId(), saleSendItem.getPackageQty(),
|
|
|
|
|
+ saleSendItem.getOutBoxQty());
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 导出权限判断
|
|
* 导出权限判断
|
|
|
*
|
|
*
|