From 2eb20330dfbda6136f1b8cc804cc21438ae4dc13 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期五, 15 三月 2024 16:37:00 +0800 Subject: [PATCH] 发货明细和准备发货接口 --- docs/docs.go | 73 ++++++++++++++++++++++++++++++++++++ 1 files changed, 72 insertions(+), 1 deletions(-) diff --git a/docs/docs.go b/docs/docs.go index 4bf4310..56d1440 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -7085,6 +7085,66 @@ } } }, + "/api/salesDetails/getDeliveryList": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "SalesDetails" + ], + "summary": "鍙戣揣鏄庣粏", + "parameters": [ + { + "description": "鏄庣粏缂栫爜", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1.GetWarehouseProductInfoReq" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/response.ListResponse" + } + } + } + } + }, + "/api/salesDetails/getDeliveryPrepareInfo": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "SalesDetails" + ], + "summary": "鑾峰彇浜у搧鍏ュ簱淇℃伅", + "parameters": [ + { + "description": "鏄庣粏缂栫爜", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1.GetWarehouseProductInfoReq" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/response.ListResponse" + } + } + } + } + }, "/api/salesDetails/getProductInventoryInfo/{number}": { "get": { "produces": [ @@ -7093,7 +7153,7 @@ "tags": [ "SalesDetails" ], - "summary": "鑾峰彇浜у搧搴撳瓨淇℃伅", + "summary": "鑾峰彇浜у搧鍙戣揣淇℃伅", "parameters": [ { "type": "string", @@ -19919,6 +19979,17 @@ "type": "string" } } + }, + "v1.GetWarehouseProductInfoReq": { + "type": "object", + "properties": { + "saleDetailID": { + "type": "integer" + }, + "saleDetailNumber": { + "type": "string" + } + } } } }` -- Gitblit v1.8.0