|
@@ -1,5 +1,9 @@
|
|
|
package org.jeecg.modules.purCode.service.impl;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import org.apache.commons.lang.StringUtils;
|
|
|
+import org.jeecg.common.api.vo.Result;
|
|
|
+import org.jeecg.modules.baseCode.service.ISerialPatternService;
|
|
|
import org.jeecg.modules.purCode.entity.PurOrder;
|
|
|
import org.jeecg.modules.purCode.entity.PurOrderShip;
|
|
|
import org.jeecg.modules.purCode.entity.PurOrderProduct;
|
|
@@ -7,14 +11,19 @@ import org.jeecg.modules.purCode.mapper.PurOrderShipMapper;
|
|
|
import org.jeecg.modules.purCode.mapper.PurOrderProductMapper;
|
|
|
import org.jeecg.modules.purCode.mapper.PurOrderMapper;
|
|
|
import org.jeecg.modules.purCode.service.IPurOrderService;
|
|
|
+import org.jeecg.modules.saleCode.entity.SaleOrder;
|
|
|
+import org.jeecg.modules.saleCode.entity.SaleOrderProduct;
|
|
|
+import org.jeecg.modules.saleCode.mapper.SaleOrderMapper;
|
|
|
+import org.jeecg.modules.saleCode.mapper.SaleOrderProductMapper;
|
|
|
+import org.jeecg.modules.saleCode.vo.SaleOrderPage;
|
|
|
+import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Collection;
|
|
|
+import java.util.*;
|
|
|
|
|
|
/**
|
|
|
* @Description: 采购订单
|
|
@@ -31,7 +40,14 @@ public class PurOrderServiceImpl extends ServiceImpl<PurOrderMapper, PurOrder> i
|
|
|
private PurOrderShipMapper purOrderShipMapper;
|
|
|
@Autowired
|
|
|
private PurOrderProductMapper purOrderProductMapper;
|
|
|
-
|
|
|
+ @Autowired
|
|
|
+ private SaleOrderProductMapper saleOrderProductMapper;
|
|
|
+ @Autowired
|
|
|
+ private SaleOrderMapper saleOrderMapper;
|
|
|
+ @Autowired
|
|
|
+ private ISerialPatternService serialPatternService;
|
|
|
+
|
|
|
+
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void saveMain(PurOrder purOrder, List<PurOrderShip> purOrderShipList,List<PurOrderProduct> purOrderProductList) {
|
|
@@ -61,6 +77,23 @@ public class PurOrderServiceImpl extends ServiceImpl<PurOrderMapper, PurOrder> i
|
|
|
entity.setId(null);
|
|
|
entity.setHeadId(purOrder.getId());
|
|
|
purOrderProductMapper.insert(entity);
|
|
|
+
|
|
|
+ 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.add(quantity);
|
|
|
+ arrival.setPurchaseQuantity(arrivalQuantity);
|
|
|
+ saleOrderProductMapper.updateById(arrival);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -69,6 +102,38 @@ public class PurOrderServiceImpl extends ServiceImpl<PurOrderMapper, PurOrder> i
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void updateMain(PurOrder purOrder,List<PurOrderShip> purOrderShipList,List<PurOrderProduct> purOrderProductList) {
|
|
|
|
|
|
+ List<PurOrderProduct> detailsList = purOrderProductMapper.selectByMainId(purOrder.getId());
|
|
|
+ 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);
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
BigDecimal totalAmount = BigDecimal.ZERO;
|
|
|
if(purOrderProductList!=null && purOrderProductList.size()>0) {
|
|
|
for(PurOrderProduct entity:purOrderProductList) {
|
|
@@ -99,10 +164,324 @@ public class PurOrderServiceImpl extends ServiceImpl<PurOrderMapper, PurOrder> i
|
|
|
entity.setId(null);
|
|
|
entity.setHeadId(purOrder.getId());
|
|
|
purOrderProductMapper.insert(entity);
|
|
|
+
|
|
|
+
|
|
|
+ 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.add(quantity);
|
|
|
+ arrival.setPurchaseQuantity(arrivalQuantity);
|
|
|
+ saleOrderProductMapper.updateById(arrival);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 提交时执行B2B操作
|
|
|
+ * @param list
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
+ public void submitBatch(List<PurOrder> list){
|
|
|
+
|
|
|
+ for(PurOrder o:list){
|
|
|
+
|
|
|
+ String id = o.getId();
|
|
|
+ //组织 上海/香港
|
|
|
+ String organize = o.getSysOrgCode();
|
|
|
+ String sourceCode2 = o.getSourceCode2();
|
|
|
+
|
|
|
+ if(StringUtils.isBlank(organize) || StringUtils.isBlank(sourceCode2)){
|
|
|
+ throw new RuntimeException(o.getBillCode()+"参数异常 organize、sourceCode");
|
|
|
+ }
|
|
|
+
|
|
|
+ QueryWrapper<SaleOrder> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("bill_code", sourceCode2);
|
|
|
+ SaleOrder saleOrder = saleOrderMapper.selectOne(queryWrapper);
|
|
|
+ if(saleOrder == null || organize.equals(saleOrder.getOrganize())){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ List<SaleOrderProduct> saleOrderProductsList = saleOrderProductMapper.selectByMainId(saleOrder.getId());
|
|
|
+ Map<String,SaleOrderProduct> saleOrderProductsListMap = new HashMap<>();
|
|
|
+ for(SaleOrderProduct listProduct:saleOrderProductsList){
|
|
|
+ String saleId = listProduct.getId();
|
|
|
+ saleOrderProductsListMap.put(listProduct.getId()+saleId, listProduct);
|
|
|
+ }
|
|
|
+
|
|
|
+ List<SaleOrderProduct> newSaleOrderProductsList = new ArrayList<>();
|
|
|
+
|
|
|
+ // 上海采购 香港销售
|
|
|
+ if(organize.equals("上海")){
|
|
|
+ BigDecimal headAmount = BigDecimal.ZERO;
|
|
|
+ List<PurOrderProduct> purOrderProductList = purOrderProductMapper.selectByMainId(id);
|
|
|
+
|
|
|
+ for(PurOrderProduct listProduct : purOrderProductList){
|
|
|
+
|
|
|
+ String sourceId = listProduct.getSourceId() == null || listProduct.getSourceId()=="" ? "否":listProduct.getSourceId();
|
|
|
+
|
|
|
+ //取上海采购订单的数量和香港销售订单的单价 组成新的上海销售订单
|
|
|
+ BigDecimal quantity = listProduct.getQuantity();
|
|
|
+
|
|
|
+ //生成上海销售
|
|
|
+ SaleOrderProduct saleOrderProduct;
|
|
|
+ if(saleOrderProductsListMap.containsKey(sourceId)){
|
|
|
+
|
|
|
+ saleOrderProduct = saleOrderProductsListMap.get(sourceId);
|
|
|
+
|
|
|
+ //取销售的单价
|
|
|
+ BigDecimal taxPrice = saleOrderProduct.getTaxPrice();
|
|
|
+ BigDecimal taxAmount = quantity.multiply(taxPrice);
|
|
|
+
|
|
|
+// BigDecimal discount = saleOrderProduct.getDiscount() == null ? BigDecimal.ZERO:saleOrderProduct.getDiscount();
|
|
|
+// BigDecimal discountUs = (new BigDecimal(100).subtract(discount).divide(new BigDecimal(100)));
|
|
|
+
|
|
|
+ saleOrderProduct.setQuantity(quantity);
|
|
|
+ saleOrderProduct.setTaxPrice(taxPrice);
|
|
|
+ saleOrderProduct.setSourceId(saleOrderProduct.getId());
|
|
|
+
|
|
|
+ saleOrderProduct.setDeliveryQuantity(BigDecimal.ZERO);
|
|
|
+ saleOrderProduct.setPurchaseQuantity(BigDecimal.ZERO);
|
|
|
+
|
|
|
+ saleOrderProduct.setDiscountedPrice(taxPrice);//折后单价
|
|
|
+ saleOrderProduct.setDiscountedAmount(taxAmount);//折后金额
|
|
|
+ saleOrderProduct.setTaxAmount(taxAmount);//含税金额
|
|
|
+ headAmount = headAmount.add(taxAmount);
|
|
|
+ }else{
|
|
|
+
|
|
|
+ BigDecimal taxPrice = listProduct.getTaxPrice();
|
|
|
+ BigDecimal taxAmount = quantity.multiply(taxPrice);
|
|
|
+
|
|
|
+ saleOrderProduct = new SaleOrderProduct();
|
|
|
+
|
|
|
+ BeanUtils.copyProperties(listProduct, saleOrderProduct);
|
|
|
+
|
|
|
+ saleOrderProduct.setDeliveryQuantity(BigDecimal.ZERO);
|
|
|
+ saleOrderProduct.setPurchaseQuantity(BigDecimal.ZERO);
|
|
|
+
|
|
|
+ saleOrderProduct.setSourceId(saleOrderProduct.getId());
|
|
|
+ saleOrderProduct.setDiscountedPrice(taxPrice);//折后单价
|
|
|
+ saleOrderProduct.setDiscountedAmount(taxAmount);//折后金额
|
|
|
+ headAmount = headAmount.add(taxAmount);
|
|
|
+ }
|
|
|
+ newSaleOrderProductsList.add(saleOrderProduct);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ saleOrder.setOrganize("上海");
|
|
|
+ saleOrder.setId(UUID.randomUUID().toString());
|
|
|
+ saleOrder.setOrderMoney(headAmount);
|
|
|
+ saleOrder.setCreateBy(null);
|
|
|
+ saleOrder.setCreateTime(null);
|
|
|
+ saleOrder.setConfirmBy(null);
|
|
|
+ saleOrder.setConfirmTime(null);
|
|
|
+
|
|
|
+ saleOrder.setCustomer("上海哥宝海事管理有限公司");
|
|
|
+ saleOrder.setCustomerName("上海哥宝海事管理有限公司");
|
|
|
+
|
|
|
+ saleOrder.setSourceCode(o.getBillCode());
|
|
|
+
|
|
|
+ Result<String> result = serialPatternService.getNextSerial("sale_order", "bill_code");
|
|
|
+ if (!result.isSuccess()) {
|
|
|
+ throw new RuntimeException("编码销售获取失败");
|
|
|
+ }
|
|
|
+ saleOrder.setBillCode(result.getMessage());
|
|
|
+
|
|
|
+ saleOrder.setB2b(1);
|
|
|
+ o.setDelFlag(1);
|
|
|
+
|
|
|
+ saleOrderMapper.insert(saleOrder);
|
|
|
+ for(SaleOrderProduct a:newSaleOrderProductsList){
|
|
|
+ a.setId(null);
|
|
|
+ a.setCreateBy(null);
|
|
|
+ a.setCreateTime(null);
|
|
|
+ a.setHeadId(saleOrder.getId());
|
|
|
+ saleOrderProductMapper.insert(a);
|
|
|
+ }
|
|
|
+
|
|
|
+// 香港采购
|
|
|
+ o.setOrganize("香港");
|
|
|
+ o.setId(UUID.randomUUID().toString());
|
|
|
+ o.setCreateBy(null);
|
|
|
+ o.setCreateTime(null);
|
|
|
+ o.setConfirmBy(null);
|
|
|
+ o.setConfirmTime(null);
|
|
|
+ o.setSupplier("上海哥宝海事管理有限公司");
|
|
|
+ o.setSupplierName("上海哥宝海事管理有限公司");
|
|
|
+
|
|
|
+ o.setSourceCode(o.getBillCode());
|
|
|
+ o.setB2b(1);
|
|
|
+ o.setDelFlag(1);
|
|
|
+
|
|
|
+ Result<String> result2 = serialPatternService.getNextSerial("pur_order", "bill_code");
|
|
|
+ if (!result2.isSuccess()) {
|
|
|
+ throw new RuntimeException("编码采购获取失败");
|
|
|
+ }
|
|
|
+ saleOrder.setBillCode(result2.getMessage());
|
|
|
+ purOrderMapper.insert(o);
|
|
|
+
|
|
|
+ for(PurOrderProduct listProduct : purOrderProductList){
|
|
|
+ listProduct.setHeadId(o.getId());
|
|
|
+ listProduct.setSourceId(listProduct.getId());
|
|
|
+ listProduct.setId(null);
|
|
|
+ listProduct.setCreateBy(null);
|
|
|
+ listProduct.setCreateTime(null);
|
|
|
+ purOrderProductMapper.insert(listProduct);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ // 香港采购 上海销售
|
|
|
+ if(organize.equals("香港")){
|
|
|
+
|
|
|
+
|
|
|
+ BigDecimal headAmount = BigDecimal.ZERO;
|
|
|
+ List<PurOrderProduct> purOrderProductList = purOrderProductMapper.selectByMainId(id);
|
|
|
+
|
|
|
+ for(PurOrderProduct listProduct : purOrderProductList){
|
|
|
+
|
|
|
+ String sourceId = listProduct.getSourceId() == null || listProduct.getSourceId()=="" ? "否":listProduct.getSourceId();
|
|
|
+
|
|
|
+ //取香港采购订单的数量 和香港采购订单的单价 组成新的香港销售订单
|
|
|
+ BigDecimal quantity = listProduct.getQuantity();
|
|
|
+ BigDecimal taxPrice = listProduct.getTaxPrice();
|
|
|
+
|
|
|
+ BigDecimal taxAmount = quantity.multiply(taxPrice);
|
|
|
+ //生成上海销售
|
|
|
+ SaleOrderProduct saleOrderProduct;
|
|
|
+ if(saleOrderProductsListMap.containsKey(sourceId)){
|
|
|
+
|
|
|
+ saleOrderProduct = saleOrderProductsListMap.get(sourceId);
|
|
|
+
|
|
|
+// BigDecimal discount = saleOrderProduct.getDiscount() == null ? BigDecimal.ZERO:saleOrderProduct.getDiscount();
|
|
|
+// BigDecimal discountUs = (new BigDecimal(100).subtract(discount).divide(new BigDecimal(100)));
|
|
|
+
|
|
|
+ saleOrderProduct.setQuantity(quantity);
|
|
|
+ saleOrderProduct.setTaxPrice(taxPrice);
|
|
|
+
|
|
|
+ saleOrderProduct.setDeliveryQuantity(BigDecimal.ZERO);
|
|
|
+ saleOrderProduct.setPurchaseQuantity(BigDecimal.ZERO);
|
|
|
+
|
|
|
+ saleOrderProduct.setDiscountedPrice(taxPrice);//折后单价
|
|
|
+ saleOrderProduct.setDiscountedAmount(taxAmount);//折后金额
|
|
|
+ saleOrderProduct.setTaxAmount(taxAmount);//含税金额
|
|
|
+
|
|
|
+ }else{
|
|
|
+
|
|
|
+ saleOrderProduct = new SaleOrderProduct();
|
|
|
+
|
|
|
+ BeanUtils.copyProperties(listProduct, saleOrderProduct);
|
|
|
+
|
|
|
+ saleOrderProduct.setDeliveryQuantity(BigDecimal.ZERO);
|
|
|
+ saleOrderProduct.setPurchaseQuantity(BigDecimal.ZERO);
|
|
|
+
|
|
|
+ saleOrderProduct.setDiscountedPrice(taxPrice);//折后单价
|
|
|
+ saleOrderProduct.setDiscountedAmount(taxAmount);//折后金额
|
|
|
+
|
|
|
+ }
|
|
|
+ saleOrderProduct.setSourceId(listProduct.getId());
|
|
|
+ newSaleOrderProductsList.add(saleOrderProduct);
|
|
|
+ headAmount = headAmount.add(taxAmount);
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ saleOrder.setSourceCode(o.getBillCode());
|
|
|
+ saleOrder.setOrganize("香港");
|
|
|
+ saleOrder.setId(UUID.randomUUID().toString());
|
|
|
+ saleOrder.setOrderMoney(headAmount);
|
|
|
+ saleOrder.setCreateBy(null);
|
|
|
+ saleOrder.setCreateTime(null);
|
|
|
+ saleOrder.setConfirmBy(null);
|
|
|
+ saleOrder.setConfirmTime(null);
|
|
|
+
|
|
|
+ saleOrder.setCustomer("上海哥宝海事管理有限公司");
|
|
|
+ saleOrder.setCustomerName("上海哥宝海事管理有限公司");
|
|
|
+
|
|
|
+ Result<String> result = serialPatternService.getNextSerial("sale_order", "bill_code");
|
|
|
+ if (!result.isSuccess()) {
|
|
|
+ throw new RuntimeException("编码获取失败");
|
|
|
+ }
|
|
|
+ saleOrder.setBillCode(result.getMessage());
|
|
|
+
|
|
|
+ saleOrder.setB2b(1);
|
|
|
+ saleOrder.setDelFlag(1);
|
|
|
+ saleOrderMapper.insert(saleOrder);
|
|
|
+ for(SaleOrderProduct a:newSaleOrderProductsList){
|
|
|
+ a.setId(null);
|
|
|
+ a.setCreateBy(null);
|
|
|
+ a.setCreateTime(null);
|
|
|
+ a.setHeadId(saleOrder.getId());
|
|
|
+ saleOrderProductMapper.insert(a);
|
|
|
+ }
|
|
|
+
|
|
|
+// 香港采购
|
|
|
+
|
|
|
+ o.setSourceCode(o.getId());
|
|
|
+ o.setOrganize("上海");
|
|
|
+ o.setId(UUID.randomUUID().toString());
|
|
|
+ o.setCreateBy(null);
|
|
|
+ o.setCreateTime(null);
|
|
|
+ o.setConfirmBy(null);
|
|
|
+ o.setConfirmTime(null);
|
|
|
+ o.setSupplier("上海哥宝海事管理有限公司");
|
|
|
+ o.setSupplierName("上海哥宝海事管理有限公司");
|
|
|
+
|
|
|
+ o.setB2b(1);
|
|
|
+ o.setDelFlag(1);
|
|
|
+
|
|
|
+ purOrderMapper.insert(o);
|
|
|
+
|
|
|
+ for(PurOrderProduct listProduct : purOrderProductList){
|
|
|
+ listProduct.setHeadId(o.getId());
|
|
|
+ listProduct.setSourceId(listProduct.getId());
|
|
|
+ listProduct.setId(null);
|
|
|
+ listProduct.setCreateBy(null);
|
|
|
+ listProduct.setCreateTime(null);
|
|
|
+ purOrderProductMapper.insert(listProduct);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void main(String[] args) {
|
|
|
+ BigDecimal discount = new BigDecimal("1");
|
|
|
+ BigDecimal discountUs = (new BigDecimal(100).subtract(discount).divide(new BigDecimal(100)));
|
|
|
+ System.out.println(discountUs);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 取消提交时执行B2B操作
|
|
|
+ * @param list
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
+ public void returnSubmitBatch(List<PurOrder> list){
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void delMain(String id) {
|