|
|
|
@ -151,7 +151,7 @@
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
|
|
|
|
|
<el-button v-if="addBussinessTypeBtnVisible" type="primary" style="float: right; margin-bottom: 5px;" @click="addBussinessType">添加单据类型</el-button>
|
|
|
|
|
<el-table v-loading="busTypeLoading" :data="busTypeList" style="width: 100%">
|
|
|
|
|
<el-table-column label="序号" type="index" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型" prop="name" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
@ -183,6 +183,12 @@
|
|
|
|
|
@click="handleSave(scope.$index, scope.row)"
|
|
|
|
|
>保存
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click="handleDelete(scope.$index, scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -193,16 +199,54 @@
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<!--添加单据类型弹窗-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="单据类型"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:visible.sync="bussinessTypeFormVisible"
|
|
|
|
|
>
|
|
|
|
|
<el-table v-loading="loading" :data="bussinessTypeList" ref="typeList"
|
|
|
|
|
@selection-change="handleBussinessTypeSelectionChange"
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
<el-table-column
|
|
|
|
|
type="selection"
|
|
|
|
|
:reserve-selection="false"
|
|
|
|
|
width="55">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="单据类型编码" prop="action" fixed></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型名称" prop="name" fixed></el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click.native="bussinessTypeFormVisible = !bussinessTypeFormVisible"
|
|
|
|
|
>取消
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="addBussinessTypeData()"
|
|
|
|
|
>提交
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
getBasicThirdSys,
|
|
|
|
|
updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys, filterBusTypeDetail, saveBusTypeDetail
|
|
|
|
|
updateBasicThirdSys, getDetailBasicThirdSys, updateDetailBasicThirdSys, filterBusTypeDetail, saveBusTypeDetail,
|
|
|
|
|
saveBusTypes, deleteThirdSysBusType
|
|
|
|
|
} from "../../api/basic/basicThirdSys";
|
|
|
|
|
|
|
|
|
|
import modifyDialog from "./BasicThirdSysModify";
|
|
|
|
|
import modifyDetailDialog from "./BasicThirdSysDetailModify";
|
|
|
|
|
import {getLocalBusType} from "../../api/basic/busLocalType";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
@ -237,6 +281,12 @@ export default {
|
|
|
|
|
loading: false,
|
|
|
|
|
busTypeLoading:false,
|
|
|
|
|
currentCheckIndex: -1,
|
|
|
|
|
bussinessTypeFormVisible: false,
|
|
|
|
|
bussinessTypeList: [],
|
|
|
|
|
addBussinessTypeBtnVisible: false,
|
|
|
|
|
selectBussinessTypeList: [],
|
|
|
|
|
thirdSysFk: null,
|
|
|
|
|
submitOrderRow: null
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -264,6 +314,13 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
handleBustypeChange(row) {
|
|
|
|
|
this.getBustyList(row);
|
|
|
|
|
if (row.key === "orderSubmitUrl") {
|
|
|
|
|
this.addBussinessTypeBtnVisible = true;
|
|
|
|
|
this.submitOrderRow = row;
|
|
|
|
|
} else {
|
|
|
|
|
this.addBussinessTypeBtnVisible = false;
|
|
|
|
|
}
|
|
|
|
|
this.thirdSysFk = row.thirdSysFk;
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
@ -273,9 +330,6 @@ export default {
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
// this.getDetailList(this.list[0]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
@ -375,9 +429,6 @@ export default {
|
|
|
|
|
this.modifyDetailDialogVisible = true;
|
|
|
|
|
this.inputDetailQuery = row;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleEdit(index, row) {
|
|
|
|
|
this.currentCheckIndex = index;
|
|
|
|
|
},
|
|
|
|
@ -389,6 +440,58 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
addBussinessType(){
|
|
|
|
|
this.bussinessTypeFormVisible = true;
|
|
|
|
|
getLocalBusType().then((res) => {
|
|
|
|
|
this.bussinessTypeList = res.data.list;
|
|
|
|
|
this.busTypeList.forEach((item) => {
|
|
|
|
|
for (let i = 0; i < this.bussinessTypeList.length; i++) {
|
|
|
|
|
if (item.code === this.bussinessTypeList[i].action) {
|
|
|
|
|
this.bussinessTypeList.splice(i, 1);
|
|
|
|
|
i--;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
addBussinessTypeData() {
|
|
|
|
|
if (this.selectBussinessTypeList.length == 0) {
|
|
|
|
|
this.$message.error("请选择单据类型")
|
|
|
|
|
} else {
|
|
|
|
|
this.bussinessTypeFormVisible = false;
|
|
|
|
|
let data = [];
|
|
|
|
|
this.selectBussinessTypeList.forEach((row) => {
|
|
|
|
|
let item = {
|
|
|
|
|
code: row.action,
|
|
|
|
|
name: row.name,
|
|
|
|
|
type: 2,
|
|
|
|
|
thirdSys: this.thirdSysFk
|
|
|
|
|
}
|
|
|
|
|
data.push(item);
|
|
|
|
|
});
|
|
|
|
|
saveBusTypes(data).then((res) => {
|
|
|
|
|
this.handleBustypeChange(this.submitOrderRow);
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
handleBussinessTypeSelectionChange(row) {
|
|
|
|
|
let _this = this;
|
|
|
|
|
_this.selectBussinessTypeList = [];
|
|
|
|
|
row.forEach((item) => {
|
|
|
|
|
_this.selectBussinessTypeList.push(item);
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleDelete(index, row) {
|
|
|
|
|
let params = {id: row.id};
|
|
|
|
|
deleteThirdSysBusType(params).then((res) => {
|
|
|
|
|
this.handleBustypeChange(this.submitOrderRow);
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
modifyDialog, modifyDetailDialog
|
|
|
|
|