作者 小范

更新库存管理界面的查询接口

... ... @@ -4,7 +4,7 @@ import http from "../http";
let baseServiceURL = 'wms-server-warehouse/wms'
let baseUrl = 'wms-server-warehouse/wms/station'
let baseUrl1 = 'wms-server-warehouse/wms/house'
let baseUrl2 = 'wms-server-warehouse/wms/inventroyrecord'
let baseUrl2 = 'wms-server-warehouse/wms/newinventroy'
let baseUrl3 = 'wms-server-warehouse/wms/location'
let baseUrl4 = 'wms-server-warehouse/wms/inventroy'
let baseUrl5 = 'wms-server-warehouse/wms/area'
... ... @@ -36,8 +36,8 @@ export const ediHouse = params => { return http.post(`${baseUrl1}/ediHouse`,para
export const selectByHouseid = params => { return axios.get(`${baseUrl1}/selectByHouseid`, { params: params }); };
//库存变更记录
export const selectInventroyrecords = params => { return axios.get(`${baseUrl2}/selectInventroyrecords`, { params: params }); };
//库存管理
export const selectNewInventroys = params => { return axios.get(`${baseUrl2}/selectNewInventroys`, { params: params }); };
export const delInventoryrecord = params => { return axios.get(`${baseUrl2}/delInventoryrecord`, { params: params }); };
... ...
... ... @@ -336,7 +336,7 @@
</template>
<script>
import {selectInventorys,delInventroy,addInventory,ediInventroy} from '../../api/consigner/station';
import {selectNewInventroys,delInventroy,addInventory,ediInventroy} from '../../api/consigner/station';
export default {
name: "inventroy",
... ... @@ -423,7 +423,7 @@
},
getList() {
const _this = this
selectInventorys(this.queryInfo).then((response) => {
selectNewInventroys(this.queryInfo).then((response) => {
const res = response.data
console.log(response.data)
if (res.code !== '200') {
... ...