Commit 709cb4de by liangjianmin

优化 API 环境配置,调整代码格式,确保一致性

parent 33fce56e
Showing with 411 additions and 410 deletions
...@@ -3,18 +3,18 @@ var ENV = 'development'; ...@@ -3,18 +3,18 @@ var ENV = 'development';
// 环境配置映射 // 环境配置映射
var ENV_CONFIG = { var ENV_CONFIG = {
production: { production: {
API_BASE: 'https://api.ichunt.com', API_BASE: 'https://api.ichunt.com',
API_BASE_OSS: 'https://image.ichunt.net', API_BASE_OSS: 'https://image.ichunt.net',
API_BASE_OSS_HK: 'http://hk.image.semour.com', API_BASE_OSS_HK: 'http://hk.image.semour.com',
API_BASE_WMS: 'https://wms.ichunt.net' API_BASE_WMS: 'https://wms.ichunt.net'
}, },
development: { development: {
API_BASE: 'http://api.liexin.com', API_BASE: 'http://api.liexin.com',
API_BASE_OSS: 'http://image.liexindev.net', API_BASE_OSS: 'http://image.liexindev.net',
API_BASE_OSS_HK: 'http://image.liexindev.net', API_BASE_OSS_HK: 'http://image.liexindev.net',
API_BASE_WMS: 'http://wms.liexindev.net' API_BASE_WMS: 'http://wms.liexindev.net'
} }
}; };
// 当前环境配置 // 当前环境配置
...@@ -26,410 +26,410 @@ var API_BASE_WMS = currentEnv.API_BASE_WMS; ...@@ -26,410 +26,410 @@ var API_BASE_WMS = currentEnv.API_BASE_WMS;
// 环境日志输出 // 环境日志输出
var envText = ENV === 'production' ? '🔴 正式环境' : '🟢 测试环境'; var envText = ENV === 'production' ? '🔴 正式环境' : '🟢 测试环境';
console.log(`[环境] ${envText}`); console.log(`[环境] ${envText}`);
var API = { var API = {
/** /**
* 上传数据 * 上传数据
* */ * */
uploadSignForInfo: API_BASE + '/supplywechatsignfor/uploadSignForInfo', uploadSignForInfo: API_BASE + '/supplywechatsignfor/uploadSignForInfo',
/** /**
* 会员中心获取 * 会员中心获取
* */ * */
userInfo: API_BASE + '/supplywechatsignfor/userInfo', userInfo: API_BASE + '/supplywechatsignfor/userInfo',
/** /**
* 小程序登录 * 小程序登录
* */ * */
login: API_BASE + '/supplywechatsignfor/login', login: API_BASE + '/supplywechatsignfor/login',
/** /**
* 小程序解绑 * 小程序解绑
* */ * */
unBindUserInfo: API_BASE + '/supplywechatwms/unBindUserInfo', unBindUserInfo: API_BASE + '/supplywechatwms/unBindUserInfo',
/** /**
* 获取用户微信信息 * 获取用户微信信息
* */ * */
getWechatInfo: API_BASE + '/supplywechatwms/getWechatInfo', getWechatInfo: API_BASE + '/supplywechatwms/getWechatInfo',
/** /**
* 上传文件 * 上传文件
* */ * */
upload: API_BASE + '/oss/upload', upload: API_BASE + '/oss/upload',
/** /**
* 上传文件 * 上传文件
* */ * */
uploadImage: API_BASE_OSS + '/uploadImage', uploadImage: API_BASE_OSS + '/uploadImage',
/** /**
* 上传文件 * 上传文件
* */ * */
uploadImageHk: API_BASE_OSS_HK + '/uploadImage', uploadImageHk: API_BASE_OSS_HK + '/uploadImage',
/** /**
* 生成打印标签数据 * 生成打印标签数据
* */ * */
printLabel: API_BASE + '/supplywechatwms/printLabel', printLabel: API_BASE + '/supplywechatwms/printLabel',
/** /**
* 获取补打标签数据 * 获取补打标签数据
* */ * */
getPrintLabel: API_BASE + '/supplywechatwms/getPrintLabel', getPrintLabel: API_BASE + '/supplywechatwms/getPrintLabel',
/** /**
* 获取托盘下拉列表 * 获取托盘下拉列表
* */ * */
getTraySelectOption: API_BASE + '/supplywechatwms/getTraySelectOption', getTraySelectOption: API_BASE + '/supplywechatwms/getTraySelectOption',
/** /**
* 获取入仓号打印类型 * 获取入仓号打印类型
* */ * */
getErpOrderSnPrintLabelType: API_BASE + '/supplywechatwms/getErpOrderSnPrintLabelType', getErpOrderSnPrintLabelType: API_BASE + '/supplywechatwms/getErpOrderSnPrintLabelType',
/** /**
* 仓内作业列表 * 仓内作业列表
* */ * */
warehouseOperationList: API_BASE + '/supplywechatwms/warehouseOperationList', warehouseOperationList: API_BASE + '/supplywechatwms/warehouseOperationList',
/** /**
* 仓内作业详情 * 仓内作业详情
* */ * */
warehouseOperationDetail: API_BASE + '/supplywechatwms/warehouseOperationDetail', warehouseOperationDetail: API_BASE + '/supplywechatwms/warehouseOperationDetail',
/** /**
* 执行仓内作业 * 执行仓内作业
* */ * */
execWarehouseOperation: API_BASE + '/supplywechatwms/execWarehouseOperation', execWarehouseOperation: API_BASE + '/supplywechatwms/execWarehouseOperation',
/** /**
* 收货登记列表 * 收货登记列表
* */ * */
getCheckInList: API_BASE + '/supplywechatwms/getCheckInList', getCheckInList: API_BASE + '/supplywechatwms/getCheckInList',
/** /**
* 新增收货登记 * 新增收货登记
* */ * */
addCheckIn: API_BASE + '/supplywechatwms/addCheckIn', addCheckIn: API_BASE + '/supplywechatwms/addCheckIn',
/** /**
* 新增异常收货登记 * 新增异常收货登记
* */ * */
addUnusualCheckIn: API_BASE + '/supplywechatwms/addUnusualCheckIn', addUnusualCheckIn: API_BASE + '/supplywechatwms/addUnusualCheckIn',
/** /**
* 理货列表 * 理货列表
* */ * */
getGoodsArrangeData: API_BASE + '/supplywechatwms/getGoodsArrangeData', getGoodsArrangeData: API_BASE + '/supplywechatwms/getGoodsArrangeData',
/** /**
* 获取理货异常列表 * 获取理货异常列表
* */ * */
getUnusualCheckInList: API_BASE + '/supplywechatwms/getUnusualCheckInList', getUnusualCheckInList: API_BASE + '/supplywechatwms/getUnusualCheckInList',
/** /**
* 新增理货异常问客 * 新增理货异常问客
*/ */
addAskCustomer: API_BASE + '/supplywechatwms/addAskCustomer', addAskCustomer: API_BASE + '/supplywechatwms/addAskCustomer',
/** /**
* 新增理货 * 新增理货
*/ */
addSortGodds: API_BASE + '/supplywechatwms/addSortGodds', addSortGodds: API_BASE + '/supplywechatwms/addSortGodds',
/** /**
* 获取理货异常问题列表 * 获取理货异常问题列表
*/ */
getAllException: API_BASE + '/supplywechatwms/getAllException', getAllException: API_BASE + '/supplywechatwms/getAllException',
/** /**
* 获取理货异常问题对应的数据数组 * 获取理货异常问题对应的数据数组
*/ */
getExceptionData: API_BASE + '/supplywechatwms/getExceptionData', getExceptionData: API_BASE + '/supplywechatwms/getExceptionData',
/** /**
* 获取理货异常列表 * 获取理货异常列表
*/ */
getUnusualSortGoodsList: API_BASE + '/supplywechatwms/getUnusualSortGoodsList', getUnusualSortGoodsList: API_BASE + '/supplywechatwms/getUnusualSortGoodsList',
/** /**
* 获取理货问客详情 * 获取理货问客详情
*/ */
getAskCustomerDetail: API_BASE + '/supplywechatwms/getAskCustomerDetail', getAskCustomerDetail: API_BASE + '/supplywechatwms/getAskCustomerDetail',
/** /**
* 作废 * 作废
*/ */
delWstyptllIdErpOrderSnCodeManage: API_BASE + '/supplywechatwms/delWstyptllIdErpOrderSnCodeManage', delWstyptllIdErpOrderSnCodeManage: API_BASE + '/supplywechatwms/delWstyptllIdErpOrderSnCodeManage',
/** /**
* 条码管理列表 * 条码管理列表
*/ */
erpOrderSnCodeManage: API_BASE + '/supplywechatwms/erpOrderSnCodeManage', erpOrderSnCodeManage: API_BASE + '/supplywechatwms/erpOrderSnCodeManage',
/** /**
* 装箱复核时序蒲 * 装箱复核时序蒲
*/ */
rePackageList: API_BASE + '/supplywechatwms/rePackageList', rePackageList: API_BASE + '/supplywechatwms/rePackageList',
/** /**
* 装箱复核时序蒲详情 * 装箱复核时序蒲详情
*/ */
getTrayHaveScanErpOrderSn: API_BASE + '/supplywechatwms/getTrayHaveScanErpOrderSn', getTrayHaveScanErpOrderSn: API_BASE + '/supplywechatwms/getTrayHaveScanErpOrderSn',
/** /**
* 作废条码 * 作废条码
*/ */
delErpOrderSnCodeManage: API_BASE + '/supplywechatwms/delErpOrderSnCodeManage', delErpOrderSnCodeManage: API_BASE + '/supplywechatwms/delErpOrderSnCodeManage',
/** /**
* 检测标签重复打印 * 检测标签重复打印
*/ */
checkRepeatPrintLabel: API_BASE + '/supplywechatwms/checkRepeatPrintLabel', checkRepeatPrintLabel: API_BASE + '/supplywechatwms/checkRepeatPrintLabel',
/** /**
* 入仓号是否理货 * 入仓号是否理货
*/ */
checkIsTallyGoods: API_BASE + '/supplywechatwms/checkIsTallyGoods', checkIsTallyGoods: API_BASE + '/supplywechatwms/checkIsTallyGoods',
/** /**
* 扫描入库 * 扫描入库
*/ */
szScanIn: API_BASE + '/supplywechatwms/szScanIn', szScanIn: API_BASE + '/supplywechatwms/szScanIn',
/** /**
* 扫描出库 * 扫描出库
*/ */
szScanOut: API_BASE + '/supplywechatwms/szScanOut', szScanOut: API_BASE + '/supplywechatwms/szScanOut',
/** /**
* 扫描出入库列表 * 扫描出入库列表
*/ */
szScanOutInList: API_BASE + '/supplywechatwms/szScanOutInList', szScanOutInList: API_BASE + '/supplywechatwms/szScanOutInList',
/** /**
* 获取报关收货信息 * 获取报关收货信息
*/ */
getTodayCustomsDeclarationAndReceipt: API_BASE + '/supplywechatwms/getTodayCustomsDeclarationAndReceipt', getTodayCustomsDeclarationAndReceipt: API_BASE + '/supplywechatwms/getTodayCustomsDeclarationAndReceipt',
/** /**
* 签到今天的报关收货信息 * 签到今天的报关收货信息
*/ */
signTodayCustomsDeclarationAndReceipt: API_BASE + '/supplywechatwms/signTodayCustomsDeclarationAndReceipt', signTodayCustomsDeclarationAndReceipt: API_BASE + '/supplywechatwms/signTodayCustomsDeclarationAndReceipt',
/** /**
* 获取金蝶的未来货登记 * 获取金蝶的未来货登记
*/ */
getEasRegistrationOfNonArrivalGoods: API_BASE + '/supplywechatwms/getEasRegistrationOfNonArrivalGoods', getEasRegistrationOfNonArrivalGoods: API_BASE + '/supplywechatwms/getEasRegistrationOfNonArrivalGoods',
/** /**
* 生成今天的未来-货登记 * 生成今天的未来-货登记
*/ */
createRegistrationOfNonArrivalGoods: API_BASE + '/supplywechatwms/createRegistrationOfNonArrivalGoods', createRegistrationOfNonArrivalGoods: API_BASE + '/supplywechatwms/createRegistrationOfNonArrivalGoods',
/** /**
* 获取今天的报关收货统计 * 获取今天的报关收货统计
*/ */
getCustomsDeclarationAndReceiptStatistics: API_BASE + '/supplywechatwms/getCustomsDeclarationAndReceiptStatistics', getCustomsDeclarationAndReceiptStatistics: API_BASE + '/supplywechatwms/getCustomsDeclarationAndReceiptStatistics',
/** /**
* 获取当前箱号的数据 * 获取当前箱号的数据
*/ */
getBoxSnAndNum: API_BASE + '/supplywechatwms/getBoxSnAndNum', getBoxSnAndNum: API_BASE + '/supplywechatwms/getBoxSnAndNum',
/** /**
* 识别二维码数量和型号 * 识别二维码数量和型号
*/ */
identifyQrCodeNumAndSn: API_BASE + '/supplywechatwms/identifyQrCodeNumAndSn', identifyQrCodeNumAndSn: API_BASE + '/supplywechatwms/identifyQrCodeNumAndSn',
/** /**
* 识别二维码数量和型号 * 识别二维码数量和型号
*/ */
scanQrCode: API_BASE + '/supplywechatwms/scanQrCode', scanQrCode: API_BASE + '/supplywechatwms/scanQrCode',
/** /**
* 提交当前箱号的数据 * 提交当前箱号的数据
*/ */
submitBoxSnAndNum: API_BASE + '/supplywechatwms/submitBoxSnAndNum', submitBoxSnAndNum: API_BASE + '/supplywechatwms/submitBoxSnAndNum',
/** /**
* 获取入仓号的理货数据 * 获取入仓号的理货数据
*/ */
getTallyGoods: API_BASE + '/supplywechatwms/getTallyGoods', getTallyGoods: API_BASE + '/supplywechatwms/getTallyGoods',
/** /**
* 检测入仓号是否理货 * 检测入仓号是否理货
*/ */
checkErpOrderSnIsTally: API_BASE + '/supplywechatwms/checkErpOrderSnIsTally', checkErpOrderSnIsTally: API_BASE + '/supplywechatwms/checkErpOrderSnIsTally',
/** /**
* 获取产地 * 获取产地
*/ */
getOrigin: API_BASE + '/supplywechatwms/getOrigin', getOrigin: API_BASE + '/supplywechatwms/getOrigin',
/** /**
* 获取产地升级版 * 获取产地升级版
*/ */
getOriginCn: API_BASE + '/supplywechatwms/getOriginCn', getOriginCn: API_BASE + '/supplywechatwms/getOriginCn',
/** /**
* 获取合箱子入仓号 * 获取合箱子入仓号
*/ */
getFixErpOrderSn: API_BASE + '/supplywechatwms/getFixErpOrderSn', getFixErpOrderSn: API_BASE + '/supplywechatwms/getFixErpOrderSn',
/** /**
* 修改是否查看 * 修改是否查看
*/ */
changeWatch: API_BASE + '/supplywechatwms/changeWatch', changeWatch: API_BASE + '/supplywechatwms/changeWatch',
/** /**
* 提交理货 * 提交理货
*/ */
submitTallyGoods: API_BASE + '/supplywechatwms/submitTallyGoods', submitTallyGoods: API_BASE + '/supplywechatwms/submitTallyGoods',
/** /**
* 等待回复 * 等待回复
*/ */
askCustomerProblemList: API_BASE + '/supplywechatwms/askCustomerProblemList', askCustomerProblemList: API_BASE + '/supplywechatwms/askCustomerProblemList',
/** /**
* 异常理货详情 * 异常理货详情
*/ */
askCustomerProblemDetail: API_BASE + '/supplywechatwms/askCustomerProblemDetail', askCustomerProblemDetail: API_BASE + '/supplywechatwms/askCustomerProblemDetail',
/** /**
* 修改是否查看 * 修改是否查看
*/ */
changeWatch: API_BASE + '/supplywechatwms/changeWatch', changeWatch: API_BASE + '/supplywechatwms/changeWatch',
/** /**
* 问客数量 * 问客数量
*/ */
getAskNum: API_BASE + '/supplywechatwms/getAskNum', getAskNum: API_BASE + '/supplywechatwms/getAskNum',
/** /**
* 问客列表 * 问客列表
*/ */
askCustomerProblemListV2: API_BASE + '/supplywechatwms/askCustomerProblemListV2', askCustomerProblemListV2: API_BASE + '/supplywechatwms/askCustomerProblemListV2',
/** /**
* 获取入仓号对应的型号列表 * 获取入仓号对应的型号列表
*/ */
getErpOrderSnOrderGoodsSn: API_BASE + '/supplywechatwms/getErpOrderSnOrderGoodsSn', getErpOrderSnOrderGoodsSn: API_BASE + '/supplywechatwms/getErpOrderSnOrderGoodsSn',
/** /**
* 获取所有异常 * 获取所有异常
*/ */
getAllExceptionV2: API_BASE + '/supplywechatwms/getAllExceptionV2', getAllExceptionV2: API_BASE + '/supplywechatwms/getAllExceptionV2',
/** /**
* 获取异常对应的数据 * 获取异常对应的数据
*/ */
getExceptionDataV2: API_BASE + '/supplywechatwms/getExceptionDataV2', getExceptionDataV2: API_BASE + '/supplywechatwms/getExceptionDataV2',
/** /**
* 新增异常问客 * 新增异常问客
*/ */
addAskCustomerV2: API_BASE + '/supplywechatwms/addAskCustomerV2', addAskCustomerV2: API_BASE + '/supplywechatwms/addAskCustomerV2',
/** /**
* 问客详情 * 问客详情
*/ */
getAskCustomerDetailV2: API_BASE + '/supplywechatwms/getAskCustomerDetailV2', getAskCustomerDetailV2: API_BASE + '/supplywechatwms/getAskCustomerDetailV2',
/** /**
* 核对并执行 * 核对并执行
*/ */
executeJobV2: API_BASE + '/supplywechatwms/executeJobV2', executeJobV2: API_BASE + '/supplywechatwms/executeJobV2',
/** /**
* 标签打印 * 标签打印
*/ */
addSupplyChainData: API_BASE_WMS + '/open/label/addSupplyChainData', addSupplyChainData: API_BASE_WMS + '/open/label/addSupplyChainData',
/** /**
* 获取箱号 * 获取箱号
*/ */
getBoxSn: API_BASE + '/supplywechatwms/getBoxSn', getBoxSn: API_BASE + '/supplywechatwms/getBoxSn',
/** /**
* 获取锁定理货信息 * 获取锁定理货信息
*/ */
getTallyData: API_BASE + '/supplywechatwms/getTallyData', getTallyData: API_BASE + '/supplywechatwms/getTallyData',
/** /**
* 理货明细提交 * 理货明细提交
*/ */
submitTallyDetail: API_BASE + '/supplywechatwms/submitTallyDetail', submitTallyDetail: API_BASE + '/supplywechatwms/submitTallyDetail',
/** /**
* 关单封箱 * 关单封箱
*/ */
closeBox: API_BASE + '/supplywechatwms/closeBox', closeBox: API_BASE + '/supplywechatwms/closeBox',
/** /**
* 重新开箱 * 重新开箱
*/ */
reOpenBox: API_BASE + '/supplywechatwms/reOpenBox', reOpenBox: API_BASE + '/supplywechatwms/reOpenBox',
/** /**
* 理货明细撤销 * 理货明细撤销
*/ */
cancelTallyDetail: API_BASE + '/supplywechatwms/cancelTallyDetail', cancelTallyDetail: API_BASE + '/supplywechatwms/cancelTallyDetail',
/** /**
* 获取入仓号数量接口 * 获取入仓号数量接口
*/ */
getTallyList: API_BASE + '/supplywechatwms/getTallyList', getTallyList: API_BASE + '/supplywechatwms/getTallyList',
/** /**
* 获取异常理货明细 * 获取异常理货明细
*/ */
getAbnormalTallyDetail: API_BASE + '/supplywechatwms/getAbnormalTallyDetail', getAbnormalTallyDetail: API_BASE + '/supplywechatwms/getAbnormalTallyDetail',
/** /**
* 异常型号装箱 * 异常型号装箱
*/ */
submitAbnormalBox: API_BASE + '/supplywechatwms/submitAbnormalBox', submitAbnormalBox: API_BASE + '/supplywechatwms/submitAbnormalBox',
/** /**
* 合箱 * 合箱
*/ */
fixBox: API_BASE + '/supplywechatwms/fixBox', fixBox: API_BASE + '/supplywechatwms/fixBox',
/** /**
* 取消释放 * 取消释放
*/ */
cancelRelease: API_BASE + '/supplywechatwms/cancelRelease', cancelRelease: API_BASE + '/supplywechatwms/cancelRelease',
/** /**
* 供应链理货打印 - 箱号标签 * 供应链理货打印 - 箱号标签
*/ */
addSCTallyData: API_BASE_WMS + '/open/label/addSCTallyData', addSCTallyData: API_BASE_WMS + '/open/label/addSCTallyData',
/** /**
* 根据物料获取入仓号 * 根据物料获取入仓号
*/ */
getErpOrderSn: API_BASE + '/supplywechatwms/getErpOrderSn', getErpOrderSn: API_BASE + '/supplywechatwms/getErpOrderSn',
/** /**
* 获取货品 * 获取货品
*/ */
getBoxData: API_BASE + '/supplywechatwms/getBoxData', getBoxData: API_BASE + '/supplywechatwms/getBoxData',
/** /**
* 获取app版本 * 获取app版本
*/ */
getAppLatestVersion: API_BASE + '/supplywechatwms/getAppLatestVersion', getAppLatestVersion: API_BASE + '/supplywechatwms/getAppLatestVersion',
/** /**
* 获取获取标签打印列表版本 * 获取获取标签打印列表版本
*/ */
getPrintScanList: API_BASE + '/tallyGoodsAjax/getPrintScanList', getPrintScanList: API_BASE + '/tallyGoodsAjax/getPrintScanList',
/** /**
* app 修改子箱数量 * app 修改子箱数量
*/ */
alterTallyTagBySubBoxQty: API_BASE + '/supplywechatwms/alterTallyTagBySubBoxQty', alterTallyTagBySubBoxQty: API_BASE + '/supplywechatwms/alterTallyTagBySubBoxQty',
/** /**
* app 根据获取标签号 * app 根据获取标签号
*/ */
getPrintScanList: API_BASE + '/supplywechatwms/getPrintScanList', getPrintScanList: API_BASE + '/supplywechatwms/getPrintScanList',
/** /**
* app 根据理货明细获取箱数 * app 根据理货明细获取箱数
*/ */
getBoxNumByDetailId: API_BASE + '/supplywechatwms/getBoxNumByDetailId', getBoxNumByDetailId: API_BASE + '/supplywechatwms/getBoxNumByDetailId',
/** /**
* 更新统计打印标签次数 * 更新统计打印标签次数
*/ */
updateTagPrintTimes: API_BASE + '/supplywechatwms/updateTagPrintTimes', updateTagPrintTimes: API_BASE + '/supplywechatwms/updateTagPrintTimes',
/** /**
* 理货记录 * 理货记录
*/ */
getTallyRecordList: API_BASE + '/supplywechatwms/getTallyRecordList', getTallyRecordList: API_BASE + '/supplywechatwms/getTallyRecordList',
/** /**
* 异常管理列表 * 异常管理列表
*/ */
abnormalManageList: API_BASE + '/supplywechatwms/abnormalManageList', abnormalManageList: API_BASE + '/supplywechatwms/abnormalManageList',
/** /**
* 异常作废 * 异常作废
*/ */
cancelAbnormal: API_BASE + '/supplywechatwms/cancelAbnormal', cancelAbnormal: API_BASE + '/supplywechatwms/cancelAbnormal',
/** /**
* 异常确认 * 异常确认
*/ */
confirmAbnormal: API_BASE + '/supplywechatwms/confirmAbnormal', confirmAbnormal: API_BASE + '/supplywechatwms/confirmAbnormal',
/** /**
* 入仓号进行模糊查询 * 入仓号进行模糊查询
*/ */
getAllOrderDataByEntrustNo: API_BASE + '/supplywechatwms/getAllOrderDataByEntrustNo', getAllOrderDataByEntrustNo: API_BASE + '/supplywechatwms/getAllOrderDataByEntrustNo',
/** /**
* 根据订单ID获取明细 * 根据订单ID获取明细
*/ */
getOrderDetailById: API_BASE + '/supplywechatwms/getOrderDetailById', getOrderDetailById: API_BASE + '/supplywechatwms/getOrderDetailById',
/** /**
* 新增异常 * 新增异常
*/ */
addAbnormal: API_BASE + '/supplywechatwms/addAbnormal', addAbnormal: API_BASE + '/supplywechatwms/addAbnormal',
/** /**
* 获取快捷用语 * 获取快捷用语
*/ */
getQuickExpressions: API_BASE + '/supplywechatwms/getQuickExpressions', getQuickExpressions: API_BASE + '/supplywechatwms/getQuickExpressions',
/** /**
* 待处理数 * 待处理数
*/ */
getStayHandleCount: API_BASE + '/supplywechatwms/getStayHandleCount', getStayHandleCount: API_BASE + '/supplywechatwms/getStayHandleCount',
/** /**
* 修改理货净重 * 修改理货净重
*/ */
updateTallyNetWeight: API_BASE + '/supplywechatwms/updateTallyNetWeight', updateTallyNetWeight: API_BASE + '/supplywechatwms/updateTallyNetWeight',
/** /**
* 补打标签 * 补打标签
*/ */
reTagPrint: API_BASE + '/supplywechatwms/reTagPrint', reTagPrint: API_BASE + '/supplywechatwms/reTagPrint',
/** /**
* 验证入仓号 * 验证入仓号
*/ */
checkScTallyGoods: API_BASE + '/supplywechatwms/checkScTallyGoods', checkScTallyGoods: API_BASE + '/supplywechatwms/checkScTallyGoods',
/** /**
* 验证入仓号 * 验证入仓号
*/ */
getBoxStatus: API_BASE + '/supplywechatwms/getBoxStatus', getBoxStatus: API_BASE + '/supplywechatwms/getBoxStatus',
/** /**
* 历史理货图片 * 历史理货图片
*/ */
getHistoryPic: API_BASE + '/supplywechatwms/getHistoryPic', getHistoryPic: API_BASE + '/supplywechatwms/getHistoryPic',
/** /**
* 滞留数据详情 * 滞留数据详情
*/ */
getRetentionList: API_BASE + '/supplywechatwms/getRetentionList' getRetentionList: API_BASE + '/supplywechatwms/getRetentionList'
} }
module.exports = { module.exports = {
API API
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment