master:销售明细其它优惠字段去除;

pull/1121/head
liujiang 2025-09-19 12:19:57 +08:00
parent 4abf72a288
commit 40fa651202
2 changed files with 0 additions and 7 deletions

View File

@ -3904,7 +3904,6 @@ CREATE TABLE `store_sale_detail`
`discounted_price` decimal(10, 2) UNSIGNED NULL DEFAULT NULL COMMENT '给客户优惠后单价',
`quantity` int NOT NULL COMMENT '数量',
`amount` decimal(10, 2) NOT NULL COMMENT '总金额',
`other_discount` decimal(10, 2) UNSIGNED NULL DEFAULT NULL COMMENT '其它优惠',
`color_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '颜色',
`size` int UNSIGNED NULL DEFAULT NULL COMMENT '尺码',
`sn` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '条码',

View File

@ -96,11 +96,6 @@ public class StoreSaleDetail extends XktBaseEntity {
*/
@Excel(name = "总金额")
private BigDecimal amount;
/**
*
*/
@Excel(name = "其它优惠")
private BigDecimal otherDiscount;
/**
*
*/
@ -124,7 +119,6 @@ public class StoreSaleDetail extends XktBaseEntity {
.append("discountedPrice", getDiscountedPrice())
.append("quantity", getQuantity())
.append("amount", getAmount())
.append("otherDiscount", getOtherDiscount())
.append("version", getVersion())
.append("delFlag", getDelFlag())
.append("createBy", getCreateBy())