商享通管理后台界面
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

122 lines
2.5 KiB

import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/WmsAnsBill/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// // 详情初始化
// init: function(data) {
// return request({
// url: '/wms/apiadmin/WmsAnsBill/details?sid=' + data,
// method: 'get'
// });
// },
// // 收货初始化
// getInitDetails: function(data) {
// return request({
// url: '/wms/apiadmin/inventory/WmsReceiptBill/getInitDetails?sourceSid=' + data,
// method: 'get'
// });
// },
// // 新增收货单
// save: function(data) {
// return request({
// url: '/wms/apiadmin/inventory/WmsReceiptBill/saveOrUpdate',
// method: 'post',
// data: data,
// headers: {
// 'Content-Type': 'application/json'
// }
// });
// },
// // 确认收货单
// submit: function(data) {
// return request({
// url: '/wms/apiadmin/inventory/WmsReceiptBill/confirm',
// method: 'post',
// data: data,
// headers: {
// 'Content-Type': 'application/json'
// }
// });
// },
// 入库预约
// 查询发货人信息
fetchDetailsBySid: function(data) {
return request({
url: '/wms/apiadmin/supplierinfo/fetchDetailsByBillSid/' + data,
method: 'get',
headers: {
'Content-Type': 'application/json'
}
});
},
// 查询商品明细信息
selectByBillSid: function(data) {
return request({
url: '/wms/apiadmin/wmsansbilldetails/selectByBillSid/' + data,
method: 'get',
headers: {
'Content-Type': 'application/json'
}
});
},
// 查询操作记录信息
operationrecordDetails: function(data) {
return request({
url: '/wms/apiadmin/operationrecord/details',
method: 'get',
params: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 修改库区
updateRack: function(data) {
return request({
url: '/wms/apiadmin/WmsAnsBill/updateRack',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 修改备注
updateRemarks: function(data) {
return request({
url: '/wms/apiadmin/WmsAnsBill/updateRemarks',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
}