| | |
| | | location: |
| | | $ref: '#/definitions/models.Location' |
| | | locationId: |
| | | description: |- |
| | | LocationProductId int `json:"locationProductId" gorm:"type:int;not null;comment:上架规则id"` //上架规则id |
| | | LocationProduct LocationProduct `json:"locationProduct" gorm:"foreignKey:LocationProductId;references:Id"` |
| | | description: 位置id |
| | | type: integer |
| | | product: |
| | | $ref: '#/definitions/models.Material' |
| | |
| | | type: string |
| | | updateTime: |
| | | type: string |
| | | warehouseId: |
| | | type: integer |
| | | type: object |
| | | models.LogisticCompany: |
| | | properties: |
| | |
| | | type: string |
| | | custodianId: |
| | | type: string |
| | | dealerType: |
| | | type: string |
| | | details: |
| | | items: |
| | | $ref: '#/definitions/models.OperationDetails' |
| | | type: array |
| | | id: |
| | | type: integer |
| | | inventoryDealer: |
| | | $ref: '#/definitions/models.MiniDict' |
| | | inventoryDealerType: |
| | | type: integer |
| | | isInternalOutput: |
| | | description: 是否调拨产生的出库 |
| | |
| | | description: 单号 |
| | | type: string |
| | | operationDate: |
| | | description: |- |
| | | FromLocationID int `json:"fromLocationId" gorm:"type:int;not null;comment:源位置id"` //源位置id |
| | | FromLocation Location `json:"fromLocation" gorm:"foreignKey:FromLocationID;references:Id"` //源位置 |
| | | ToLocationID int `json:"toLocationId" gorm:"type:int;not null;comment:目标位置id"` //目标位置id |
| | | ToLocation Location `json:"toLocation" gorm:"foreignKey:ToLocationID;references:Id"` //目标位置 |
| | | type: string |
| | | operationSource: |
| | | allOf: |
| | |
| | | type: string |
| | | salePrice: |
| | | description: 销售单价 |
| | | type: number |
| | | stockAmount: |
| | | description: 库存数量,盘点时用 |
| | | type: number |
| | | toLocation: |
| | | allOf: |
| | |
| | | type: string |
| | | custodianId: |
| | | type: string |
| | | dealerType: |
| | | type: string |
| | | details: |
| | | items: |
| | | $ref: '#/definitions/request.OperationDetails' |
| | | type: array |
| | | id: |
| | | type: integer |
| | | inventoryDealerType: |
| | | type: integer |
| | | locationId: |
| | | description: 源位置id |
| | |
| | | description: 仓库ID |
| | | type: integer |
| | | type: object |
| | | request.GetLocationProductList: |
| | | properties: |
| | | keyword: |
| | | type: string |
| | | locationId: |
| | | type: integer |
| | | page: |
| | | description: 页码 |
| | | type: integer |
| | | pageSize: |
| | | description: 每页大小 |
| | | type: integer |
| | | warehouseId: |
| | | type: integer |
| | | type: object |
| | | request.GetMiniDictList: |
| | | properties: |
| | | type: |
| | |
| | | type: string |
| | | salePrice: |
| | | description: 销售单价 |
| | | type: number |
| | | stockAmount: |
| | | description: 库存数量,盘点时用 |
| | | type: number |
| | | toLocationId: |
| | | description: 目标位置id |
| | |
| | | summary: 库存盘点列表 |
| | | tags: |
| | | - 库存盘点 |
| | | /api-wms/v1/locationProductAmount/locationProductList: |
| | | post: |
| | | parameters: |
| | | - description: 查询参数 |
| | | in: body |
| | | name: object |
| | | required: true |
| | | schema: |
| | | $ref: '#/definitions/request.GetLocationProductList' |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: OK |
| | | schema: |
| | | $ref: '#/definitions/util.ResponseList' |
| | | summary: 获取位置对应产品列表 |
| | | tags: |
| | | - 库存盘点 |
| | | /api-wms/v1/locationProductAmount/update: |
| | | post: |
| | | parameters: |
| | |
| | | name: id |
| | | required: true |
| | | type: string |
| | | - description: token |
| | | in: header |
| | | name: Authorization |
| | | required: true |
| | | type: string |
| | | produces: |
| | | - application/json |
| | | responses: |
| | | "200": |
| | | description: 成功 |
| | | schema: |
| | | $ref: '#/definitions/util.Response' |
| | | summary: 入库/出库列表 |
| | | allOf: |
| | | - $ref: '#/definitions/util.Response' |
| | | - properties: |
| | | data: |
| | | $ref: '#/definitions/models.Operation' |
| | | type: object |
| | | summary: 操作详情接口 |
| | | tags: |
| | | - 入库/出库 |
| | | /api-wms/v1/operation/getPersonnelList: |