|
@@ -1327,7 +1327,7 @@ func (r *WrFactorTypeInfo) buildItemList(lst []WrFactorTypeInfo) []WrTypeItem {
|
|
|
return lstItem
|
|
return lstItem
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-//WrFactorTypeInfoEx 类型id
|
|
|
|
|
|
|
+// WrFactorTypeInfoEx 类型id
|
|
|
type WrFactorTypeInfoEx struct {
|
|
type WrFactorTypeInfoEx struct {
|
|
|
WRFACTORTYPEID string `json:"wrfactortypeid" xorm:"'WRFACTORTYPEID'" form:"wrfactortypeid"`
|
|
WRFACTORTYPEID string `json:"wrfactortypeid" xorm:"'WRFACTORTYPEID'" form:"wrfactortypeid"`
|
|
|
}
|
|
}
|
|
@@ -2930,6 +2930,13 @@ type WrOutInApply struct {
|
|
|
BEGINDATE string `json:"begindate" form:"begindate"` // 开始交易日(yyyymmdd)
|
|
BEGINDATE string `json:"begindate" form:"begindate"` // 开始交易日(yyyymmdd)
|
|
|
ENDDATE string `json:"enddate" form:"enddate"` // 结束交易日(yyyymmdd)
|
|
ENDDATE string `json:"enddate" form:"enddate"` // 结束交易日(yyyymmdd)
|
|
|
|
|
|
|
|
|
|
+ APPOINTMENTMODEL int32 `json:"appointmentmodel" xorm:"'APPOINTMENTMODEL'"` // 预约方式 - 1:物流 2:自送 3:自提
|
|
|
|
|
+ APPOINTMENTMODELDISPLAY string `json:"appointmentmodeldisplay" xorm:"'APPOINTMENTMODELDISPLAY'"` // 预约方式(显示枚举)
|
|
|
|
|
+ CONTACTNAME string `json:"contactname" xorm:"'CONTACTNAME'"` // 联系人
|
|
|
|
|
+ CONTACTNUM string `json:"contactnum" xorm:"'CONTACTNUM'"` // 联系方式
|
|
|
|
|
+ ADDRESS string `json:"address" xorm:"ADDRESS"` // 详细地址
|
|
|
|
|
+ APPOINTMENTREMARK string `json:"appointmentremark" xorm:"'APPOINTMENTREMARK'"` // 申请备注
|
|
|
|
|
+
|
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
PageEx `xorm:"extends"` // 页码信息
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -2971,6 +2978,12 @@ func (r *WrOutInApply) buildSql() string {
|
|
|
" decode(t.applytype, 2, t.inqty, 4, t.inrealqty) qty," +
|
|
" decode(t.applytype, 2, t.inqty, 4, t.inrealqty) qty," +
|
|
|
" e.expressnum," +
|
|
" e.expressnum," +
|
|
|
" e.expresscompany," +
|
|
" e.expresscompany," +
|
|
|
|
|
+ " t.appointmentmodel," +
|
|
|
|
|
+ " en1.enumdicname appointmentmodeldisplay," +
|
|
|
|
|
+ " t.contactname," +
|
|
|
|
|
+ " t.contactnum," +
|
|
|
|
|
+ " t.address," +
|
|
|
|
|
+ " t.appointmentremark," +
|
|
|
" k.*" +
|
|
" k.*" +
|
|
|
" from WROutInApply t" +
|
|
" from WROutInApply t" +
|
|
|
" left join wroutindetail d" +
|
|
" left join wroutindetail d" +
|