|
@@ -592,6 +592,39 @@ public class PurOrderServiceImpl extends ServiceImpl<PurOrderMapper, PurOrder> i
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void delMain(String id) {
|
|
|
+
|
|
|
+ List<PurOrderProduct> detailsList = purOrderProductMapper.selectByMainId(id);
|
|
|
+ if (detailsList != null && detailsList.size() > 0) {
|
|
|
+
|
|
|
+ for(PurOrderProduct entity:detailsList) {
|
|
|
+
|
|
|
+ String sourceId = entity.getSourceId();
|
|
|
+ if (StringUtils.isNotBlank(sourceId)) {
|
|
|
+
|
|
|
+ BigDecimal quantity = entity.getQuantity() == null ? BigDecimal.ZERO : entity.getQuantity();//采购数量
|
|
|
+ SaleOrderProduct arrival = saleOrderProductMapper.selectById(sourceId);
|
|
|
+
|
|
|
+ if (arrival != null) {
|
|
|
+ BigDecimal arrivalQuantity = arrival.getPurchaseQuantity() == null ? BigDecimal.ZERO : arrival.getPurchaseQuantity();//已采购数量
|
|
|
+
|
|
|
+ arrivalQuantity = arrivalQuantity.subtract(quantity);
|
|
|
+
|
|
|
+ if (arrivalQuantity.compareTo(BigDecimal.ZERO) < 1) {
|
|
|
+ arrival.setPurchaseQuantity(BigDecimal.ZERO);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ arrival.setPurchaseQuantity(arrivalQuantity);
|
|
|
+ }
|
|
|
+
|
|
|
+ saleOrderProductMapper.updateById(arrival);
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
purOrderShipMapper.deleteByMainId(id);
|
|
|
purOrderProductMapper.deleteByMainId(id);
|
|
|
purOrderMapper.deleteById(id);
|
|
@@ -601,6 +634,40 @@ public class PurOrderServiceImpl extends ServiceImpl<PurOrderMapper, PurOrder> i
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void delBatchMain(Collection<? extends Serializable> idList) {
|
|
|
for(Serializable id:idList) {
|
|
|
+
|
|
|
+ List<PurOrderProduct> detailsList = purOrderProductMapper.selectByMainId(id.toString());
|
|
|
+ if (detailsList != null && detailsList.size() > 0) {
|
|
|
+
|
|
|
+ for(PurOrderProduct entity:detailsList) {
|
|
|
+
|
|
|
+ String sourceId = entity.getSourceId();
|
|
|
+ if (StringUtils.isNotBlank(sourceId)) {
|
|
|
+
|
|
|
+ BigDecimal quantity = entity.getQuantity() == null ? BigDecimal.ZERO : entity.getQuantity();//采购数量
|
|
|
+ SaleOrderProduct arrival = saleOrderProductMapper.selectById(sourceId);
|
|
|
+
|
|
|
+ if (arrival != null) {
|
|
|
+ BigDecimal arrivalQuantity = arrival.getPurchaseQuantity() == null ? BigDecimal.ZERO : arrival.getPurchaseQuantity();//已采购数量
|
|
|
+
|
|
|
+ arrivalQuantity = arrivalQuantity.subtract(quantity);
|
|
|
+
|
|
|
+ if (arrivalQuantity.compareTo(BigDecimal.ZERO) < 1) {
|
|
|
+ arrival.setPurchaseQuantity(BigDecimal.ZERO);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ arrival.setPurchaseQuantity(arrivalQuantity);
|
|
|
+ }
|
|
|
+
|
|
|
+ saleOrderProductMapper.updateById(arrival);
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
purOrderShipMapper.deleteByMainId(id.toString());
|
|
|
purOrderProductMapper.deleteByMainId(id.toString());
|
|
|
purOrderMapper.deleteById(id);
|