|
@@ -52,7 +52,6 @@
|
52
|
52
|
<template slot-scope="scope">
|
53
|
53
|
<span
|
54
|
54
|
@click="showStockInDetailDialog(scope.row.good_id)"
|
55
|
|
- style="color: #579ef8"
|
56
|
55
|
>{{ stockInCount(scope.row) }}</span
|
57
|
56
|
>
|
58
|
57
|
</template>
|
|
@@ -61,7 +60,6 @@
|
61
|
60
|
<template slot-scope="scope">
|
62
|
61
|
<span
|
63
|
62
|
@click="showSaleReturnDetailDialog(scope.row)"
|
64
|
|
- style="color: #F56C6C"
|
65
|
63
|
>{{ salesReturnCount(scope.row) }}</span
|
66
|
64
|
>
|
67
|
65
|
</template>
|
|
@@ -75,7 +73,6 @@
|
75
|
73
|
<template slot-scope="scope">
|
76
|
74
|
<span
|
77
|
75
|
@click="showStockOutDetailDialog(scope.row.good_id)"
|
78
|
|
- style="color: #579ef8"
|
79
|
76
|
>{{ stockOutCount(scope.row) }}</span
|
80
|
77
|
>
|
81
|
78
|
</template>
|
|
@@ -84,7 +81,6 @@
|
84
|
81
|
<template slot-scope="scope">
|
85
|
82
|
<span
|
86
|
83
|
@click="showCancelStockDetailDialog(scope.row)"
|
87
|
|
- style="color: #F56C6C"
|
88
|
84
|
>{{ cancelStockCount(scope.row) }}</span
|
89
|
85
|
>
|
90
|
86
|
</template>
|
|
@@ -97,7 +93,7 @@
|
97
|
93
|
|
98
|
94
|
<el-table-column label="剩余库存" align="center">
|
99
|
95
|
<template slot-scope="scope">
|
100
|
|
- <span style="color: red">{{
|
|
96
|
+ <span>{{
|
101
|
97
|
stockInCount(scope.row) -
|
102
|
98
|
salesReturnCount(scope.row) -
|
103
|
99
|
stockOutCount(scope.row) +
|