|
|
@@ -1119,6 +1119,7 @@ type WrPerformancePlan struct {
|
|
|
CURSTEPDEADLINE string `json:"curstepdeadline" xorm:"CURSTEPDEADLINE" form:"curstepdeadline"` // 当前步骤到期时间
|
|
|
STARTTIME string `json:"starttime" xorm:"'STARTTIME'"` // 开始时间
|
|
|
QTY float64 `json:"qty" xorm:"QTY" form:"qty"` // 履约数量
|
|
|
+ STEPTYPEID int32 `json:"steptypeid" xorm:"STEPTYPEID" form:"steptypeid"` // 履约步骤类型ID - 1:买方支付 2:卖方收款 3:买方自提 4:卖方发货 5:买方确认货 6:卖方发票 7:买方确认票 8:仓单转移 9:释放卖方冻结 10:货款溢短 11:生成合同[中江] 12:运费 90:确认支付 91. 确认放行 92买方支付(直接扣款) 用于-1模板“
|
|
|
Wr2FactorType `xorm:"extends"`
|
|
|
|
|
|
CURSTEPNAME string `json:"curstepname" xorm:"'CURSTEPNAME'"` // 当前步骤名称
|
|
|
@@ -1196,6 +1197,7 @@ func (r *WrPerformancePlan) buildSql() string {
|
|
|
" u1.accountname buyusername," +
|
|
|
" u2.accountname sellusername," +
|
|
|
" s.steptypename CURSTEPNAME," +
|
|
|
+ " s.steptypeid," +
|
|
|
" to_char(k.starttime, 'yyyy-mm-dd hh24:mi:ss') starttime," +
|
|
|
" tmp.*" +
|
|
|
" from performanceplan t" +
|