...
|
...
|
@@ -127,7 +127,7 @@ func (m *Order) OrderAmountCancel() float64 { |
|
|
if m.OrderAmount <= m.OrderActualAmount {
|
|
|
return 0
|
|
|
}
|
|
|
return utils.Decimal((m.OrderAmount - m.OrderActualAmount))
|
|
|
return utils.Decimal(m.OrderAmount - m.OrderActualAmount)
|
|
|
}
|
|
|
|
|
|
//订单是否已读
|
...
|
...
|
@@ -152,6 +152,7 @@ type OrderQueryOption struct { |
|
|
|
|
|
type DividendOrdersQueryOption struct {
|
|
|
PartnerId int64 `json:"partnerId"`
|
|
|
OrderType int `json:"orderType"` //订单类型
|
|
|
DetailAction int `json:"detailAction"` //明细类型(0已收明细、1未收明细)
|
|
|
DividendAction int `json:"dividendAction"` //分红类型(0累计分红、1分红支出)
|
|
|
StartTime int64 `json:"startTime" `
|
...
|
...
|
|