|
|
|
@ -45,6 +45,8 @@ import org.springblade.core.tool.api.R;
|
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
|
import org.springblade.core.tool.utils.DateUtil; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.context.annotation.Lazy; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
@ -55,22 +57,35 @@ import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
|
@Slf4j |
|
|
|
|
@Service |
|
|
|
|
@AllArgsConstructor |
|
|
|
|
public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOrderInfoMapper, StatisticsOrderInfoEntity> implements IStatisticsOrderInfoService { |
|
|
|
|
|
|
|
|
|
private final IStatisticsChangesRecordService changesRecordService; |
|
|
|
|
private final IStatisticsChangesPhotoService changesPhotoService; |
|
|
|
|
private final IStatisticsBalanceOrderInfoService balanceOrderInfoService; |
|
|
|
|
private final IBasicdataPriceClient priceClient; |
|
|
|
|
private final IStatisticsDistributionPackageService distributionPackageService; |
|
|
|
|
private final IStatisticsWarehousePackageService warehousePackageService; |
|
|
|
|
private final IStatisticsTrunklinePackageService trunklinePackageService; |
|
|
|
|
private final IStatisticsReconciliationOrderInfoService reconciliationOrderInfoService; |
|
|
|
|
private final IStatisticsAftersalesOrderRecordService aftersalesOrderRecordService; |
|
|
|
|
private final IBasicdataWarehouseClient warehouseClient; |
|
|
|
|
private final IStatisticsBalanceRecordService balanceRecordService; |
|
|
|
|
private final IWarehouseWaybillClient warehouseWaybillClient; |
|
|
|
|
private final IBasicdataClientClient basicdataClientClient; |
|
|
|
|
@Autowired |
|
|
|
|
private IStatisticsChangesRecordService changesRecordService; |
|
|
|
|
@Autowired |
|
|
|
|
private IStatisticsChangesPhotoService changesPhotoService; |
|
|
|
|
@Lazy |
|
|
|
|
@Autowired |
|
|
|
|
private IStatisticsBalanceOrderInfoService balanceOrderInfoService; |
|
|
|
|
@Autowired |
|
|
|
|
private IBasicdataPriceClient priceClient; |
|
|
|
|
@Autowired |
|
|
|
|
private IStatisticsDistributionPackageService distributionPackageService; |
|
|
|
|
@Autowired |
|
|
|
|
private IStatisticsWarehousePackageService warehousePackageService; |
|
|
|
|
@Autowired |
|
|
|
|
private IStatisticsTrunklinePackageService trunklinePackageService; |
|
|
|
|
@Autowired |
|
|
|
|
private IStatisticsReconciliationOrderInfoService reconciliationOrderInfoService; |
|
|
|
|
@Autowired |
|
|
|
|
private IStatisticsAftersalesOrderRecordService aftersalesOrderRecordService; |
|
|
|
|
@Autowired |
|
|
|
|
private IBasicdataWarehouseClient warehouseClient; |
|
|
|
|
@Autowired |
|
|
|
|
private IStatisticsBalanceRecordService balanceRecordService; |
|
|
|
|
@Autowired |
|
|
|
|
private IWarehouseWaybillClient warehouseWaybillClient; |
|
|
|
|
@Autowired |
|
|
|
|
private IBasicdataClientClient basicdataClientClient; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<StatisticsOrderInfoEntity> findListByWaybillId(Long waybillId) { |
|
|
|
@ -786,7 +801,8 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
// updateById(orderInfoEntity);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Boolean.TRUE; } |
|
|
|
|
return Boolean.TRUE; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public StatisticsPackageFeeInfoVO findPackageListByOrderIds(List<Long> orderInfoIdsList) { |
|
|
|
@ -1113,7 +1129,7 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
balanceOrderInfoEntity.setIsAftersale(0); |
|
|
|
|
balanceOrderInfoEntity.setAftersalesFee(BigDecimal.ZERO); |
|
|
|
|
|
|
|
|
|
balanceOrderInfoEntity.setBalanceStatus(2); |
|
|
|
|
balanceOrderInfoEntity.setBalanceStatus(0); |
|
|
|
|
balanceOrderInfoEntity.setHasBalanceFee(balanceOrderInfoEntity.getTotalBalanceFee()); |
|
|
|
|
balanceOrderInfoEntity.setBalanceUserName(AuthUtil.getUserName()); |
|
|
|
|
balanceOrderInfoEntity.setBalanceTime(new Date(System.currentTimeMillis())); |
|
|
|
@ -1161,26 +1177,21 @@ public class StatisticsOrderInfoServiceImpl extends BaseServiceImpl<StatisticsOr
|
|
|
|
|
// 批量更新运单状态
|
|
|
|
|
List<WarehouseWaybillEntity> te = warehouseWaybillClient.findListByWaybillIds(waybillIds); |
|
|
|
|
List<WarehouseWaybillEntity> data = new ArrayList<>(); |
|
|
|
|
te.forEach(waybillEntity ->{ |
|
|
|
|
te.forEach(waybillEntity -> { |
|
|
|
|
WarehouseWaybillEntity t = new WarehouseWaybillEntity(); |
|
|
|
|
t.setId(waybillEntity.getId()); |
|
|
|
|
t.setPayStatus("30"); |
|
|
|
|
t.setSettlementStatus("30"); |
|
|
|
|
// t.setSettlementStatus("30");
|
|
|
|
|
data.add(t); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
warehouseWaybillClient.updateList(data); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return R.success("操作成功"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|