|
|
|
@ -80,11 +80,8 @@
|
|
|
|
|
<el-table v-loading="loading"
|
|
|
|
|
:data="list"
|
|
|
|
|
style="width: 100%; "
|
|
|
|
|
highlight-current-row
|
|
|
|
|
@row-click="getStockOrderDetailList" ref="multipleTable">
|
|
|
|
|
<el-table-column
|
|
|
|
|
type="selection"
|
|
|
|
|
width="55">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
|
|
<el-table-column label="单据号" prop="billNo" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="往来单位" prop="corpName" show-overflow-tooltip></el-table-column>
|
|
|
|
@ -129,8 +126,6 @@
|
|
|
|
|
>单据打印
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -139,6 +134,7 @@
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="total"
|
|
|
|
|
:current-page="query.page"
|
|
|
|
|
>
|
|
|
|
|
</el-pagination>
|
|
|
|
|
</el-card>
|
|
|
|
@ -146,6 +142,7 @@
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<el-table v-loading="detailLoading"
|
|
|
|
|
:data="detailList"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
|
|
<el-table-column label="产品通用名" width="150" prop="productName"></el-table-column>
|
|
|
|
@ -190,6 +187,7 @@
|
|
|
|
|
@current-change="detailHandleCurrentChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="detailTotal"
|
|
|
|
|
:current-page="detailTotal.page"
|
|
|
|
|
>
|
|
|
|
|
</el-pagination>
|
|
|
|
|
</el-card>
|
|
|
|
@ -628,6 +626,8 @@ export default {
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
this.haveDistributionVisible = false;
|
|
|
|
|
this.actDateRange = [];
|
|
|
|
|
|
|
|
|
|
this.resetDetailQuery();
|
|
|
|
|
},
|
|
|
|
|
onSubmit() {
|
|
|
|
|
if (this.actDateRange !== null) {
|
|
|
|
@ -638,19 +638,30 @@ export default {
|
|
|
|
|
this.query.endTime = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.query.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
if (this.query.status === "202") {
|
|
|
|
|
this.haveDistributionVisible = true;
|
|
|
|
|
} else {
|
|
|
|
|
this.haveDistributionVisible = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.resetDetailQuery();
|
|
|
|
|
},
|
|
|
|
|
resetDetailQuery() {
|
|
|
|
|
this.detailQuery = {
|
|
|
|
|
orderIdFk: "",
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20
|
|
|
|
|
};
|
|
|
|
|
this.detailTotal = 0;
|
|
|
|
|
},
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
this.query.page = val;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
detailHandleCurrentChange(val) {
|
|
|
|
|
this.query.page = val;
|
|
|
|
|
this.detailQuery.page = val;
|
|
|
|
|
this.getStockOrderDetailList();
|
|
|
|
|
},
|
|
|
|
|
// 刷新表单
|
|
|
|
@ -755,6 +766,7 @@ export default {
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.detailLoading = false;
|
|
|
|
|
this.detailList = response.data.list || [];
|
|
|
|
|
this.detailTotal = response.data.total;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.detailLoading = false;
|
|
|
|
|