master:返单记录去掉其它优惠字段;

pull/1121/head
liujiang 2025-09-19 15:10:15 +08:00
parent 31f82dd209
commit 2f8f2ca567
2 changed files with 0 additions and 4 deletions

View File

@ -3963,7 +3963,6 @@ CREATE TABLE `store_sale_refund_record_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 '其它优惠',
`sns` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci 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 '尺码',

View File

@ -88,8 +88,6 @@ public class StoreSaleRefundRecordDetail extends XktBaseEntity {
/**
*
*/
@Excel(name = "其它优惠")
private BigDecimal otherDiscount;
/**
*
*/
@ -108,7 +106,6 @@ public class StoreSaleRefundRecordDetail extends XktBaseEntity {
.append("discountedPrice", getDiscountedPrice())
.append("quantity", getQuantity())
.append("amount", getAmount())
.append("otherDiscount", getOtherDiscount())
.append("version", getVersion())
.append("delFlag", getDelFlag())
.append("createBy", getCreateBy())