|
|
@ -11,7 +11,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-form-item label="申购部门">
|
|
|
|
<el-form-item label="申购部门">
|
|
|
|
<el-select v-model="filterQuery.targetDeptCode" placeholder="请选择申购部门" @change="getInvList" style="width: 90%">
|
|
|
|
<el-select v-model="filterQuery.targetDeptCode" placeholder="请选择申购部门" @change="getInvList"
|
|
|
|
|
|
|
|
style="width: 90%">
|
|
|
|
<el-option
|
|
|
|
<el-option
|
|
|
|
v-for="item in deptList"
|
|
|
|
v-for="item in deptList"
|
|
|
|
:key="item.code"
|
|
|
|
:key="item.code"
|
|
|
@ -74,13 +75,15 @@
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmitFind">查询</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmitFind">查询</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="newDistributionForm()" :loading="loading">新增单据</el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="newDistributionForm()" :loading="loading">新增单据
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
</el-button-group>
|
|
|
|
</el-button-group>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" @current-change="handleDetail" border highlight-current-row
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" @current-change="handleDetail" border
|
|
|
|
|
|
|
|
highlight-current-row
|
|
|
|
:default-sort="defaultSort" @sort-change="handleSortChange">
|
|
|
|
:default-sort="defaultSort" @sort-change="handleSortChange">
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
<el-table-column label="申购单号" prop="billNo"></el-table-column>
|
|
|
|
<el-table-column label="申购单号" prop="billNo"></el-table-column>
|
|
|
@ -104,7 +107,8 @@
|
|
|
|
sortable="custom" :sort-orders="['ascending', 'descending']"></el-table-column>
|
|
|
|
sortable="custom" :sort-orders="['ascending', 'descending']"></el-table-column>
|
|
|
|
<el-table-column label="操作" width="120px">
|
|
|
|
<el-table-column label="操作" width="120px">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button type="text" size="small" @click.native="newDistributionForm(scope.$index, scope.row)">编辑</el-button>
|
|
|
|
<el-button type="text" size="small" @click.native="newDistributionForm(scope.$index, scope.row)">编辑
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)">删除</el-button>
|
|
|
|
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)">删除</el-button>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
@ -157,8 +161,8 @@
|
|
|
|
import pureApplyEdit from "./purApplyEditDiaolog";
|
|
|
|
import pureApplyEdit from "./purApplyEditDiaolog";
|
|
|
|
import {delApply, delApplyDetailAll, inserThrOrderWeb, listApply, listApplyDetail} from "@/api/purchase/purApply";
|
|
|
|
import {delApply, delApplyDetailAll, inserThrOrderWeb, listApply, listApplyDetail} from "@/api/purchase/purApply";
|
|
|
|
import {getInvListByUser} from '@/api/system/invWarehouse'
|
|
|
|
import {getInvListByUser} from '@/api/system/invWarehouse'
|
|
|
|
import { getDeptListByUser } from '@/api/auth/authDept'
|
|
|
|
import {filterDepts, getDeptListByUser} from '@/api/auth/authDept'
|
|
|
|
import {filterSubAll} from "@/api/system/invSubWarehouse";
|
|
|
|
import {filterGroupBySpuse, filterSubAll} from "@/api/system/invSubWarehouse";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
@ -426,16 +430,20 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
getInvList() {
|
|
|
|
getInvList() {
|
|
|
|
var query = {
|
|
|
|
var query = {
|
|
|
|
parentId:this.filterQuery.targetDeptCode
|
|
|
|
parentId: this.filterQuery.targetDeptCode,
|
|
|
|
|
|
|
|
spUse: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.filterQuery.targetInvCode = null
|
|
|
|
this.filterQuery.targetInvCode = null
|
|
|
|
this.$forceUpdate()
|
|
|
|
this.$forceUpdate()
|
|
|
|
filterSubAll(query).then((res) => {
|
|
|
|
filterGroupBySpuse(query).then((res) => {
|
|
|
|
this.invList = res.data || [];
|
|
|
|
this.invList = res.data || [];
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
},
|
|
|
|
getDeptList() {
|
|
|
|
getDeptList() {
|
|
|
|
getDeptListByUser().then((res) => {
|
|
|
|
let query = {
|
|
|
|
|
|
|
|
spUse: true,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
filterDepts(query).then((res) => {
|
|
|
|
this.deptList = res.data || [];
|
|
|
|
this.deptList = res.data || [];
|
|
|
|
if (this.deptList.length > 0) {
|
|
|
|
if (this.deptList.length > 0) {
|
|
|
|
this.filterQuery.targetDeptCode = this.deptList[0].code
|
|
|
|
this.filterQuery.targetDeptCode = this.deptList[0].code
|
|
|
|