deliver.vue
3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<template>
<layout-body>
<layout-filter>
<filter-item>
<order-info :id="id" @on-change="onOrderChange"></order-info>
</filter-item>
</layout-filter>
<layout-action>
<Button type="primary" @click="onClickCreate" :disabled="this.selection.length === 0">发货</Button>
<Button @click="$router.go(-1)">返回发货入库列表</Button>
</layout-action>
<layout-list>
<Table ref="goodsList" border :columns="tableCols" :data="tableData"
@on-selection-change="onSelectChange">
</Table>
</layout-list>
<send-modal :context="self" ref="sendModal" @on-success="getGoods"></send-modal>
</layout-body>
</template>
<script>
import deliver from './store/deliver';
import SendModal from './components/send-modal';
import OrderInfo from './components/order-info';
import InvoiceService from 'services/repository/invoice-service';
import _ from 'lodash';
export default {
data() {
return deliver.call(this);
},
created() {
this.invoiceService = new InvoiceService();
this.id = this.$route.params.id;
this.brandId = this.$route.query.brandId;
this.getGoods();
},
methods: {
onClickCreate() {
this.tableData = this.$refs.goodsList.rebuildData;
let select = this.tableData.filter(i => {
return _.find(this.selection, (s) => s.id === i.id);
});
if (!select.every((i) => {
return i.num && i.num <= i.buyingNums && i.num <= (i.buyingNums - i.shipmentsNums);
})) {
this.$Message.error('请正确填写发货数量');
this.selection = [];
return;
}
this.$refs.sendModal.show(this.id, select);
},
getGoods() {
return this.invoiceService.listProduct({
proRequisitionFormId: this.id,
brandId: this.brandId
}).then((res) => {
if (res.code === 200) {
this.tableData = (res.data.goodsList || []).map((i) => {
i._disabled = i.shipmentsNums === i.buyingNums;
i.num = i._disabled ? null : i.buyingNums - i.shipmentsNums;
return i;
});
}
});
},
onSelectChange(selection) {
this.selection = selection;
},
onOrderChange(data) {
this.info = data;
},
back() {
this.$router.push({
name: 'repository.invoice.list'
});
}
},
components: {
SendModal,
OrderInfo
}
};
</script>
<style lang="scss">
</style>