|
|
@ -413,7 +413,7 @@ |
|
|
|
<el-input type="number" v-model="item.e" |
|
|
|
<el-input type="number" v-model="item.e" |
|
|
|
:disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1" |
|
|
|
:disabled="this.form?.freightMark?.indexOf(item.dictKey) == -1" |
|
|
|
@change="textbox($event,index,6)" |
|
|
|
@change="textbox($event,index,6)" |
|
|
|
style="width: 10%;border:none; border-bottom:2px solid #eee;"/> |
|
|
|
style="width: 20%;border:none; border-bottom:2px solid #eee;"/> |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</el-checkbox> |
|
|
|
</el-checkbox> |
|
|
|
</el-checkbox-group> |
|
|
|
</el-checkbox-group> |
|
|
@ -435,7 +435,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
<script> |
|
|
|
import { add, update, remove, getReservationInfo } from '@/api/distribution/distributionReservation'; |
|
|
|
import { add, update, remove, getReservationInfo } from '@/api/distribution/distributionReservation'; |
|
|
|
import { getList, getStockArticleList } from '@/api/distribution/distributionStockArticle'; |
|
|
|
import { getList, getStockArticleList, selectStockArticleList } from '@/api/distribution/distributionStockArticle'; |
|
|
|
import { getDetailDelivery, addDelivery } from '@/api/distribution/distributionDelivery'; |
|
|
|
import { getDetailDelivery, addDelivery } from '@/api/distribution/distributionDelivery'; |
|
|
|
import { addIncrement } from '@/api/distribution/distributionStockArticle'; |
|
|
|
import { addIncrement } from '@/api/distribution/distributionStockArticle'; |
|
|
|
import { getInventoryList } from '@/api/distribution/distributionStockList'; |
|
|
|
import { getInventoryList } from '@/api/distribution/distributionStockList'; |
|
|
@ -504,7 +504,7 @@ |
|
|
|
//增加订单弹窗 |
|
|
|
//增加订单弹窗 |
|
|
|
orderShow: false, |
|
|
|
orderShow: false, |
|
|
|
//在库订单信息 |
|
|
|
//在库订单信息 |
|
|
|
stockArticleInfo: {}, |
|
|
|
stockArticleInfo: [], |
|
|
|
//库存品信息 |
|
|
|
//库存品信息 |
|
|
|
inventoryInfo: {}, |
|
|
|
inventoryInfo: {}, |
|
|
|
//时段 |
|
|
|
//时段 |
|
|
@ -598,10 +598,38 @@ |
|
|
|
this.onLoad(this.page); |
|
|
|
this.onLoad(this.page); |
|
|
|
}, |
|
|
|
}, |
|
|
|
handleAddOrder() { |
|
|
|
handleAddOrder() { |
|
|
|
|
|
|
|
this.query.typeService=1; |
|
|
|
|
|
|
|
let page =this.page; |
|
|
|
|
|
|
|
let params = {}; |
|
|
|
|
|
|
|
selectStockArticleList(page.currentPage,page.pageSize,Object.assign(params,this.query)).then(res=>{ |
|
|
|
|
|
|
|
const data = res.data.data; |
|
|
|
|
|
|
|
data.records.forEach(item => { |
|
|
|
|
|
|
|
item.reservationNum = item.handQuantity; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this.page.total = data.total; |
|
|
|
|
|
|
|
this.stockArticleInfo = data.records; |
|
|
|
|
|
|
|
this.loading = false; |
|
|
|
|
|
|
|
this.selectionClear(); |
|
|
|
|
|
|
|
}) |
|
|
|
this.selectionList = []; |
|
|
|
this.selectionList = []; |
|
|
|
this.orderShow = true; |
|
|
|
this.orderShow = true; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log("?????????????",params); |
|
|
|
}, |
|
|
|
}, |
|
|
|
handleAddInventory() { |
|
|
|
handleAddInventory() { |
|
|
|
|
|
|
|
let page =this.page; |
|
|
|
|
|
|
|
let params = {}; |
|
|
|
|
|
|
|
getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
|
|
|
|
|
|
|
const inventoryList = res.data.data; |
|
|
|
|
|
|
|
inventoryList.records.forEach(item => { |
|
|
|
|
|
|
|
item.reservationNum = '0'; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this.page.total = inventoryList.total; |
|
|
|
|
|
|
|
this.inventoryInfo = inventoryList.records; |
|
|
|
|
|
|
|
this.loading = false; |
|
|
|
|
|
|
|
this.selectionClear(); |
|
|
|
|
|
|
|
}); |
|
|
|
this.selectionList = []; |
|
|
|
this.selectionList = []; |
|
|
|
this.stockListShow = true; |
|
|
|
this.stockListShow = true; |
|
|
|
}, |
|
|
|
}, |
|
|
@ -957,7 +985,6 @@ |
|
|
|
this.form.deliveryAddress = address; |
|
|
|
this.form.deliveryAddress = address; |
|
|
|
|
|
|
|
|
|
|
|
this.orderData = data; |
|
|
|
this.orderData = data; |
|
|
|
this.loading = false; |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.reservationId) { |
|
|
|
if (this.reservationId) { |
|
|
@ -977,28 +1004,7 @@ |
|
|
|
this.form = reservation; |
|
|
|
this.form = reservation; |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
|
|
|
this.loading = false; |
|
|
|
const inventoryList = res.data.data; |
|
|
|
|
|
|
|
inventoryList.records.forEach(item => { |
|
|
|
|
|
|
|
item.reservationNum = '0'; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this.page.total = inventoryList.total; |
|
|
|
|
|
|
|
this.inventoryInfo = inventoryList.records; |
|
|
|
|
|
|
|
this.loading = false; |
|
|
|
|
|
|
|
this.selectionClear(); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this.query.genre = 1; |
|
|
|
|
|
|
|
this.query.typeService = "2"; |
|
|
|
|
|
|
|
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
|
|
|
|
|
|
|
const data = res.data.data; |
|
|
|
|
|
|
|
data.records.forEach(item => { |
|
|
|
|
|
|
|
item.reservationNum = item.handQuantity; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this.page.total = data.total; |
|
|
|
|
|
|
|
this.stockArticleInfo = data.records; |
|
|
|
|
|
|
|
this.loading = false; |
|
|
|
|
|
|
|
this.selectionClear(); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|