第二件半价券

This commit is contained in:
2025-09-29 15:51:49 +08:00
parent 76d69a7c5c
commit bdc7b208c0

View File

@@ -201,6 +201,10 @@ public class OrderDetail implements Serializable {
return packAmount == null ? BigDecimal.ZERO : packAmount; return packAmount == null ? BigDecimal.ZERO : packAmount;
} }
public BigDecimal getDiscountAmount() {
return discountAmount == null ? BigDecimal.ZERO : discountAmount;
}
public String getRefundRemark() { public String getRefundRemark() {
return StrUtil.isBlank(refundRemark) ? "" : refundRemark + " "; return StrUtil.isBlank(refundRemark) ? "" : refundRemark + " ";
} }