master:返单记录去掉其它优惠字段;
parent
31f82dd209
commit
2f8f2ca567
|
|
@ -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 '尺码',
|
||||
|
|
|
|||
|
|
@ -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())
|
||||
|
|
|
|||
Loading…
Reference in New Issue