Ver código fonte

增加出参

zhou.xiaoning 3 anos atrás
pai
commit
ce9d53595e
4 arquivos alterados com 15 adições e 2 exclusões
  1. 4 0
      docs/docs.go
  2. 4 0
      docs/swagger.json
  3. 3 0
      docs/swagger.yaml
  4. 4 2
      models/guangzuan.go

+ 4 - 0
docs/docs.go

@@ -28975,6 +28975,10 @@ const docTemplate = `{
                     "description": "原产地 - 类型:3",
                     "type": "string"
                 },
+                "performancetemplateid": {
+                    "description": "履约计划模板ID",
+                    "type": "integer"
+                },
                 "price": {
                     "description": "总价(价格) - 类型:1,2,3,4,5",
                     "type": "number"

+ 4 - 0
docs/swagger.json

@@ -28966,6 +28966,10 @@
                     "description": "原产地 - 类型:3",
                     "type": "string"
                 },
+                "performancetemplateid": {
+                    "description": "履约计划模板ID",
+                    "type": "integer"
+                },
                 "price": {
                     "description": "总价(价格) - 类型:1,2,3,4,5",
                     "type": "number"

+ 3 - 0
docs/swagger.yaml

@@ -9675,6 +9675,9 @@ definitions:
       origin:
         description: 原产地 - 类型:3
         type: string
+      performancetemplateid:
+        description: 履约计划模板ID
+        type: integer
       price:
         description: 总价(价格) - 类型:1,2,3,4,5
         type: number

+ 4 - 2
models/guangzuan.go

@@ -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