master:系统bug修复;

pull/1121/head
liujiang 2025-10-20 23:24:18 +08:00
parent 9b508c858d
commit 72f1394437
4 changed files with 5 additions and 2 deletions

View File

@ -15,7 +15,7 @@
FROM
store_sale_detail ssd
WHERE
ssd.del_flag = 0 AND ss.voucher_date = #{voucherDate}
ssd.del_flag = 0 AND ssd.voucher_date = #{voucherDate}
GROUP BY
ssd.store_id,
ssd.store_cus_id

View File

@ -34,6 +34,8 @@ public class ShopCartPageResDTO {
private String prodStatus;
@ApiModelProperty(value = "标注尺码")
private String standardSize;
@ApiModelProperty(value = "发货时效")
private Integer deliveryTime;
@ApiModelProperty(value = "进货车明细列表")
List<ShopCartPageDetailResDTO> detailList;

View File

@ -331,7 +331,7 @@ public class StoreServiceImpl implements IStoreService {
return new StoreIndexOverviewResDTO().setSaleAmount(saleAmount).setRefundAmount(refundAmount).setSaleNum(saleNum).setRefundNum(refundNum)
.setStorageNum(storageNum).setCustomerNum(customerNum).setStoreId(overviewDTO.getStoreId())
.setTopSaleCusName(ObjectUtils.isNotEmpty(maxSaleCus) ? maxSaleCus.getTopSaleCusName() : "")
.setTopSaleCusAmount(ObjectUtils.isNotEmpty(maxSaleCus) ? maxSaleCus.getTopSaleCusAmount() : null);
.setTopSaleCusAmount(ObjectUtils.isNotEmpty(maxSaleCus) ? maxSaleCus.getTopSaleCusAmount() : BigDecimal.ZERO);
}
/**

View File

@ -31,6 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
s.store_name,
sp.prod_art_num,
sp.prod_title,
sp.delivery_time,
CASE
sp.prod_status
WHEN 2 THEN