Ver código fonte

1.查现货商品详情增加单位id字段

zou.yingbin 4 anos atrás
pai
commit
0172d28c82
4 arquivos alterados com 334 adições e 2671 exclusões
  1. 80 873
      docs/docs.go
  2. 80 873
      docs/swagger.json
  3. 168 925
      docs/swagger.yaml
  4. 6 0
      models/ermcp3.go

Diferenças do arquivo suprimidas por serem muito extensas
+ 80 - 873
docs/docs.go


Diferenças do arquivo suprimidas por serem muito extensas
+ 80 - 873
docs/swagger.json


Diferenças do arquivo suprimidas por serem muito extensas
+ 168 - 925
docs/swagger.yaml


+ 6 - 0
models/ermcp3.go

@@ -2353,6 +2353,7 @@ type XHDeliveryGoods struct {
 	ISVALID           int32  `json:"isvalid"  xorm:"'ISVALID'"`                                        // 是否有效 - 0:无效 1:有效
 	DGSTATUS          int32  `json:"dgstatus"  xorm:"'DGSTATUS'"`                                      // 品种状态 - 作废 - 0:未激活 1:正常
 	REMARK            string `json:"remark"  xorm:"'REMARK'"`                                          // 备注
+	UNITID            int64  `json:"unitid"  xorm:"'UNITID'"`                                          // 单位id(目前看,数据库中是空值)
 
 	WDLST []XHWrstandard `json:"wdlst"` // 品类(现货商品)列表
 	BDLST []XHBRAND      `json:"bdlst"` // 品牌列表
@@ -2373,6 +2374,7 @@ SELECT t.AREAUSERID,
        t.DELIVERYGOODSNAME,
        t.ISVALID,
        t.DGSTATUS,
+       t.GOODSUNITID UNITID,
        t.REMARK
   FROM DELIVERYGOODS t
  WHERE 1 = 1
@@ -2461,6 +2463,7 @@ type XHWrstandard struct {
 	WRSTANDARDNAME  string  `json:"wrstandardname"  xorm:"'WRSTANDARDNAME'"`                          // 现货商品名称
 	VATRATE         float64 `json:"vatrate"  xorm:"'VATRATE'"`                                        // 增值税率
 	ENUMDICNAME     string  `json:"enumdicname"  xorm:"'ENUMDICNAME'"`                                // 单位名称
+	UNITID          int64   `json:"unitid"  xorm:"'UNITID'"`                                          // 单位id
 
 	MGLST []XHMiddleGoods `json:"mglst"` // 套保品列表
 }
@@ -2479,6 +2482,7 @@ select t.areauserid,
        t.wrstandardcode,
        t.wrstandardname,
        t.vatrate,
+       t.unitid,
        e.enumdicname
   from wrstandard t
   left join enumdicitem e
@@ -2530,6 +2534,7 @@ type XHMiddleGoods struct {
 	MIDDLEGOODSCODE string  `json:"middlegoodscode"  xorm:"'MIDDLEGOODSCODE'"`    // 套保品种代码
 	MIDDLEGOODSNAME string  `json:"middlegoodsname"  xorm:"'MIDDLEGOODSNAME'"`    // 套保品种名称
 	ENUMDICNAME     string  `json:"enumdicname"  xorm:"'ENUMDICNAME'"`            // 单位名称
+	UNITID          int64   `json:"unitid"  xorm:"'UNITID'"`                      // 单位id
 }
 
 func (r *XHMiddleGoods) calc() {
@@ -2544,6 +2549,7 @@ select w.wrstandardid,
        m.middlegoodsid,
        m.middlegoodscode,
        m.middlegoodsname,
+       m.goodsunitid unitid,
        e.enumdicname
   from wrstandard w
  inner join erms2_wrsconvertdetail c

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff