Merge remote-tracking branch 'origin/dev2.0' into dev2.0

dev2.0
anthonywj 2 years ago
commit 4d6f807791

@ -287,7 +287,7 @@ public class PurOrderReceiveController extends BaseController {
return ResultVOUtils.error(999, "库存不足!"); return ResultVOUtils.error(999, "库存不足!");
} }
} }
if (listInv != null && listInv.size() > 0) { if (listInv != null && listInv.size() > 0 && updateReceiveDetailRequest.getCount() != null) {
if (listInv.get(0).getReCount() < updateReceiveDetailRequest.getCount()) { if (listInv.get(0).getReCount() < updateReceiveDetailRequest.getCount()) {
return ResultVOUtils.error(999, "库存不足!"); return ResultVOUtils.error(999, "库存不足!");
} }
@ -296,7 +296,7 @@ public class PurOrderReceiveController extends BaseController {
boolean falg = receivedetailService.updateReceiveDetail(updateReceiveDetailRequest); boolean falg = receivedetailService.updateReceiveDetail(updateReceiveDetailRequest);
if (falg) { if (falg) {
return ResultVOUtils.success(); return ResultVOUtils.success("成功");
} else { } else {
return ResultVOUtils.error(555, "更新失败!"); return ResultVOUtils.error(555, "更新失败!");
} }
@ -432,16 +432,16 @@ public class PurOrderReceiveController extends BaseController {
purApplyService.insert(purApplyEntity); purApplyService.insert(purApplyEntity);
//用stream流复制list //用stream流复制list
List<PurApplyDetailEntity> purApplyDetailEntityList = purReceiveDetailEntityList.stream().map(e -> { List<PurApplyDetailEntity> purApplyDetailEntityList = purReceiveDetailEntityList.stream().map(e -> {
PurApplyDetailEntity d = new PurApplyDetailEntity(); PurApplyDetailEntity d = new PurApplyDetailEntity();
d.setOrderIdFk(purApplyEntity.getId() + ""); d.setOrderIdFk(purApplyEntity.getId() + "");
d.setProductId(e.getRelIdFk()); d.setProductId(e.getRelIdFk());
UdiProductEntity udiProductEntity = udiProductService.findByNameCode(e.getNameCode()); UdiProductEntity udiProductEntity = udiProductService.findByNameCode(e.getNameCode());
d.setProductName(udiProductEntity.getCpmctymc()); d.setProductName(udiProductEntity.getCpmctymc());
d.setCount(e.getCount()); d.setCount(e.getCount());
d.setSupId(e.getSupId()); d.setSupId(e.getSupId());
d.setZczbhhzbapzbh(udiProductEntity.getZczbhhzbapzbh()); d.setZczbhhzbapzbh(udiProductEntity.getZczbhhzbapzbh());
return d; return d;
}) })
.collect(Collectors.toList()); .collect(Collectors.toList());
purApplyDetailService.insertPurApplyDetailEntity(purApplyDetailEntityList); purApplyDetailService.insertPurApplyDetailEntity(purApplyDetailEntityList);

@ -67,4 +67,5 @@ public class PurApplyDetailRequest extends ListPageRequest {
* *
*/ */
private String endDate; private String endDate;
private String nameCode;
} }

@ -75,5 +75,5 @@ public class PurOrderDetailRequest extends ListPageRequest {
* *
*/ */
private String manufactory; private String manufactory;
private String nameCode;
} }

@ -75,7 +75,7 @@ public class PurPlanDetailRequest extends ListPageRequest {
* *
*/ */
private String manufactory; private String manufactory;
private String nameCode;
private String checksupId; private String checksupId;
} }

@ -90,15 +90,6 @@ public class PurApplyDetailImplService implements PurApplyDetailService {
@Override @Override
public List<PurOrderDetailResponse> getDetailList(PurApplyDetailRequest purApplyDetailRequest) { public List<PurOrderDetailResponse> getDetailList(PurApplyDetailRequest purApplyDetailRequest) {
// if (null == purApplyDetailRequest) {
// return Collections.emptyList();
// }
// if (purApplyDetailRequest.getPage() == null)
// purApplyDetailRequest.setPage(1);
// if (purApplyDetailRequest.getLimit() == null) {
// purApplyDetailRequest.setLimit(10);
// }
// PageHelper.offsetPage((purApplyDetailRequest.getPage() - 1) * purApplyDetailRequest.getLimit(), purApplyDetailRequest.getLimit());
if (purApplyDetailRequest == null) { if (purApplyDetailRequest == null) {
return Collections.emptyList(); return Collections.emptyList();
} }

@ -132,6 +132,9 @@
left JOIN basic_corp ON pur_apply_detail.supId = basic_corp.erpId left JOIN basic_corp ON pur_apply_detail.supId = basic_corp.erpId
left join pur_apply on pur_apply.id = pur_apply_detail.orderIdFk left join pur_apply on pur_apply.id = pur_apply_detail.orderIdFk
<where> <where>
<if test="nameCode != null and nameCode != ''">
AND basic_products.nameCode like concat('%', #{nameCode}, '%')
</if>
<if test="billNo != null and billNo != ''"> <if test="billNo != null and billNo != ''">
AND pur_apply.billNo like concat('%', #{billNo}, '%') AND pur_apply.billNo like concat('%', #{billNo}, '%')
</if> </if>

@ -151,6 +151,9 @@
INNER JOIN basic_corp ON pur_order_detail.supId = basic_corp.erpId INNER JOIN basic_corp ON pur_order_detail.supId = basic_corp.erpId
left join pur_order on pur_order.id = pur_order_detail.orderIdFk left join pur_order on pur_order.id = pur_order_detail.orderIdFk
<where> <where>
<if test="nameCode != null and nameCode != ''">
AND basic_products.nameCode like concat('%', #{nameCode}, '%')
</if>
<if test="billNo != null and billNo != ''"> <if test="billNo != null and billNo != ''">
AND pur_order.billNo like concat('%', #{billNo}, '%') AND pur_order.billNo like concat('%', #{billNo}, '%')
</if> </if>

@ -148,6 +148,9 @@
left JOIN basic_corp ON pur_plan_detail.supId = basic_corp.erpId left JOIN basic_corp ON pur_plan_detail.supId = basic_corp.erpId
left join pur_plan on pur_plan.id = pur_plan_detail.orderIdFk left join pur_plan on pur_plan.id = pur_plan_detail.orderIdFk
<where> <where>
<if test="nameCode != null and nameCode != ''">
AND basic_products.nameCode like concat('%', #{nameCode}, '%')
</if>
<if test="billNo != null and billNo != ''"> <if test="billNo != null and billNo != ''">
AND pur_plan.billNo like concat('%', #{billNo}, '%') AND pur_plan.billNo like concat('%', #{billNo}, '%')
</if> </if>

Loading…
Cancel
Save