liujiandao
2023-11-14 2f32021ab211cd901e36c4cbc5875f0f072385bb
docs/swagger.yaml
@@ -1,4 +1,45 @@
definitions:
  code.CodeAuto:
    properties:
      AutoLength:
        type: integer
      Desc:
        type: string
      PrefixMethod:
        type: integer
      PrefixValue:
        type: string
      SuffixMethod:
        type: integer
    type: object
  code.CodeRule:
    properties:
      Desc:
        type: string
      Length:
        type: integer
      Name:
        type: string
    type: object
  code.CodeStandard:
    properties:
      AutoRule:
        $ref: '#/definitions/code.CodeAuto'
      ID:
        type: string
      List:
        items:
          $ref: '#/definitions/code.CodeRule'
        type: array
      Method:
        type: integer
      Name:
        type: string
      Status:
        type: string
      Type:
        type: string
    type: object
  constvar.BaseOperationType:
    enum:
    - 1
@@ -181,6 +222,20 @@
    - Consumables
    - Server
    - StoredProduct
  constvar.PurchaseType:
    enum:
    - 1
    - 2
    - 3
    type: integer
    x-enum-comments:
      PurchaseTypeEntrust: 委外
      PurchaseTypeOutSource: 采购
      PurchaseTypeSelf: 自制
    x-enum-varnames:
    - PurchaseTypeOutSource
    - PurchaseTypeSelf
    - PurchaseTypeEntrust
  constvar.ReservationMethod:
    enum:
    - 1
@@ -359,6 +414,8 @@
        items:
          $ref: '#/definitions/models.Attachment'
        type: array
      autoIncr:
        type: integer
      barcode:
        description: 条码
        type: string
@@ -373,6 +430,10 @@
        type: integer
      categoryName:
        description: 产品类别名称
        type: string
      codeStandardID:
        description: Explain           string                  `gorm:"type:varchar(512);comment:编号说明"
          json:"explain"`
        type: string
      companyId:
        description: 公司id
@@ -418,8 +479,7 @@
        - $ref: '#/definitions/constvar.InvoicingStrategy'
        description: 开票策略
      isSale:
        description: PurchaseType      constvar.PurchaseType `gorm:"type:int(11);comment:采购类型"
          json:"purchaseType"`
        description: 是否销售
        type: boolean
      makeAdvanceTime:
        description: 制造前置时间(天)
@@ -428,11 +488,7 @@
        description: 最大库存
        type: number
      minInventory:
        description: |-
          Explain           string                  `gorm:"type:varchar(512);comment:编号说明" json:"explain"`
          CodeStandardID    string                  `gorm:"type:varchar(191);comment:编码规范ID" json:"codeStandardID"`
          Specs             string                  `gorm:"type:varchar(191);comment:物料规格" json:"specs"`
          Type              string                  `gorm:"type:varchar(191);comment:物料型号" json:"type"`
        description: 最小库存
        type: number
      minPurchaseAmount:
        description: |-
@@ -446,6 +502,8 @@
          json:"materialType"`
      name:
        description: 物料名称
        type: string
      note:
        type: string
      orderAdvanceTime:
        description: 订单准备天数(天)
@@ -473,6 +531,8 @@
      purchasePrice:
        description: 采购价格
        type: number
      purchaseType:
        $ref: '#/definitions/constvar.PurchaseType'
      salePrice:
        description: 销售单价
        type: number
@@ -482,14 +542,17 @@
      sellExplain:
        description: 销售说明
        type: string
      specs:
        type: string
      supplier:
        description: |-
          FSource           string                  `gorm:"type:varchar(191);comment:生产车间" json:"-"`
          Status            constvar.MaterialStatus `gorm:"type:int(11);comment:状态" json:"status"`
        type: string
      templateID:
        description: Note              string                  `gorm:"type:varchar(1024);comment:备注"
          json:"note"`
        description: 模板ID
        type: string
      type:
        type: string
      unit:
        description: LockAmount        decimal.Decimal         `gorm:"type:decimal(35,18);default:0;comment:锁定数量"
@@ -1578,6 +1641,68 @@
      summary: 上传附件
      tags:
      - 附件管理
  /api-wms/v1/code/getAutoCode:
    post:
      parameters:
      - description: 参数
        in: body
        name: object
        required: true
        schema:
          $ref: '#/definitions/code.CodeStandard'
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            allOf:
            - $ref: '#/definitions/util.ResponseList'
            - properties:
                data:
                  additionalProperties: true
                  type: object
              type: object
      summary: 获取自动编码
      tags:
      - 编码
  /api-wms/v1/code/getCodeList:
    get:
      parameters:
      - in: query
        name: codeStandID
        type: string
      - in: query
        name: name
        type: string
      - description: 页码
        in: query
        name: page
        type: integer
      - description: 每页大小
        in: query
        name: pageSize
        type: integer
      - in: query
        name: type
        type: string
      produces:
      - application/json
      responses:
        "200":
          description: OK
          schema:
            allOf:
            - $ref: '#/definitions/util.ResponseList'
            - properties:
                data:
                  items:
                    $ref: '#/definitions/code.CodeStandard'
                  type: array
              type: object
      summary: 获取编码列表
      tags:
      - 编码
  /api-wms/v1/company/company:
    get:
      parameters: