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, "库存不足!");
}
}
if (listInv != null && listInv.size() > 0) {
if (listInv != null && listInv.size() > 0 && updateReceiveDetailRequest.getCount() != null) {
if (listInv.get(0).getReCount() < updateReceiveDetailRequest.getCount()) {
return ResultVOUtils.error(999, "库存不足!");
}
@ -296,7 +296,7 @@ public class PurOrderReceiveController extends BaseController {
boolean falg = receivedetailService.updateReceiveDetail(updateReceiveDetailRequest);
if (falg) {
return ResultVOUtils.success();
return ResultVOUtils.success("成功");
} else {
return ResultVOUtils.error(555, "更新失败!");
}

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

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

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

@ -90,15 +90,6 @@ public class PurApplyDetailImplService implements PurApplyDetailService {
@Override
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) {
return Collections.emptyList();
}

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

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

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

Loading…
Cancel
Save