|
@@ -1,7 +1,10 @@
|
|
|
package org.jeecg.modules.purCode.service.impl;
|
|
|
|
|
|
+import org.apache.commons.lang.StringUtils;
|
|
|
+import org.jeecg.modules.purCode.entity.PurOrder;
|
|
|
import org.jeecg.modules.purCode.entity.PurPaymentRequest;
|
|
|
import org.jeecg.modules.purCode.entity.PurPaymentRequestDetails;
|
|
|
+import org.jeecg.modules.purCode.mapper.PurOrderMapper;
|
|
|
import org.jeecg.modules.purCode.mapper.PurPaymentRequestDetailsMapper;
|
|
|
import org.jeecg.modules.purCode.mapper.PurPaymentRequestMapper;
|
|
|
import org.jeecg.modules.purCode.service.IPurPaymentRequestService;
|
|
@@ -27,7 +30,9 @@ public class PurPaymentRequestServiceImpl extends ServiceImpl<PurPaymentRequestM
|
|
|
private PurPaymentRequestMapper purPaymentRequestMapper;
|
|
|
@Autowired
|
|
|
private PurPaymentRequestDetailsMapper purPaymentRequestDetailsMapper;
|
|
|
-
|
|
|
+ @Autowired
|
|
|
+ private PurOrderMapper purOrderMapper;
|
|
|
+
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void saveMain(PurPaymentRequest purPaymentRequest, List<PurPaymentRequestDetails> purPaymentRequestDetailsList) {
|
|
@@ -51,12 +56,71 @@ public class PurPaymentRequestServiceImpl extends ServiceImpl<PurPaymentRequestM
|
|
|
purPaymentRequestDetailsMapper.insert(entity);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ if(purPaymentRequestDetailsList!=null && purPaymentRequestDetailsList.size()>0) {
|
|
|
+
|
|
|
+ for(PurPaymentRequestDetails entity:purPaymentRequestDetailsList) {
|
|
|
+ String sourceId = entity.getPurchaseId();
|
|
|
+ if(StringUtils.isBlank(sourceId)){
|
|
|
+ throw new RuntimeException("缺失来源参数请联系管理员sourceId!!");
|
|
|
+ }
|
|
|
+ BigDecimal applyMoney = entity.getApplyMoney() == null ? BigDecimal.ZERO : entity.getApplyMoney();//本次申请金额
|
|
|
+
|
|
|
+ PurOrder order = purOrderMapper.selectById(sourceId);
|
|
|
+ if (order != null) {
|
|
|
+ BigDecimal totalAmount = order.getTotalAmount() == null ? BigDecimal.ZERO : order.getTotalAmount();//订单金额
|
|
|
+ BigDecimal totalAmountUsed = order.getTotalAmountUsed() == null ? BigDecimal.ZERO : order.getTotalAmountUsed();//已使用金额
|
|
|
+
|
|
|
+ totalAmountUsed = applyMoney.add(totalAmountUsed);
|
|
|
+
|
|
|
+ if(totalAmount.compareTo(totalAmountUsed) < 1){
|
|
|
+ throw new RuntimeException(order.getBillCode()+"金额不足(剩余:"+totalAmount.subtract(order.getTotalAmountUsed() == null ? BigDecimal.ZERO : order.getTotalAmountUsed())+"),请重新填写申请金额!");
|
|
|
+ }
|
|
|
+
|
|
|
+ order.setTotalAmountUsed(totalAmountUsed);
|
|
|
+ purOrderMapper.updateById(order);
|
|
|
+ }else{
|
|
|
+ throw new RuntimeException("采购订单不存在,请刷新后重试:"+entity.getPurchaseCode());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void updateMain(PurPaymentRequest purPaymentRequest,List<PurPaymentRequestDetails> purPaymentRequestDetailsList) {
|
|
|
|
|
|
+ List<PurPaymentRequestDetails> detailsList = purPaymentRequestDetailsMapper.selectByMainId(purPaymentRequest.getId());
|
|
|
+ if (detailsList != null && detailsList.size() > 0) {
|
|
|
+
|
|
|
+ for(PurPaymentRequestDetails entity:detailsList) {
|
|
|
+ String sourceId = entity.getPurchaseId();
|
|
|
+ if (StringUtils.isNotBlank(sourceId)) {
|
|
|
+
|
|
|
+ BigDecimal applyMoney = entity.getApplyMoney() == null ? BigDecimal.ZERO : entity.getApplyMoney();//本次申请金额
|
|
|
+ PurOrder order = purOrderMapper.selectById(sourceId);
|
|
|
+ if (order != null) {
|
|
|
+
|
|
|
+ BigDecimal totalAmountUsed = order.getTotalAmountUsed() == null ? BigDecimal.ZERO : order.getTotalAmountUsed();//已使用金额
|
|
|
+
|
|
|
+ totalAmountUsed = totalAmountUsed.subtract(applyMoney);
|
|
|
+
|
|
|
+ if (applyMoney.compareTo(BigDecimal.ZERO) < 1) {
|
|
|
+ order.setTotalAmountUsed(BigDecimal.ZERO);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ order.setTotalAmountUsed(totalAmountUsed);
|
|
|
+ }
|
|
|
+ purOrderMapper.updateById(order);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
BigDecimal approveMoney = BigDecimal.ZERO;
|
|
|
if(purPaymentRequestDetailsList!=null && purPaymentRequestDetailsList.size()>0) {
|
|
|
for(PurPaymentRequestDetails entity:purPaymentRequestDetailsList) {
|
|
@@ -68,7 +132,6 @@ public class PurPaymentRequestServiceImpl extends ServiceImpl<PurPaymentRequestM
|
|
|
|
|
|
purPaymentRequest.setApproveMoney(approveMoney);
|
|
|
|
|
|
-
|
|
|
purPaymentRequestMapper.updateById(purPaymentRequest);
|
|
|
|
|
|
//1.先删除子表数据
|
|
@@ -82,11 +145,72 @@ public class PurPaymentRequestServiceImpl extends ServiceImpl<PurPaymentRequestM
|
|
|
purPaymentRequestDetailsMapper.insert(entity);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ if(purPaymentRequestDetailsList!=null && purPaymentRequestDetailsList.size()>0) {
|
|
|
+
|
|
|
+ for(PurPaymentRequestDetails entity:purPaymentRequestDetailsList) {
|
|
|
+ String sourceId = entity.getPurchaseId();
|
|
|
+ if(StringUtils.isBlank(sourceId)){
|
|
|
+ throw new RuntimeException("缺失来源参数请联系管理员sourceId!!");
|
|
|
+ }
|
|
|
+ BigDecimal applyMoney = entity.getApplyMoney() == null ? BigDecimal.ZERO : entity.getApplyMoney();//本次申请金额
|
|
|
+
|
|
|
+ PurOrder order = purOrderMapper.selectById(sourceId);
|
|
|
+ if (order != null) {
|
|
|
+ BigDecimal totalAmount = order.getTotalAmount() == null ? BigDecimal.ZERO : order.getTotalAmount();//订单金额
|
|
|
+ BigDecimal totalAmountUsed = order.getTotalAmountUsed() == null ? BigDecimal.ZERO : order.getTotalAmountUsed();//已使用金额
|
|
|
+
|
|
|
+ totalAmountUsed = applyMoney.add(totalAmountUsed);
|
|
|
+
|
|
|
+ if(totalAmount.compareTo(totalAmountUsed) < 1){
|
|
|
+ throw new RuntimeException(order.getBillCode()+"金额不足(剩余:"+totalAmount.subtract(order.getTotalAmountUsed() == null ? BigDecimal.ZERO : order.getTotalAmountUsed())+"),请重新填写申请金额!");
|
|
|
+ }
|
|
|
+
|
|
|
+ order.setTotalAmountUsed(totalAmountUsed);
|
|
|
+ purOrderMapper.updateById(order);
|
|
|
+ }else{
|
|
|
+ throw new RuntimeException("采购订单不存在,请刷新后重试:"+entity.getPurchaseCode());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void delMain(String id) {
|
|
|
+
|
|
|
+ List<PurPaymentRequestDetails> detailsList = purPaymentRequestDetailsMapper.selectByMainId(id);
|
|
|
+ if (detailsList != null && detailsList.size() > 0) {
|
|
|
+
|
|
|
+ for(PurPaymentRequestDetails entity:detailsList) {
|
|
|
+ String sourceId = entity.getPurchaseId();
|
|
|
+ if (StringUtils.isNotBlank(sourceId)) {
|
|
|
+
|
|
|
+ BigDecimal applyMoney = entity.getApplyMoney() == null ? BigDecimal.ZERO : entity.getApplyMoney();//本次申请金额
|
|
|
+ PurOrder order = purOrderMapper.selectById(sourceId);
|
|
|
+ if (order != null) {
|
|
|
+
|
|
|
+ BigDecimal totalAmountUsed = order.getTotalAmountUsed() == null ? BigDecimal.ZERO : order.getTotalAmountUsed();//已使用金额
|
|
|
+
|
|
|
+ totalAmountUsed = totalAmountUsed.subtract(applyMoney);
|
|
|
+
|
|
|
+ if (applyMoney.compareTo(BigDecimal.ZERO) < 1) {
|
|
|
+ order.setTotalAmountUsed(BigDecimal.ZERO);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ order.setTotalAmountUsed(totalAmountUsed);
|
|
|
+ }
|
|
|
+ purOrderMapper.updateById(order);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
purPaymentRequestDetailsMapper.deleteByMainId(id);
|
|
|
purPaymentRequestMapper.deleteById(id);
|
|
|
}
|
|
@@ -95,6 +219,37 @@ public class PurPaymentRequestServiceImpl extends ServiceImpl<PurPaymentRequestM
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void delBatchMain(Collection<? extends Serializable> idList) {
|
|
|
for(Serializable id:idList) {
|
|
|
+
|
|
|
+ List<PurPaymentRequestDetails> detailsList = purPaymentRequestDetailsMapper.selectByMainId(id.toString());
|
|
|
+ if (detailsList != null && detailsList.size() > 0) {
|
|
|
+
|
|
|
+ for(PurPaymentRequestDetails entity:detailsList) {
|
|
|
+ String sourceId = entity.getPurchaseId();
|
|
|
+ if (StringUtils.isNotBlank(sourceId)) {
|
|
|
+
|
|
|
+ BigDecimal applyMoney = entity.getApplyMoney() == null ? BigDecimal.ZERO : entity.getApplyMoney();//本次申请金额
|
|
|
+ PurOrder order = purOrderMapper.selectById(sourceId);
|
|
|
+ if (order != null) {
|
|
|
+
|
|
|
+ BigDecimal totalAmountUsed = order.getTotalAmountUsed() == null ? BigDecimal.ZERO : order.getTotalAmountUsed();//已使用金额
|
|
|
+
|
|
|
+ totalAmountUsed = totalAmountUsed.subtract(applyMoney);
|
|
|
+
|
|
|
+ if (applyMoney.compareTo(BigDecimal.ZERO) < 1) {
|
|
|
+ order.setTotalAmountUsed(BigDecimal.ZERO);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ order.setTotalAmountUsed(totalAmountUsed);
|
|
|
+ }
|
|
|
+ purOrderMapper.updateById(order);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
purPaymentRequestDetailsMapper.deleteByMainId(id.toString());
|
|
|
purPaymentRequestMapper.deleteById(id);
|
|
|
}
|