From af085dd2fdea97c66ed9520f31754e1025d9dc02 Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期二, 10 十二月 2024 16:06:58 +0800 Subject: [PATCH] 582-在售商品可以直接进行删除,需要进行优化,在售商品删除提示无法删除,需要先进行下架再进行删除 --- src/main/java/com/mzl/flower/dto/response/report/OrderReportResultVO.java | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/mzl/flower/dto/response/report/OrderReportResultVO.java b/src/main/java/com/mzl/flower/dto/response/report/OrderReportResultVO.java index 0839330..7c82985 100644 --- a/src/main/java/com/mzl/flower/dto/response/report/OrderReportResultVO.java +++ b/src/main/java/com/mzl/flower/dto/response/report/OrderReportResultVO.java @@ -19,6 +19,9 @@ @ApiModelProperty("销售额") private BigDecimal orderTotal; + @ApiModelProperty("销售合计(实付)") + private BigDecimal totalAmount; + @ApiModelProperty("花农底价") private BigDecimal orderSupplierPriceAmount; @@ -64,9 +67,21 @@ @ApiModelProperty("总包干费--暂无") private BigDecimal partnerTotalFeeAmount; + @ApiModelProperty("总销售扎数") + private Integer orderNum; + @ApiModelProperty("实际销售扎数") private Integer realSaleNum; + @ApiModelProperty("缺货扎数") + private BigDecimal orderLackNum; + + @ApiModelProperty("降级扎数") + private BigDecimal orderReduceNum; + + @ApiModelProperty("补货扎数") + private BigDecimal orderReplaceNum; + @ApiModelProperty("利润--总包干费没有无法计算") private BigDecimal profitFeeAmount; -- Gitblit v1.9.3