forked from angelo/java-retail-app
Compare commits
2 Commits
c7330c8bfa
...
4e7b194012
| Author | SHA1 | Date |
|---|---|---|
|
|
4e7b194012 | |
|
|
5f484f6178 |
|
|
@ -108,6 +108,10 @@ public class SaDeliverUnhandledController extends BaseController {
|
|||
param.setAreaScopeList(userAuthorityDTO.getRoleAreaScopeList());
|
||||
param.setVertexIdList(userAuthorityDTO.getVertexIdList());
|
||||
param.setTeamList(userAuthorityDTO.getUserTeamList());
|
||||
// 兼容调换货产品
|
||||
if (CollectionUtil.isEmpty(param.getPkWaresList())) {
|
||||
param.setPkWaresList(Collections.singletonList(0));
|
||||
}
|
||||
|
||||
startPage();
|
||||
List<DeliverUnhandledVO> resultList = iSaOrderItemsService.queryDeliverUnhandledList(param, pkCountry);
|
||||
|
|
@ -151,6 +155,10 @@ public class SaDeliverUnhandledController extends BaseController {
|
|||
param.setAreaScopeList(userAuthorityDTO.getRoleAreaScopeList());
|
||||
param.setVertexIdList(userAuthorityDTO.getVertexIdList());
|
||||
param.setTeamList(userAuthorityDTO.getUserTeamList());
|
||||
// 兼容调换货产品
|
||||
if (CollectionUtil.isEmpty(param.getPkWaresList())) {
|
||||
param.setPkWaresList(Collections.singletonList(0));
|
||||
}
|
||||
|
||||
List<DeliverUnhandledVO> resultList = iSaOrderItemsService.queryDeliverUnhandledList(param, pkCountry);
|
||||
|
||||
|
|
|
|||
|
|
@ -571,6 +571,7 @@ public class BdWaresSpecsSkuServiceImpl extends ServiceImpl<BdWaresSpecsSkuMappe
|
|||
productList.addAll(productResultList);
|
||||
|
||||
waresDetailVO.setProductList(productList);
|
||||
waresDetailVO.setSpecialArea(param.getSpecialArea());
|
||||
return waresDetailVO;
|
||||
}
|
||||
return null;
|
||||
|
|
|
|||
Loading…
Reference in New Issue