ol-base-components 2.8.16 → 2.8.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/api/api.js +1 -0
- package/src/api/run.js +15 -2
- package/src/api/swagger.js +477 -0
package/package.json
CHANGED
package/src/api/api.js
CHANGED
|
@@ -11,6 +11,7 @@ const modulesDir = process.argv[3] ? process.argv[3] : "src/api/modules";
|
|
|
11
11
|
const defaultRemark = `/**
|
|
12
12
|
* ⚠️ 警告:此文件由脚本自动生成,请勿手动编辑!
|
|
13
13
|
* �� swagger更新后请重新运行生成脚本
|
|
14
|
+
* 服务地址:${process.argv[2]}
|
|
14
15
|
*/\n\n`;
|
|
15
16
|
// * 📅 生成时间: ${new Date().toLocaleString()}
|
|
16
17
|
const spinnerChars = ["|", "/", "-", "\\"];
|
package/src/api/run.js
CHANGED
|
@@ -11,6 +11,7 @@ const outputPath = process.argv[3] || "src/api/swagger.js";
|
|
|
11
11
|
const defaultRemark = `/**
|
|
12
12
|
* ⚠️ 警告:此文件由脚本自动生成,请勿手动编辑!
|
|
13
13
|
* �� swagger更新后请重新运行生成脚本
|
|
14
|
+
* 服务地址:${process.argv[2]}
|
|
14
15
|
*
|
|
15
16
|
*/\n\n`;
|
|
16
17
|
// * 📅 生成时间: ${new Date().toLocaleString()}
|
|
@@ -129,8 +130,20 @@ function removeCurlyBraces(url) {
|
|
|
129
130
|
return url.replace(/\/?{[^}]*}/g, "").replace(/\/+$/, ""); // 去掉 {xxx} 和结尾的斜杠
|
|
130
131
|
}
|
|
131
132
|
|
|
133
|
+
// 清理summary中的换行符,确保注释在一行显示
|
|
134
|
+
function cleanSummary(summary) {
|
|
135
|
+
if (!summary) return "";
|
|
136
|
+
return summary
|
|
137
|
+
.replace(/\r\n/g, " ") // 替换Windows换行符
|
|
138
|
+
.replace(/\n/g, " ") // 替换Unix换行符
|
|
139
|
+
.replace(/\r/g, " ") // 替换Mac换行符
|
|
140
|
+
.replace(/\s+/g, " ") // 将多个连续空格替换为单个空格
|
|
141
|
+
.trim(); // 去除首尾空格
|
|
142
|
+
}
|
|
132
143
|
// 生成API模块
|
|
133
144
|
const generateApiModules = swagger => {
|
|
145
|
+
console.log(2222, swagger);
|
|
146
|
+
|
|
134
147
|
const { tags, paths } = swagger;
|
|
135
148
|
const apiModules = {};
|
|
136
149
|
// 初始化模块对象
|
|
@@ -146,7 +159,7 @@ const generateApiModules = swagger => {
|
|
|
146
159
|
tags.forEach(tag => {
|
|
147
160
|
const key = generateKeyName(url, method);
|
|
148
161
|
if (apiModules[tag]) {
|
|
149
|
-
const summary = details.summary || "";
|
|
162
|
+
const summary = cleanSummary(details.summary || "");
|
|
150
163
|
apiModules[tag][key] = `${key}: "${removeCurlyBraces(url)}", //${method} ${summary}\n`;
|
|
151
164
|
// 不去出带花括号的,键名加上特殊字段
|
|
152
165
|
if (url.includes("{")) {
|
|
@@ -170,6 +183,6 @@ const generateApiModules = swagger => {
|
|
|
170
183
|
}
|
|
171
184
|
output += `};\n\n`;
|
|
172
185
|
}
|
|
173
|
-
|
|
186
|
+
// return output.replace(/\r\n/g, "\n").replace(/\r/g, "\n"); // 统一换行符为 \n
|
|
174
187
|
return output;
|
|
175
188
|
};
|
|
@@ -0,0 +1,477 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ⚠️ 警告:此文件由脚本自动生成,请勿手动编辑!
|
|
3
|
+
* �� swagger更新后请重新运行生成脚本
|
|
4
|
+
* 服务地址:http://220.179.249.140:20024
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
// AGV接口
|
|
9
|
+
export const Agv = {
|
|
10
|
+
postApiOpenAgvAGVcallback: "/api/open/agv/AGV-callback", //post Agv任务完成反馈
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
// WMS接口
|
|
14
|
+
export const Mes = {
|
|
15
|
+
postApiOpenMesBorrowPush: "/api/open/Mes/BorrowPush", //post
|
|
16
|
+
postApiOpenMesDisassembleStockIn: "/api/open/Mes/DisassembleStockIn", //post 拆解入库
|
|
17
|
+
postApiOpenMesScrapStockIn: "/api/open/Mes/ScrapStockIn", //post 报废(隔离)入库
|
|
18
|
+
postApiOpenMesReturnStockIn: "/api/open/Mes/ReturnStockIn", //post 退库入库
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WCS接口
|
|
22
|
+
export const Wcs = {
|
|
23
|
+
postApiWcsNoticeCompleteTask: "/api/Wcs/NoticeCompleteTask", //post WCS任务完成反馈wcsapplyfourlocation
|
|
24
|
+
postApiWcsApplyInTask: "/api/Wcs/ApplyInTask", //post 申请入库任务
|
|
25
|
+
postApiWcsApplyFinalLocation: "/api/Wcs/ApplyFinalLocation", //post 申请最终库位
|
|
26
|
+
postApiWcsApplyMoveStock: "/api/Wcs/ApplyMoveStock", //post 申请移库
|
|
27
|
+
postApiWcsNoticeEntranceError: "/api/Wcs/NoticeEntranceError", //post 异常消息推送
|
|
28
|
+
postApiWcsRemoveShelf: "/api/Wcs/RemoveShelf", //post 申请移库
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
// 接口信息管理
|
|
32
|
+
export const ApiDescription = {
|
|
33
|
+
getApidescription: "/api/app/api-description/api-description", //get 获取接口信息
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
// 审计日志接口管理
|
|
37
|
+
export const AuditLogging = {
|
|
38
|
+
getAuditloggingAuditlogpages: "/api/app/audit-logging/audit-log-pages", //get 系统接口日志
|
|
39
|
+
getAuditloggingAuditlogactionByAuditId: "/api/app/audit-logging/audit-log-action", //get 系统接口明细日志
|
|
40
|
+
getAuditloggingAuditlogactionByAuditIdCompleteUrl: "/api/app/audit-logging/audit-log-action/{auditId}", //get 系统接口明细日志
|
|
41
|
+
postAuditloggingExportauditlog: "/api/app/audit-logging/export-audit-log", //post 审计接口导出
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
// 配置服务接口
|
|
45
|
+
export const Config = {
|
|
46
|
+
getConfigBackgroundworkerconfigpages: "/api/app/config/background-worker-config-pages", //get 获取后台工作配置分页信息
|
|
47
|
+
postConfigChangedbackgroundworkerconfigenabled: "/api/app/config/changed-background-worker-config-enabled", //post 改变后台工作任务启用状态
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
// 普通入库
|
|
51
|
+
export const PdaStockInNew = {
|
|
52
|
+
getPdastockinnewValitecargolocationv2: "/api/app/pda-stock-in-new/valite-cargo-location-v2", //get 校验容器号 0:母托盘 1:平库库位 2.子托盘
|
|
53
|
+
postPdastockinnewValitebinddata: "/api/app/pda-stock-in-new/valite-bind-data", //post 校验码盘数据 1.带物料的子托 2.入库单里的物料
|
|
54
|
+
postPdastockinnewBindplatev2: "/api/app/pda-stock-in-new/bind-plate-v2", //post 绑盘 普通入库
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
// 维保入库 3.0
|
|
58
|
+
export const PdaStockInV3 = {
|
|
59
|
+
getPdastockinv3Valitecargolocation: "/api/app/pda-stock-in-v3/valite-cargo-location", //get 校验容器号 0:母托盘 1:平库库位 2.子托盘
|
|
60
|
+
postPdastockinv3Valitebinddatav3: "/api/app/pda-stock-in-v3/valite-bind-data-v3", //post 校验物料 子托盘 --航发二维码json,条码pid3 --wms二维码json
|
|
61
|
+
postPdastockinv3Bindplatev2: "/api/app/pda-stock-in-v3/bind-plate-v2", //post 组盘,借用、油封、定检(送检)、班检、维保
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
// 库存接口管理
|
|
65
|
+
export const PdaStockOutV3 = {
|
|
66
|
+
postPdastockoutv3Pdastockout: "/api/app/pda-stock-out-v3/pda-stock-out", //post pda出库 维保 送检 定检 借用 油封
|
|
67
|
+
postPdastockoutv3PickdMStock: "/api/app/pda-stock-out-v3/pick-dMStock", //post pda出库拣选 拍照
|
|
68
|
+
getPdastockoutv3Productclasstype: "/api/app/pda-stock-out-v3/product-class-type", //get 物料大类
|
|
69
|
+
getPdastockoutv3MrStatuse: "/api/app/pda-stock-out-v3/m-rStatuse", //get 维保状态
|
|
70
|
+
getPdastockoutv3YlPhotopage: "/api/app/pda-stock-out-v3/y-lPhoto-page", //get 获取余料图片
|
|
71
|
+
getPdastockoutv3Searchordernumbs: "/api/app/pda-stock-out-v3/search-order-numbs", //get 查询单据拣选情况
|
|
72
|
+
postPdastockoutv3Productphoto: "/api/app/pda-stock-out-v3/product-photo", //post 物料拍照
|
|
73
|
+
getPdastockoutv3Productphoto: "/api/app/pda-stock-out-v3/product-photo", //get 获取物料图片
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
// 打印机
|
|
77
|
+
export const Print = {
|
|
78
|
+
getPrintPrintservername: "/api/app/print/print-server-name", //get 获取打印机名称列表
|
|
79
|
+
postPrintSetprintcofing: "/api/app/print/set-print-cofing", //post 设置默认打印机
|
|
80
|
+
postPrintPrintpdfasyc: "/api/app/print/print-pdf-asyc", //post 打印pdf
|
|
81
|
+
getPrintPrintdMStockdetaillist: "/api/app/print/print-dMStock-detail-list", //get 出库单打印列表
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
// 物料管理
|
|
85
|
+
export const Product = {
|
|
86
|
+
postProductOwner: "/api/app/product/owner", //post 创建货主
|
|
87
|
+
postProductExportowner: "/api/app/product/export-owner", //post 货主信息导出
|
|
88
|
+
deleteProductOwnerByOwnerId: "/api/app/product/owner", //delete 删除货主信息
|
|
89
|
+
deleteProductOwnerByOwnerIdCompleteUrl: "/api/app/product/owner/{OwnerId}", //delete 删除货主信息
|
|
90
|
+
putProductOwnerByOwnerId: "/api/app/product/owner", //put 编辑货主信息
|
|
91
|
+
putProductOwnerByOwnerIdCompleteUrl: "/api/app/product/owner/{OwnerId}", //put 编辑货主信息
|
|
92
|
+
getProductOwnerpages: "/api/app/product/owner-pages", //get 获取货主分页数据信息
|
|
93
|
+
getProductOwnerselect: "/api/app/product/owner-select", //get 获取货主下拉框数据
|
|
94
|
+
getProductDicbyunit: "/api/app/product/dic-by-unit", //get 获取单位字典
|
|
95
|
+
getProductOwnerbyidByOwnerId: "/api/app/product/owner-by-id", //get 根据ID获取单条数据
|
|
96
|
+
getProductOwnerbyidByOwnerIdCompleteUrl: "/api/app/product/owner-by-id/{OwnerId}", //get 根据ID获取单条数据
|
|
97
|
+
postProductProductclass: "/api/app/product/product-class", //post 创建物料分类
|
|
98
|
+
postProductExportproductclass: "/api/app/product/export-product-class", //post 物料分类信息导出
|
|
99
|
+
deleteProductProductclassByProductClassId: "/api/app/product/product-class", //delete 删除物料分类信息
|
|
100
|
+
deleteProductProductclassByProductClassIdCompleteUrl: "/api/app/product/product-class/{ProductClassId}", //delete 删除物料分类信息
|
|
101
|
+
putProductProductclassByProductClassId: "/api/app/product/product-class", //put 编辑物料分类信息
|
|
102
|
+
putProductProductclassByProductClassIdCompleteUrl: "/api/app/product/product-class/{ProductClassId}", //put 编辑物料分类信息
|
|
103
|
+
getProductProductclasspagestree: "/api/app/product/product-class-pages-tree", //get 获取物料分类分页数据信息-树状返回值
|
|
104
|
+
getProductProductclasspages: "/api/app/product/product-class-pages", //get 获取物料分类分页数据信息
|
|
105
|
+
getProductProductclassselect: "/api/app/product/product-class-select", //get 获取物料分类下拉框数据
|
|
106
|
+
getProductProductclasssearch: "/api/app/product/product-class-search", //get 获取物料分类下拉框数据
|
|
107
|
+
getProductProductclasssublevel: "/api/app/product/product-class-sub-level", //get 根据上级物料分类ID 获取子级物料分类等级
|
|
108
|
+
getProductProductclassbyidByProductClassId: "/api/app/product/product-class-by-id", //get 根据ID获取单条数据
|
|
109
|
+
getProductProductclassbyidByProductClassIdCompleteUrl: "/api/app/product/product-class-by-id/{ProductClassId}", //get 根据ID获取单条数据
|
|
110
|
+
postProductExportproductowner: "/api/app/product/export-product-owner", //post 物料与货主关系信息导出
|
|
111
|
+
deleteProductProductownerByProductOwnerId: "/api/app/product/product-owner", //delete 删除物料与货主关系信息
|
|
112
|
+
deleteProductProductownerByProductOwnerIdCompleteUrl: "/api/app/product/product-owner/{ProductOwnerId}", //delete 删除物料与货主关系信息
|
|
113
|
+
getProductProductownerbyidByProductOwnerId: "/api/app/product/product-owner-by-id", //get 根据ID获取单条数据
|
|
114
|
+
getProductProductownerbyidByProductOwnerIdCompleteUrl: "/api/app/product/product-owner-by-id/{ProductOwnerId}", //get 根据ID获取单条数据
|
|
115
|
+
getProductByowneridByOwnerId: "/api/app/product/by-owner-id", //get 根据货主获取货主相关所有物料数据
|
|
116
|
+
getProductByowneridByOwnerIdCompleteUrl: "/api/app/product/by-owner-id/{OwnerId}", //get 根据货主获取货主相关所有物料数据
|
|
117
|
+
getProductByproductidByProductId: "/api/app/product/by-product-id", //get 根据物料获取货主相关所有货主数据
|
|
118
|
+
getProductByproductidByProductIdCompleteUrl: "/api/app/product/by-product-id/{ProductId}", //get 根据物料获取货主相关所有货主数据
|
|
119
|
+
getProductProductownerbyid: "/api/app/product/product-owner-by-id", //get 根据物料ID和货主ID获取单条数据
|
|
120
|
+
getProductProductpagessort: "/api/app/product/product-pages-sort", //get 获取产品分页信息数据-带排序
|
|
121
|
+
postProductGetproductprints: "/api/app/product/get-product-prints", //post 获取打印信息
|
|
122
|
+
getProductProductpages: "/api/app/product/product-pages", //get 获取产品分页信息数据
|
|
123
|
+
postProduct: "/api/app/product/product", //post 创建产品
|
|
124
|
+
putProductByProductId: "/api/app/product/product", //put 编辑产品
|
|
125
|
+
putProductByProductIdCompleteUrl: "/api/app/product/product/{productId}", //put 编辑产品
|
|
126
|
+
postProductDeleteproduct: "/api/app/product/delete-product", //post 删除产品
|
|
127
|
+
getProductProductbyidByProductId: "/api/app/product/product-by-id", //get 根据ID获取单条数据
|
|
128
|
+
getProductProductbyidByProductIdCompleteUrl: "/api/app/product/product-by-id/{ProductId}", //get 根据ID获取单条数据
|
|
129
|
+
getProductProductselect: "/api/app/product/product-select", //get 获取物料下拉框数据
|
|
130
|
+
postProductTestproduct202507120001: "/api/app/product/test-product202507120001", //post 测试刷pid1
|
|
131
|
+
postProductExportstock: "/api/app/product/export-stock", //post 物料信息导出
|
|
132
|
+
postProductImportproduct: "/api/app/product/import-product", //post 物料信息导入模板
|
|
133
|
+
postProductDownproduct: "/api/app/product/down-product", //post 物料导入模板下载
|
|
134
|
+
getProductProductregularpages: "/api/app/product/product-regular-pages", //get 获取货主分页数据信息
|
|
135
|
+
postProductProductregular: "/api/app/product/product-regular", //post 新增零件正则表达式
|
|
136
|
+
putProductProductregular: "/api/app/product/product-regular", //put 更新零件正则表达式
|
|
137
|
+
deleteProductProductregularByProductRegularId: "/api/app/product/product-regular", //delete 删除零件正则表达式
|
|
138
|
+
deleteProductProductregularByProductRegularIdCompleteUrl: "/api/app/product/product-regular/{ProductRegularId}", //delete 删除零件正则表达式
|
|
139
|
+
postProductProductchecktype: "/api/app/product/product-check-type", //post 检测零件类别
|
|
140
|
+
postProductMeteringclass: "/api/app/product/metering-class", //post 创建计量类别
|
|
141
|
+
postProductExportmeteringclass: "/api/app/product/export-metering-class", //post 计量类别信息导出
|
|
142
|
+
deleteProductMeteringclassByProductClassId: "/api/app/product/metering-class", //delete 删除计量类别信息
|
|
143
|
+
deleteProductMeteringclassByProductClassIdCompleteUrl: "/api/app/product/metering-class/{ProductClassId}", //delete 删除计量类别信息
|
|
144
|
+
putProductMeteringclassByProductClassId: "/api/app/product/metering-class", //put 编辑计量类别信息
|
|
145
|
+
putProductMeteringclassByProductClassIdCompleteUrl: "/api/app/product/metering-class/{ProductClassId}", //put 编辑计量类别信息
|
|
146
|
+
getProductMeteringclasspagestree: "/api/app/product/metering-class-pages-tree", //get 获取计量类别分页数据信息-树状返回值
|
|
147
|
+
getProductMeteringclasspages: "/api/app/product/metering-class-pages", //get 获取计量类别分页数据信息
|
|
148
|
+
getProductMeteringclassselect: "/api/app/product/metering-class-select", //get 获取计量类别下拉框数据
|
|
149
|
+
getProductMeteringclasssearch: "/api/app/product/metering-class-search", //get 获取计量类别下拉框数据
|
|
150
|
+
getProductMeteringclasssublevel: "/api/app/product/metering-class-sub-level", //get 根据上级计量类别ID 获取子级计量类别等级
|
|
151
|
+
getProductMeteringclassbyidByProductClassId: "/api/app/product/metering-class-by-id", //get 根据ID获取单条数据
|
|
152
|
+
getProductMeteringclassbyidByProductClassIdCompleteUrl: "/api/app/product/metering-class-by-id/{ProductClassId}", //get 根据ID获取单条数据
|
|
153
|
+
getProductProducttablenumberpages: "/api/app/product/product-table-number-pages", //get
|
|
154
|
+
postProductProducttablenumber: "/api/app/product/product-table-number", //post 创建零件台份信息
|
|
155
|
+
putProductProducttablenumberById: "/api/app/product/product-table-number", //put 更新适航批
|
|
156
|
+
putProductProducttablenumberByIdCompleteUrl: "/api/app/product/product-table-number/{Id}", //put 更新适航批
|
|
157
|
+
deleteProductProducttablenumberById: "/api/app/product/product-table-number", //delete 删除适航批
|
|
158
|
+
deleteProductProducttablenumberByIdCompleteUrl: "/api/app/product/product-table-number/{Id}", //delete 删除适航批
|
|
159
|
+
putProductProducttablenumberstock: "/api/app/product/product-table-number-stock", //put 根据台份更新适航批库存
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
// 公共聚合模型接口
|
|
163
|
+
export const PublicAggregate = {
|
|
164
|
+
getPublicaggregateDatatemplatepages: "/api/app/public-aggregate/data-template-pages", //get 获取数据模板分页数据信息
|
|
165
|
+
postPublicaggregateDatatemplate: "/api/app/public-aggregate/data-template", //post 创建数据模板数据
|
|
166
|
+
postPublicaggregateUploaddatatemplate: "/api/app/public-aggregate/upload-data-template", //post 上传数据模板
|
|
167
|
+
getPublicaggregateDowndatatemplateByDataTemplateId: "/api/app/public-aggregate/down-data-template", //get 下载模板
|
|
168
|
+
getPublicaggregateDowndatatemplateByDataTemplateIdCompleteUrl: "/api/app/public-aggregate/down-data-template/{dataTemplateId}", //get 下载模板
|
|
169
|
+
putPublicaggregateDatatemplateByDataTemplateId: "/api/app/public-aggregate/data-template", //put 编辑数据模板
|
|
170
|
+
putPublicaggregateDatatemplateByDataTemplateIdCompleteUrl: "/api/app/public-aggregate/data-template/{dataTemplateId}", //put 编辑数据模板
|
|
171
|
+
deletePublicaggregateDatatemplateByDataTemplateId: "/api/app/public-aggregate/data-template", //delete 删除数据模板
|
|
172
|
+
deletePublicaggregateDatatemplateByDataTemplateIdCompleteUrl: "/api/app/public-aggregate/data-template/{dataTemplateId}", //delete 删除数据模板
|
|
173
|
+
getPublicaggregateDictionaries: "/api/app/public-aggregate/dictionaries", //get
|
|
174
|
+
postPublicaggregateDictionaries: "/api/app/public-aggregate/dictionaries", //post 创建字典数据
|
|
175
|
+
postPublicaggregateDic: "/api/app/public-aggregate/dic", //post
|
|
176
|
+
deletePublicaggregateDictionariesByDictionariesId: "/api/app/public-aggregate/dictionaries", //delete 删除字典数据
|
|
177
|
+
deletePublicaggregateDictionariesByDictionariesIdCompleteUrl: "/api/app/public-aggregate/dictionaries/{dictionariesId}", //delete 删除字典数据
|
|
178
|
+
putPublicaggregateDictionariesByDictionariesId: "/api/app/public-aggregate/dictionaries", //put 编辑数据字典
|
|
179
|
+
putPublicaggregateDictionariesByDictionariesIdCompleteUrl: "/api/app/public-aggregate/dictionaries/{DictionariesId}", //put 编辑数据字典
|
|
180
|
+
getPublicaggregateDcibyid: "/api/app/public-aggregate/dci-by-id", //get
|
|
181
|
+
getPublicaggregateDicbyparentid: "/api/app/public-aggregate/dic-by-parent-id", //get
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
// 公共枚举接口
|
|
185
|
+
export const PublicEnum = {
|
|
186
|
+
getPublicenumEnums: "/api/app/public-enum/enums", //get 获取所有枚举信息
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
// 移库相关接口
|
|
190
|
+
export const Relocation = {
|
|
191
|
+
getRelocationRelocationpages: "/api/app/relocation/relocation-pages", //get 获取移库单分页
|
|
192
|
+
getRelocationRelocationdetailpages: "/api/app/relocation/relocation-detail-pages", //get 获取移库单明细的分页
|
|
193
|
+
getRelocationRelocationrecordpages: "/api/app/relocation/relocation-record-pages", //get 获取移库记录的分页
|
|
194
|
+
postRelocationJudgerelocationstock: "/api/app/relocation/judge-relocation-stock", //post 判断库存是否可以生成移库明细
|
|
195
|
+
getRelocationCreatrelocation: "/api/app/relocation/creat-relocation", //get 插入移库单
|
|
196
|
+
postRelocationCreatrelocationdetail: "/api/app/relocation/creat-relocation-detail", //post 插入移库单明细
|
|
197
|
+
getRelocationMovebilltypeenumvalue: "/api/app/relocation/move-bill-type-enum-value", //get 单据移动类型(人工\自动)
|
|
198
|
+
getRelocationMovetypeenumvalue: "/api/app/relocation/move-type-enum-value", //get 移动类型(移入,移出,平移)
|
|
199
|
+
getRelocationMovebillstatevalue: "/api/app/relocation/move-bill-state-value", //get 单据所处状态(等待,成功,取消)
|
|
200
|
+
getRelocationStagingsvalue: "/api/app/relocation/stagings-value", //get 获取拣选台
|
|
201
|
+
postRelocationDownrelocationtask: "/api/app/relocation/down-relocation-task", //post 下达任务 通过明细下达任务
|
|
202
|
+
postRelocationDeletarelocation: "/api/app/relocation/deleta-relocation", //post
|
|
203
|
+
deleteRelocationRelocationdetail: "/api/app/relocation/relocation-detail", //delete 单条删除
|
|
204
|
+
postRelocationExportrelocationrecord: "/api/app/relocation/export-relocation-record", //post
|
|
205
|
+
postRelocationExportrelocationtemplet: "/api/app/relocation/export-relocation-templet", //post 导出模板
|
|
206
|
+
postRelocationExportinrelocationdata: "/api/app/relocation/export-in-relocation-data", //post
|
|
207
|
+
postRelocationCreatrelocationdata: "/api/app/relocation/creat-relocation-data", //post
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
// 报表接口
|
|
211
|
+
export const Report = {
|
|
212
|
+
getReportStowagecargolocationreportinfos: "/api/app/report/stowage-cargo-location-report-infos", //get 获取集货信息
|
|
213
|
+
getReportDeliverreportinfos: "/api/app/report/deliver-report-infos", //get 获取
|
|
214
|
+
postReportExportwcsequipmentstatistic: "/api/app/report/export-wcs-equip-ment-statistic", //post 导出
|
|
215
|
+
getReportWcsequipmentstatistic: "/api/app/report/wcs-equip-ment-statistic", //get wcs效率分析报表
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
// 库存接口管理
|
|
219
|
+
export const Stock = {
|
|
220
|
+
postStockGetproductprints: "/api/app/stock/get-product-prints", //post 获取打印信息
|
|
221
|
+
getStockPagelistsort: "/api/app/stock/page-list-sort", //get 获取库存分页带排序
|
|
222
|
+
getStockStockpages: "/api/app/stock/stock-pages", //get 获取库存分页数据信息
|
|
223
|
+
getStockProductstockpages: "/api/app/stock/product-stock-pages", //get 物料库存统计
|
|
224
|
+
postStockExportprostock: "/api/app/stock/export-pro-stock", //post 物料库存统计导出
|
|
225
|
+
getStockStockearlywarningpages: "/api/app/stock/stock-early-warning-pages", //get 库存预警报表
|
|
226
|
+
getStockStockshelflifepages: "/api/app/stock/stock-shelf-life-pages", //get 保质期预警报表
|
|
227
|
+
postStockFreezestock: "/api/app/stock/freeze-stock", //post 冻结库存
|
|
228
|
+
postStockUnfreezestock: "/api/app/stock/un-freeze-stock", //post 解冻库存
|
|
229
|
+
postStockUpdatestockqty: "/api/app/stock/update-stock-qty", //post 修改库存(只能修改收货暂存区的库存)
|
|
230
|
+
getStockStockhistorypages: "/api/app/stock/stock-history-pages", //get 获取库存流水分页数据信息
|
|
231
|
+
postStockExportstock: "/api/app/stock/export-stock", //post 库存导出
|
|
232
|
+
postStockExportstockhistory: "/api/app/stock/export-stock-history", //post 库存导出
|
|
233
|
+
getStockStockanomalpages: "/api/app/stock/stock-anomal-pages", //get 获取库存异常分页数据
|
|
234
|
+
postStockConfirmanomals: "/api/app/stock/confirm-anomals", //post 确认异常
|
|
235
|
+
postStockExportstockinventoryanmaly: "/api/app/stock/export-stock-inventory-anmaly", //post 库存异常导出
|
|
236
|
+
getStockAbnormaltype: "/api/app/stock/abnormal-type", //get 获取异常类型下拉框
|
|
237
|
+
};
|
|
238
|
+
|
|
239
|
+
// 入库相关接口
|
|
240
|
+
export const StockIn = {
|
|
241
|
+
getStockinStockindetailpages: "/api/app/stock-in/stock-in-detail-pages", //get 获取入库单明细行详情
|
|
242
|
+
getStockinStockinpages: "/api/app/stock-in/stock-in-pages", //get 获取入库单单头信息
|
|
243
|
+
getStockinStockinbusinesstype: "/api/app/stock-in/stock-in-business-type", //get 获取入库单业务类型下拉接口
|
|
244
|
+
getStockinStockinorderstatetype: "/api/app/stock-in/stock-in-order-state-type", //get 获取入库单状态
|
|
245
|
+
getStockinWarehouseselect: "/api/app/stock-in/warehouse-select", //get 获取归属仓库下拉
|
|
246
|
+
postStockinExportstockin: "/api/app/stock-in/export-stock-in", //post 入库单详情导出
|
|
247
|
+
postStockinDownstockintemplate: "/api/app/stock-in/down-stock-in-template", //post 入库单导入模板下载
|
|
248
|
+
postStockinDownbatchstocktemplate: "/api/app/stock-in/down-batch-stock-template", //post 入库单批量导入模板下载
|
|
249
|
+
postStockinImportstockinold: "/api/app/stock-in/import-stock-in-old", //post 导入入库单
|
|
250
|
+
postStockinImportstockin: "/api/app/stock-in/import-stock-in", //post 入库单导入
|
|
251
|
+
postStockinDownloadstockinexclemodel: "/api/app/stock-in/download-stock-in-excle-model", //post 入库单导入模板下载
|
|
252
|
+
postStockinBatchimportstockin: "/api/app/stock-in/batch-import-stock-in", //post 批量导入入库单
|
|
253
|
+
postStockinBuildselfstockin: "/api/app/stock-in/build-self-stock-in", //post 自建入库单
|
|
254
|
+
postStockinTempstorestockin: "/api/app/stock-in/temp-store-stock-in", //post 暂存入库单信息
|
|
255
|
+
postStockin: "/api/app/stock-in/stock-in", //post 创建入库单
|
|
256
|
+
putStockinByStockInId: "/api/app/stock-in/stock-in", //put 更新入库单
|
|
257
|
+
putStockinByStockInIdCompleteUrl: "/api/app/stock-in/stock-in/{StockInId}", //put 更新入库单
|
|
258
|
+
postStockinUpdatestockindetail: "/api/app/stock-in/update-stock-in-detail", //post 编辑入库单明细
|
|
259
|
+
postStockinDeletestockindetail: "/api/app/stock-in/delete-stock-in-detail", //post 删除入库单明细
|
|
260
|
+
postStockinConifrmstockins: "/api/app/stock-in/conifrm-stock-ins", //post 确认订单
|
|
261
|
+
postStockinDeletestockin: "/api/app/stock-in/delete-stock-in", //post 删除入库单
|
|
262
|
+
postStockinDiposestockin: "/api/app/stock-in/dipose-stock-in", //post 手动结束入库单
|
|
263
|
+
getStockinProductselect: "/api/app/stock-in/product-select", //get 获取物料信息下拉框
|
|
264
|
+
postStockinRandomoutpreposemethod: "/api/app/stock-in/random-out-prepose-method", //post 随机移出前置
|
|
265
|
+
getStockinBindrecorddetailpages: "/api/app/stock-in/bind-record-detail-pages", //get 获取码盘记录明细数据
|
|
266
|
+
getStockinBindrecordpages: "/api/app/stock-in/bind-record-pages", //get 获取码盘记录汇总数据
|
|
267
|
+
getStockinBindcontainerinfo: "/api/app/stock-in/bind-container-info", //get 获取物料详情
|
|
268
|
+
postStockinExportbindrecorddetail: "/api/app/stock-in/export-bind-record-detail", //post 码盘记录明细导出
|
|
269
|
+
postStockinExportbindrecord: "/api/app/stock-in/export-bind-record", //post 码盘记录汇总导出
|
|
270
|
+
postStockinCanclebindrecord: "/api/app/stock-in/cancle-bind-record", //post 撤销码盘
|
|
271
|
+
};
|
|
272
|
+
|
|
273
|
+
// 出库业务相关接口
|
|
274
|
+
export const StockOut = {
|
|
275
|
+
getStockoutStockoutpages: "/api/app/stock-out/stock-out-pages", //get 获取出库订单分页数据信息
|
|
276
|
+
getStockoutStockoutdetailpages: "/api/app/stock-out/stock-out-detail-pages", //get 获取出库订单明细分页数据信息
|
|
277
|
+
postStockoutExportstockout: "/api/app/stock-out/export-stock-out", //post 出库单详情导出
|
|
278
|
+
postStockoutImportstockout: "/api/app/stock-out/import-stock-out", //post 导入出库单
|
|
279
|
+
postStockoutDownbatchstoctemplate: "/api/app/stock-out/down-batch-stoc-template", //post 出库单批量导入模板下载
|
|
280
|
+
postStockoutBatchimportstockout: "/api/app/stock-out/batch-import-stock-out", //post 批量导入出库单
|
|
281
|
+
getStockoutStockoutbusinesstype: "/api/app/stock-out/stock-out-business-type", //get 获取出库单业务类型下拉接口
|
|
282
|
+
getStockoutStockoutorderstatetype: "/api/app/stock-out/stock-out-order-state-type", //get 获取出库单状态
|
|
283
|
+
getStockoutPickstate: "/api/app/stock-out/pick-state", //get 获取拣货单状态
|
|
284
|
+
postStockoutBuildselfstockout: "/api/app/stock-out/build-self-stock-out", //post 自建出库单
|
|
285
|
+
postStockout: "/api/app/stock-out/stock-out", //post 创建出库单
|
|
286
|
+
postStockoutConfirmstockout: "/api/app/stock-out/confirm-stock-out", //post 确认出库单
|
|
287
|
+
postStockoutUpdatestockoutdetail: "/api/app/stock-out/update-stock-out-detail", //post 编辑出库单明细
|
|
288
|
+
postStockoutDeletestockoutdetail: "/api/app/stock-out/delete-stock-out-detail", //post 删除出库单明细
|
|
289
|
+
putStockoutByStockOutId: "/api/app/stock-out/stock-out", //put 更新出库单
|
|
290
|
+
putStockoutByStockOutIdCompleteUrl: "/api/app/stock-out/stock-out/{StockOutId}", //put 更新出库单
|
|
291
|
+
postStockoutDeletestockout: "/api/app/stock-out/delete-stock-out", //post 删除出库单
|
|
292
|
+
postStockoutDiposestockout: "/api/app/stock-out/dipose-stock-out", //post 手动结束
|
|
293
|
+
postStockoutRevisepriority: "/api/app/stock-out/revise-priority", //post 优先级维护
|
|
294
|
+
postStockoutExportstock: "/api/app/stock-out/export-stock", //post 出库信息导出
|
|
295
|
+
postStockoutSetmaxwavecustomers: "/api/app/stock-out/set-max-wave-customers", //post 设置单播最小下发客户数
|
|
296
|
+
getStockoutWavepages: "/api/app/stock-out/wave-pages", //get 获取波次 订单分页数据信息
|
|
297
|
+
getStockoutWaveoutboundinfopages: "/api/app/stock-out/wave-out-bound-info-pages", //get 分页获取波次出库信息表
|
|
298
|
+
getStockoutWavepicktaskpages: "/api/app/stock-out/wave-pick-task-pages", //get 分页获取波次拣选任务信息表
|
|
299
|
+
getStockoutWavepickallocationpages: "/api/app/stock-out/wave-pick-allocation-pages", //get 分页获取波次分配任务信息表
|
|
300
|
+
postStockoutExportwavepickallocation: "/api/app/stock-out/export-wave-pick-allocation", //post 波次分配任务导出
|
|
301
|
+
getStockoutBundlerecordpages: "/api/app/stock-out/bundle-record-pages", //get 获取捆包记录分页
|
|
302
|
+
postStockoutExportwave: "/api/app/stock-out/export-wave", //post 波次导出
|
|
303
|
+
postStockoutExportwavepick: "/api/app/stock-out/export-wave-pick", //post 拣选任务导出
|
|
304
|
+
postStockoutExportbundlerecord: "/api/app/stock-out/export-bundle-record", //post 捆包导出
|
|
305
|
+
getStockoutWavepickserialnumberpages: "/api/app/stock-out/wave-pick-serial-number-pages", //get 分页获取拣选物料序列号分页信息
|
|
306
|
+
postStockoutExportwavepickserialnumber: "/api/app/stock-out/export-wave-pick-serial-number", //post 拣选物料序列号导出
|
|
307
|
+
postStockoutChangeproductserialnumber: "/api/app/stock-out/change-product-serial-number", //post 更改序列号
|
|
308
|
+
getStockoutEntrances: "/api/app/stock-out/entrances", //get 获取出库口下拉框
|
|
309
|
+
putStockoutEntrance: "/api/app/stock-out/entrance", //put 修改出库口
|
|
310
|
+
getStockoutWavesendrecordpages: "/api/app/stock-out/wave-send-record-pages", //get 获取波次发货记录分页
|
|
311
|
+
postStockoutExportwavesendrecord: "/api/app/stock-out/export-wave-send-record", //post 波次发货记录导出
|
|
312
|
+
getStockoutCargolocationpickjhpages: "/api/app/stock-out/cargo-location-pick-jh-pages", //get 波次业务库存详情
|
|
313
|
+
getStockoutWaitjointlabelcodes: "/api/app/stock-out/wait-joint-label-codes", //get 获取待交接捆包箱号
|
|
314
|
+
postStockoutAransportconfirm: "/api/app/stock-out/aransport-confirm", //post 运输交接
|
|
315
|
+
getStockoutPicklabeloperationrecordpages: "/api/app/stock-out/pick-label-operation-record-pages", //get 获取捆包箱操作日志分页
|
|
316
|
+
postStockoutExportpicklabeloperationrecord: "/api/app/stock-out/export-pick-label-operation-record", //post 获取捆包箱操作日志记录
|
|
317
|
+
getStockoutPickpages: "/api/app/stock-out/pick-pages", //get 获取拣货单分页记录
|
|
318
|
+
postStockoutCargolocationpicksync: "/api/app/stock-out/cargo-location-picksync", //post 波次制单
|
|
319
|
+
};
|
|
320
|
+
|
|
321
|
+
// 仓库管理
|
|
322
|
+
export const Warehouse = {
|
|
323
|
+
putWarehouseShipperByShipperId: "/api/app/warehouse/shipper", //put 编辑出货方信息
|
|
324
|
+
putWarehouseShipperByShipperIdCompleteUrl: "/api/app/warehouse/shipper/{ShipperId}", //put 编辑出货方信息
|
|
325
|
+
deleteWarehouseShipperByShipperId: "/api/app/warehouse/shipper", //delete 删除出货方信息
|
|
326
|
+
deleteWarehouseShipperByShipperIdCompleteUrl: "/api/app/warehouse/shipper/{ShipperId}", //delete 删除出货方信息
|
|
327
|
+
getWarehouseShipperpages: "/api/app/warehouse/shipper-pages", //get 获取出货方分页数据信息
|
|
328
|
+
getWarehouseShipperselect: "/api/app/warehouse/shipper-select", //get 获取出货方下拉框数据
|
|
329
|
+
getWarehouseStagingtypeselect: "/api/app/warehouse/staging-type-select", //get 获取工作台下拉框数据
|
|
330
|
+
getWarehouseShippertypeselect: "/api/app/warehouse/shipper-type-select", //get 获取出货方下拉框数据
|
|
331
|
+
getWarehouseShipperbyidByShipperId: "/api/app/warehouse/shipper-by-id", //get 根据ID获取单条数据
|
|
332
|
+
getWarehouseShipperbyidByShipperIdCompleteUrl: "/api/app/warehouse/shipper-by-id/{ShipperId}", //get 根据ID获取单条数据
|
|
333
|
+
postWarehouseStaging: "/api/app/warehouse/staging", //post 创建工作台
|
|
334
|
+
postWarehouseExportstaging: "/api/app/warehouse/export-staging", //post 工作台信息导出
|
|
335
|
+
deleteWarehouseStagingByStagingId: "/api/app/warehouse/staging", //delete 删除工作台信息
|
|
336
|
+
deleteWarehouseStagingByStagingIdCompleteUrl: "/api/app/warehouse/staging/{StagingId}", //delete 删除工作台信息
|
|
337
|
+
putWarehouseStagingByStagingId: "/api/app/warehouse/staging", //put 编辑工作台信息
|
|
338
|
+
putWarehouseStagingByStagingIdCompleteUrl: "/api/app/warehouse/staging/{StagingId}", //put 编辑工作台信息
|
|
339
|
+
getWarehouseStagingpages: "/api/app/warehouse/staging-pages", //get 获取工作台分页数据信息
|
|
340
|
+
getWarehouseStagingselect: "/api/app/warehouse/staging-select", //get 获取工作台下拉框数据
|
|
341
|
+
getWarehouseStagingbyidByStagingId: "/api/app/warehouse/staging-by-id", //get 根据ID获取单条数据
|
|
342
|
+
getWarehouseStagingbyidByStagingIdCompleteUrl: "/api/app/warehouse/staging-by-id/{StagingId}", //get 根据ID获取单条数据
|
|
343
|
+
postWarehouseUserbindwork: "/api/app/warehouse/user-bind-work", //post 用户绑定工作台
|
|
344
|
+
postWarehouseSupplier: "/api/app/warehouse/supplier", //post 创建供应商
|
|
345
|
+
postWarehouseExportsupplier: "/api/app/warehouse/export-supplier", //post 供应商信息导出
|
|
346
|
+
deleteWarehouseSupplierBySupplierId: "/api/app/warehouse/supplier", //delete 删除供应商信息
|
|
347
|
+
deleteWarehouseSupplierBySupplierIdCompleteUrl: "/api/app/warehouse/supplier/{SupplierId}", //delete 删除供应商信息
|
|
348
|
+
putWarehouseSupplierBySupplierId: "/api/app/warehouse/supplier", //put 编辑供应商信息
|
|
349
|
+
putWarehouseSupplierBySupplierIdCompleteUrl: "/api/app/warehouse/supplier/{SupplierId}", //put 编辑供应商信息
|
|
350
|
+
getWarehouseSupplierpages: "/api/app/warehouse/supplier-pages", //get 获取供应商分页数据信息
|
|
351
|
+
getWarehouseSupplierselect: "/api/app/warehouse/supplier-select", //get 获取供应商下拉框数据
|
|
352
|
+
getWarehouseOrgselect: "/api/app/warehouse/org-select", //get 获取公司下拉框数据
|
|
353
|
+
getWarehouseSupplierbyidBySupplierId: "/api/app/warehouse/supplier-by-id", //get 根据ID获取单条数据
|
|
354
|
+
getWarehouseSupplierbyidBySupplierIdCompleteUrl: "/api/app/warehouse/supplier-by-id/{SupplierId}", //get 根据ID获取单条数据
|
|
355
|
+
postWarehouseLine: "/api/app/warehouse/line", //post 创建线路
|
|
356
|
+
postWarehouseExportline: "/api/app/warehouse/export-line", //post 线路信息导出
|
|
357
|
+
deleteWarehouseLineByLineId: "/api/app/warehouse/line", //delete 删除线路信息
|
|
358
|
+
deleteWarehouseLineByLineIdCompleteUrl: "/api/app/warehouse/line/{LineId}", //delete 删除线路信息
|
|
359
|
+
putWarehouseLineByLineId: "/api/app/warehouse/line", //put 编辑线路信息
|
|
360
|
+
putWarehouseLineByLineIdCompleteUrl: "/api/app/warehouse/line/{LineId}", //put 编辑线路信息
|
|
361
|
+
getWarehouseLinepages: "/api/app/warehouse/line-pages", //get 获取线路分页数据信息
|
|
362
|
+
getWarehouseRoadwayselect: "/api/app/warehouse/road-way-select", //get 获取通道/货架下拉框数据
|
|
363
|
+
getWarehouseRoadwaypages: "/api/app/warehouse/road-way-pages", //get 获取巷道分页信息
|
|
364
|
+
postWarehouseRoadway: "/api/app/warehouse/road-way", //post 创建巷道信息
|
|
365
|
+
putWarehouseRoadwayByRoadWayId: "/api/app/warehouse/road-way", //put 编辑巷道信息
|
|
366
|
+
putWarehouseRoadwayByRoadWayIdCompleteUrl: "/api/app/warehouse/road-way/{roadWayId}", //put 编辑巷道信息
|
|
367
|
+
deleteWarehouseRoadwayByRoadWayId: "/api/app/warehouse/road-way", //delete 删除巷道信息
|
|
368
|
+
deleteWarehouseRoadwayByRoadWayIdCompleteUrl: "/api/app/warehouse/road-way/{roadWayId}", //delete 删除巷道信息
|
|
369
|
+
getWarehouseRowwaybyidByRoadWayId: "/api/app/warehouse/row-way-by-id", //get 根据ID获取单条数据通道信息
|
|
370
|
+
getWarehouseRowwaybyidByRoadWayIdCompleteUrl: "/api/app/warehouse/row-way-by-id/{roadWayId}", //get 根据ID获取单条数据通道信息
|
|
371
|
+
postWarehouseExportroadway: "/api/app/warehouse/export-road-way", //post 通道信息导出
|
|
372
|
+
postWarehouseImportcontainer: "/api/app/warehouse/import-container", //post 导入容器信息
|
|
373
|
+
postWarehouseExportcontainer: "/api/app/warehouse/export-container", //post 容器信息导出
|
|
374
|
+
getWarehouseContainershapetypeselect: "/api/app/warehouse/container-shape-type-select", //get 获取容器属性 枚举下拉框数据
|
|
375
|
+
getWarehouseUsagestatusselect: "/api/app/warehouse/usage-status-select", //get 使用状态下拉
|
|
376
|
+
getWarehouseLoadstatusselect: "/api/app/warehouse/load-status-select", //get 获取承载状态下拉框数据
|
|
377
|
+
getWarehouseContainerpagessort: "/api/app/warehouse/container-pages-sort", //get 获取容器分页信息数据-排序
|
|
378
|
+
getWarehouseContainerpages: "/api/app/warehouse/container-pages", //get 获取容器分页信息数据
|
|
379
|
+
postWarehouseContainer: "/api/app/warehouse/container", //post 创建容器信息
|
|
380
|
+
putWarehouseContainerByContainerId: "/api/app/warehouse/container", //put 编辑容器信息
|
|
381
|
+
putWarehouseContainerByContainerIdCompleteUrl: "/api/app/warehouse/container/{containerId}", //put 编辑容器信息
|
|
382
|
+
deleteWarehouseContainerByContainerId: "/api/app/warehouse/container", //delete 删除容器信息
|
|
383
|
+
deleteWarehouseContainerByContainerIdCompleteUrl: "/api/app/warehouse/container/{containerId}", //delete 删除容器信息
|
|
384
|
+
getWarehouseContainerbyidByContainerId: "/api/app/warehouse/container-by-id", //get 根据ID获取单条数据
|
|
385
|
+
getWarehouseContainerbyidByContainerIdCompleteUrl: "/api/app/warehouse/container-by-id/{ContainerId}", //get 根据ID获取单条数据
|
|
386
|
+
postWarehouseImportcargolocation: "/api/app/warehouse/import-cargo-location", //post 库位信息导入
|
|
387
|
+
getWarehouseLocationtypeselect: "/api/app/warehouse/location-type-select", //get 获取库位类型下拉框数据
|
|
388
|
+
getWarehouseOutlocationselect: "/api/app/warehouse/out-location-select", //get 获取出库口下拉
|
|
389
|
+
getWarehouseCargolocationpagessort: "/api/app/warehouse/cargo-location-pages-sort", //get 获取库位分页数据-排序
|
|
390
|
+
getWarehouseCargolocationpages: "/api/app/warehouse/cargo-location-pages", //get 获取库位分页数据
|
|
391
|
+
postWarehouseCargolocation: "/api/app/warehouse/cargo-location", //post 创建库位
|
|
392
|
+
putWarehouseCargolocationByCargoLocationId: "/api/app/warehouse/cargo-location", //put 编辑库位
|
|
393
|
+
putWarehouseCargolocationByCargoLocationIdCompleteUrl: "/api/app/warehouse/cargo-location/{cargoLocationId}", //put 编辑库位
|
|
394
|
+
deleteWarehouseCargolocationByCargoLocationId: "/api/app/warehouse/cargo-location", //delete 删除库位
|
|
395
|
+
deleteWarehouseCargolocationByCargoLocationIdCompleteUrl: "/api/app/warehouse/cargo-location/{cargoLocationId}", //delete 删除库位
|
|
396
|
+
postWarehouseExportcargolocation: "/api/app/warehouse/export-cargo-location", //post 库位信息导出
|
|
397
|
+
getWarehouseCargolocationselect: "/api/app/warehouse/cargo-location-select", //get 获取库位下拉框数据
|
|
398
|
+
getWarehouseInoroutcargolocationselect: "/api/app/warehouse/in-or-out-cargo-location-select", //get 获取出入库口下拉
|
|
399
|
+
getWarehouseCargolocationbyidByCargoLocationId: "/api/app/warehouse/cargo-location-by-id", //get 根据ID获取单条数据
|
|
400
|
+
getWarehouseCargolocationbyidByCargoLocationIdCompleteUrl: "/api/app/warehouse/cargo-location-by-id/{CargoLocationId}", //get 根据ID获取单条数据
|
|
401
|
+
getWarehouseCargolocationdepth: "/api/app/warehouse/cargo-location-depth", //get 获取库位深度值数据
|
|
402
|
+
postWarehouse: "/api/app/warehouse/warehouse", //post 创建仓库
|
|
403
|
+
postWarehouseExportwarehouse: "/api/app/warehouse/export-warehouse", //post 仓库信息导出
|
|
404
|
+
deleteWarehouseByWarehouseId: "/api/app/warehouse/warehouse", //delete 删除仓库信息
|
|
405
|
+
deleteWarehouseByWarehouseIdCompleteUrl: "/api/app/warehouse/warehouse/{warehouseId}", //delete 删除仓库信息
|
|
406
|
+
putWarehouseByWarehouseId: "/api/app/warehouse/warehouse", //put 编辑仓库信息
|
|
407
|
+
putWarehouseByWarehouseIdCompleteUrl: "/api/app/warehouse/warehouse/{WarehouseId}", //put 编辑仓库信息
|
|
408
|
+
getWarehouseWarehousepages: "/api/app/warehouse/warehouse-pages", //get 获取仓库分页数据信息
|
|
409
|
+
getWarehouseWarehouseselect: "/api/app/warehouse/warehouse-select", //get 获取仓库下拉框数据
|
|
410
|
+
getWarehouseWarehousebyidByWarehouseId: "/api/app/warehouse/warehouse-by-id", //get 根据ID获取单条数据
|
|
411
|
+
getWarehouseWarehousebyidByWarehouseIdCompleteUrl: "/api/app/warehouse/warehouse-by-id/{warehouseId}", //get 根据ID获取单条数据
|
|
412
|
+
postWarehouseExportregion: "/api/app/warehouse/export-region", //post 区域信息导出
|
|
413
|
+
getWarehouseRegionselect: "/api/app/warehouse/region-select", //get 获取区域下拉框数据
|
|
414
|
+
getWarehouseRegiontypeselect: "/api/app/warehouse/region-type-select", //get · 获取区域下拉框数据-根据所属区域属性
|
|
415
|
+
getWarehouseRegionpdabusinessselect: "/api/app/warehouse/region-pda-business-select", //get 获取pda业务下拉框
|
|
416
|
+
getWarehouseContainerinfo: "/api/app/warehouse/container-info", //get 获取空容器展示信息
|
|
417
|
+
getWarehouseRegionenumselect: "/api/app/warehouse/region-enum-select", //get 获取区域属性下拉框数据
|
|
418
|
+
getWarehouseRegionpages: "/api/app/warehouse/region-pages", //get 获取区域分页数据信息
|
|
419
|
+
postWarehouseRegion: "/api/app/warehouse/region", //post 创建区域
|
|
420
|
+
putWarehouseRegionByRegionId: "/api/app/warehouse/region", //put 编辑区域信息
|
|
421
|
+
putWarehouseRegionByRegionIdCompleteUrl: "/api/app/warehouse/region/{regionId}", //put 编辑区域信息
|
|
422
|
+
deleteWarehouseRegionByRegionId: "/api/app/warehouse/region", //delete 删除区域信息
|
|
423
|
+
deleteWarehouseRegionByRegionIdCompleteUrl: "/api/app/warehouse/region/{regionId}", //delete 删除区域信息
|
|
424
|
+
getWarehouseRegionbyidByRegionId: "/api/app/warehouse/region-by-id", //get 根据ID获取单条数据
|
|
425
|
+
getWarehouseRegionbyidByRegionIdCompleteUrl: "/api/app/warehouse/region-by-id/{RegionId}", //get 根据ID获取单条数据
|
|
426
|
+
postWarehouseExportarea: "/api/app/warehouse/export-area", //post 库区信息导出
|
|
427
|
+
getWarehouseAreaselect: "/api/app/warehouse/area-select", //get 获取库区下拉框数据
|
|
428
|
+
getWarehouseAreapages: "/api/app/warehouse/area-pages", //get 获取库区分页数据
|
|
429
|
+
postWarehouseArea: "/api/app/warehouse/area", //post 创建库区
|
|
430
|
+
putWarehouseAreaByAreaId: "/api/app/warehouse/area", //put 编辑库区
|
|
431
|
+
putWarehouseAreaByAreaIdCompleteUrl: "/api/app/warehouse/area/{areaId}", //put 编辑库区
|
|
432
|
+
deleteWarehouseAreaByAreaId: "/api/app/warehouse/area", //delete 删除库区
|
|
433
|
+
deleteWarehouseAreaByAreaIdCompleteUrl: "/api/app/warehouse/area/{areaId}", //delete 删除库区
|
|
434
|
+
getWarehouseAreabyidByAreaId: "/api/app/warehouse/area-by-id", //get 根据ID获取单条数据
|
|
435
|
+
getWarehouseAreabyidByAreaIdCompleteUrl: "/api/app/warehouse/area-by-id/{AreaId}", //get 根据ID获取单条数据
|
|
436
|
+
postWarehouseGetcontainerimagebase64String: "/api/app/warehouse/get-container-image-base64String", //post 获取图片的Base64字符串
|
|
437
|
+
postWarehouseContainertype: "/api/app/warehouse/container-type", //post 创建容器类型
|
|
438
|
+
postWarehouseExportcontainertype: "/api/app/warehouse/export-container-type", //post 容器类型信息导出
|
|
439
|
+
deleteWarehouseContainertypeByContainerTypeId: "/api/app/warehouse/container-type", //delete 删除容器类型信息
|
|
440
|
+
deleteWarehouseContainertypeByContainerTypeIdCompleteUrl: "/api/app/warehouse/container-type/{ContainerTypeId}", //delete 删除容器类型信息
|
|
441
|
+
putWarehouseContainertypeByContainerTypeId: "/api/app/warehouse/container-type", //put 编辑容器类型信息
|
|
442
|
+
putWarehouseContainertypeByContainerTypeIdCompleteUrl: "/api/app/warehouse/container-type/{ContainerTypeId}", //put 编辑容器类型信息
|
|
443
|
+
getWarehouseContainertypepages: "/api/app/warehouse/container-type-pages", //get 获取容器类型分页数据信息
|
|
444
|
+
getWarehouseContainertypeselect: "/api/app/warehouse/container-type-select", //get 获取容器类型下拉框数据
|
|
445
|
+
getWarehouseContainertypebyidByContainerTypeId: "/api/app/warehouse/container-type-by-id", //get 根据ID获取单条数据
|
|
446
|
+
getWarehouseContainertypebyidByContainerTypeIdCompleteUrl: "/api/app/warehouse/container-type-by-id/{ContainerTypeId}", //get 根据ID获取单条数据
|
|
447
|
+
postWarehouseGrade: "/api/app/warehouse/grade", //post 创建等级
|
|
448
|
+
postWarehouseExportgrade: "/api/app/warehouse/export-grade", //post 等级信息导出
|
|
449
|
+
deleteWarehouseGradeByGradeId: "/api/app/warehouse/grade", //delete 删除等级信息
|
|
450
|
+
deleteWarehouseGradeByGradeIdCompleteUrl: "/api/app/warehouse/grade/{GradeId}", //delete 删除等级信息
|
|
451
|
+
putWarehouseGradeByGradeId: "/api/app/warehouse/grade", //put 编辑等级信息
|
|
452
|
+
putWarehouseGradeByGradeIdCompleteUrl: "/api/app/warehouse/grade/{GradeId}", //put 编辑等级信息
|
|
453
|
+
getWarehouseGradepages: "/api/app/warehouse/grade-pages", //get 获取等级分页数据信息
|
|
454
|
+
getWarehouseGradeselect: "/api/app/warehouse/grade-select", //get 获取等级下拉框数据
|
|
455
|
+
getWarehouseGradebyidByGradeId: "/api/app/warehouse/grade-by-id", //get 根据ID获取单条数据
|
|
456
|
+
getWarehouseGradebyidByGradeIdCompleteUrl: "/api/app/warehouse/grade-by-id/{GradeId}", //get 根据ID获取单条数据
|
|
457
|
+
postWarehousePoint: "/api/app/warehouse/point", //post 创建出入库点位
|
|
458
|
+
postWarehouseExportpoint: "/api/app/warehouse/export-point", //post 出入库点位信息导出
|
|
459
|
+
deleteWarehousePointByPointId: "/api/app/warehouse/point", //delete 删除出入库点位信息
|
|
460
|
+
deleteWarehousePointByPointIdCompleteUrl: "/api/app/warehouse/point/{PointId}", //delete 删除出入库点位信息
|
|
461
|
+
putWarehousePointByPointId: "/api/app/warehouse/point", //put 编辑出入库点位信息
|
|
462
|
+
putWarehousePointByPointIdCompleteUrl: "/api/app/warehouse/point/{PointId}", //put 编辑出入库点位信息
|
|
463
|
+
getWarehousePointpages: "/api/app/warehouse/point-pages", //get 获取出入库点位分页数据信息
|
|
464
|
+
getWarehousePointselect: "/api/app/warehouse/point-select", //get 获取出入库点位下拉框数据
|
|
465
|
+
getWarehousePointtypeselect: "/api/app/warehouse/point-type-select", //get 获取点位类型下拉框数据
|
|
466
|
+
getWarehousePointbyidByPointId: "/api/app/warehouse/point-by-id", //get 根据ID获取单条数据
|
|
467
|
+
getWarehousePointbyidByPointIdCompleteUrl: "/api/app/warehouse/point-by-id/{PointId}", //get 根据ID获取单条数据
|
|
468
|
+
postWarehouseShipper: "/api/app/warehouse/shipper", //post 创建出货方
|
|
469
|
+
postWarehouseExportshipper: "/api/app/warehouse/export-shipper", //post 出货方信息导出
|
|
470
|
+
};
|
|
471
|
+
|
|
472
|
+
// 新无条件入库
|
|
473
|
+
export const PdaStockInNew1 = {
|
|
474
|
+
postPdastockinnew1Valiteproduct: "/api/app/pda-stock-in-new1/valite-product", //post 校验物料号
|
|
475
|
+
postPdastockinnew1Stonckinbindingplate: "/api/app/pda-stock-in-new1/stonck-in-binding-plate", //post 无条件入库绑盘(港华)
|
|
476
|
+
};
|
|
477
|
+
|