|
|
@@ -1825,8 +1825,9 @@ type GZGoods struct {
|
|
|
ZSCZCOLOR3TYPE int32 `json:"zsczcolor3type" xorm:"ZSCZCOLOR3TYPE"` // 彩钻颜色3 - 枚举”ZSCZColor3Type“ - 类型:5
|
|
|
ISVALID int32 `json:"isvalid" xorm:"ISVALID"` // 是否有效 - 0:无效 1:有效
|
|
|
|
|
|
- WRTRADEORDERID string `json:"wrtradeorderid" xorm:"WRTRADEORDERID1" form:"wrtradeorderid"` // 仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)
|
|
|
- REMAINQTY float64 `json:"remainqty" xorm:"REMAINQTY"` // 剩余重量
|
|
|
+ WRTRADEORDERID string `json:"wrtradeorderid" xorm:"WRTRADEORDERID1" form:"wrtradeorderid"` // 仓单贸易委托单ID(320+Unix秒时间戳(10位)+xxxxxx)
|
|
|
+ PERFORMANCETEMPLATEID int64 `json:"performancetemplateid" xorm:"PERFORMANCETEMPLATEID"` // 履约计划模板ID
|
|
|
+ REMAINQTY float64 `json:"remainqty" xorm:"REMAINQTY"` // 剩余重量
|
|
|
|
|
|
MOBILE string `json:"mobile"` // 手机号码
|
|
|
}
|
|
|
@@ -1849,6 +1850,7 @@ func (r *GZGoods) buildSql() string {
|
|
|
t.*,
|
|
|
u.MOBILE,
|
|
|
to_char(od.WRTRADEORDERID) WRTRADEORDERID1,
|
|
|
+ od.PERFORMANCETEMPLATEID,
|
|
|
((od.ORDERQTY - od.TRADEQTY) / 100) REMAINQTY
|
|
|
FROM View_GZ_WRStandard_Ex_Query t
|
|
|
LEFT JOIN userinfo u ON u.USERID = t.USERID
|