feat:医共体

dev_unify
chenhc 3 months ago
parent f2436df23b
commit c5e553e5a3

@ -9,6 +9,14 @@ export function filterList(query) {
params: query
});
}
// 获取列表
export function filterUnifyWarehouseList(query) {
return axios({
url: "/spms/sub/inv/unifyWarehouseList",
method: "get",
params: query
});
}
export function filterAll(query) {
return axios({
@ -276,4 +284,37 @@ export function getDeptById(params) {
}
export function warehouseListByCode(params) {
return axios({
url: "/warehouse/inout/warehouseListByCode",
method: "post",
data: params
});
}
export function selectNotSelectCustomer(params) {
return axios({
url: "/warehouse/inout/selectNotSelectCustomer",
method: "get",
params: params
});
}
export function addWarehouseCustomer(params) {
return axios({
url: "/warehouse/inout/addWarehouseCustomer",
method: "post",
data: params
});
}
export function deleteWarehouseCustomer(params) {
return axios({
url: "/warehouse/inout/deleteWarehouseCustomer",
method: "post",
data: params
});
}

@ -345,6 +345,32 @@
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="4">
<div class="register-text">
<span>配送医院:&nbsp;</span>
</div>
</el-col>
<el-col :span="10">
<el-form-item prop="unifyWarehouse">
<el-select
v-model="inputQuery.unifyWarehouse"
multiple
size="small"
style="width: 100%"
placeholder="请选择配送医院"
>
<el-option
v-for="unifyWarehouse in unifyWarehouseList"
:key="unifyWarehouse.code"
:label="unifyWarehouse.name"
:value="unifyWarehouse.code"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="4">
<div class="register-text">
@ -520,6 +546,7 @@
</template>
<script>
import { filterUnifyWarehouseList } from "@/api/system/invWarehouse";
import { getCheckcode, register } from "@/api/login";
import {
getCompany,
@ -629,7 +656,9 @@ export default {
bussinessStatus: "2",
checkCompanyNameStatus: false,
licenseUrl: null,
unifyWarehouse: [],
},
unifyWarehouseList:[],
udplatEnable: false,
headers: {},
uploadUrl: null,
@ -715,6 +744,7 @@ export default {
},
created() {
this.registerConfig();
this.getUnifyWarehouseList();
this.uploadUrl =
process.env.VUE_APP_BASE_API + "/udiwms/upload/register/file";
this.fileUrl =
@ -727,6 +757,21 @@ export default {
};
},
methods: {
getUnifyWarehouseList() {
//
this.loading = true;
this.unifyWarehouseList = [];
filterUnifyWarehouseList()
.then((response) => {
this.loading = false;
this.unifyWarehouseList = response.data || [];
})
.catch(() => {
this.loading = false;
this.total = 0;
this.unifyWarehouseList = [];
});
},
onSubmit(formName) {
// this.formVisible = true;
@ -739,6 +784,11 @@ export default {
}
}
if (this.inputQuery.unifyWarehouse.length < 1) {
this.$message.error("配送医院不可为空");
return;
}
// if(this.$isBlank(this.inputQuery.licenseUrl)){
// this.$message.error('');
// return;

@ -0,0 +1,319 @@
<template>
<div>
<el-form :inline="true" :model="customerQuery" class="query-form" size="mini">
<el-form-item class="query-form-item" label="供应商名称:">
<el-input
v-model="customerQuery.key"
placeholder="请输入供应商名称"
clearable
></el-input>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button
type="primary"
icon="el-icon-refresh"
@click="onCustomerReset"
>重置
</el-button>
<el-button type="primary" @click="loadCustomerList"
icon="el-icon-search"
>查询
</el-button
>
<el-button type="primary" @click="addCustomer()"
icon="el-icon-document-add"
>选入供应商
</el-button
>
</el-button-group>
</el-form-item>
</el-form>
<el-table
:data="customerData"
key="row.id"
border
style="width: 100%"
highlight-current-row
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
prop="companyName"
label="供应商名称"
min-width="30%">
</el-table-column>
<el-table-column
prop="creditNum"
label="统一社会信用号"
min-width="20%">
</el-table-column>
<el-table-column
prop="detailAddr"
label="地址"
min-width="20%">
</el-table-column>
<el-table-column
label="操作"
min-width="30%"
>
<template slot-scope="scope">
<el-button
type="text"
@click.native="rmInvCustomer(scope.row)">
移除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="customerTotal>0"
:total="customerTotal"
:page.sync="customerQuery.page"
:limit.sync="customerQuery.limit"
@pagination="loadCustomerList"
/>
<!--添加用户弹窗-->
<el-dialog
v-if="customerFormVisible"
title="仓库信息-选入供应商"
:close-on-click-modal="false"
width="65%"
append-to-body
:close-on-press-escape="false"
:visible.sync="customerFormVisible"
>
<el-table v-loading="customerloading" :data="selectCustomerList"
ref="selectCustomerList"
@selection-change="handleCustomerSelectionChange"
border
style="width: 100%">
<el-table-column
type="selection"
:reserve-selection="false"
width="55">
</el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
prop="companyName"
label="供应商名称"
min-width="30%">
</el-table-column>
<el-table-column
prop="creditNum"
label="统一社会信用号"
min-width="20%">
</el-table-column>
<el-table-column
prop="detailAddr"
label="地址"
min-width="20%">
</el-table-column>
</el-table>
<div slot="footer" class="dialog-footer">
<el-button @click.native="customerFormVisible = !customerFormVisible"
>取消
</el-button
>
<el-button
type="primary"
@click.native="addCustomerData()"
>选入
</el-button>
</div>
<pagination
v-show="selectCustomerToatl>0"
:total="selectCustomerToatl"
:page.sync="selectCustomerQuery.page"
:limit.sync="selectCustomerQuery.limit"
@pagination="getSelectCustomer"
/>
</el-dialog>
</div>
</template>
<script>
import {warehouseListByCode,selectNotSelectCustomer,addWarehouseCustomer,
deleteWarehouseCustomer} from "@/api/system/invWarehouse";
import {isBlank} from "@/utils/strUtil";
export default {
name: "invRelCustomers",
props: {
configParms: {
type: Object,
required: true,
},
inputQuery: {
type: Object,
required: true,
},
closeDialog: {
type: Function,
required: true,
},
},
data() {
return {
//-------------------------------------
customerQuery: {
code: null,
page: 1,
limit: 10
},
customerData: [],
customerTotal: 0,
customerDataList:[],
//--------------------
selectCustomerQuery: {
code: null,
page: 1,
limit: 10,
parentId:""
},
customerFormVisible: false,
customerloading: false,
selectCustomerList: [],
selectCustomerToatl: 0,
selectAddCustomer: [],
//------------------------------
curSeleCustomer: null,
relBusCustomerVisile: false,
}
},
methods: {
//
onCustomerReset() {
this.customerQuery = {
code: this.inputQuery.code,
key: null,
page: 1,
limit: 10
};
this.loadCustomerList();
},
loadCustomerList() { //
// if (val != null) {
// this.userQuery.page = val;
// }
//
warehouseListByCode(this.customerQuery).then((res) => {
this.customerData = res.data.list;
this.customerTotal = res.data.total;
}).catch((error) => {
this.$message.error("用户数据加载失败")
});
},
addCustomer() { //
if (isBlank(this.inputQuery.parentId)) {
this.$message.warning("请先选择仓库");
return;
}
this.currentCode = this.inputQuery.code;
this.customerFormVisible = true;
this.selectCustomerQuery.parentId=this.inputQuery.parentId;
this.selectCustomerQuery.code = this.inputQuery.code;
this.selectCustomerQuery.page = 1;
for(var i=0;i<this.customerData.length;i++){
this.customerDataList[i]=this.customerData[i].id;
}
this.selectCustomerQuery.listUser=this.customerDataList;
this.getSelectCustomer();
},
rmInvCustomer(row) { //
this.$confirm("确定移除该仓库关联供应商?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let params = {id: row.unifyId};
deleteWarehouseCustomer(params).then((res) => {
if (res.code == 20000) {
this.loadCustomerList();
} else {
this.$message.error(res.message);
}
}).catch((error) => {
});
})
.catch(() => {
});
},
handleCustomerSelectionChange(val) {
this.selectAddCustomer = val;
},
getSelectCustomer() {
selectNotSelectCustomer(this.selectCustomerQuery).then((res) => {
this.selectCustomerList = res.data.list;
this.selectCustomerToatl = res.data.total;
}).catch((error) => {
this.$message.error("用户数据加载失败")
});
},
addCustomerData() { //
if(this.selectAddCustomer.length==0){
this.$message.error("请选择要选入的供应商!");
return;
}
let query = {
code: this.currentCode,
customerList: this.selectAddCustomer
};
console.log(query)
addWarehouseCustomer(query).then((res) => {
if (res.code === 20000) {
this.customerFormVisible = false;
this.$message.success("添加成功");
this.loadCustomerList();
} else {
this.$message.error(res.message);
}
}).catch((error) => {
this.$message.error("添加失败");
});
},
//-
relBusttype(row) {
this.curSeleUser = row;
this.relBusUserVisile = true;
},
cancelRelBusDiaolog() {
this.relBusUserVisile = false;
},
},
watch: {
inputQuery: function () {
this.customerQuery.code = this.inputQuery.code;
this.loadCustomerList();
},
},
created() {
this.customerQuery.code = this.inputQuery.code;
this.loadCustomerList();
}
}
</script>
<style scoped>
</style>

@ -70,6 +70,13 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="是否医院标识" prop="unifyUse">
<template slot-scope="scope">
<el-tag :type="scope.row.unifyUse | spUerFilterType"
>{{ scope.row.unifyUse | unifyUseFilterName }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="220">
<template slot-scope="scope">
<el-button
@ -226,6 +233,8 @@
<!--</el-form-item>-->
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<el-form-item
label="是否能被供应商使用"
@ -238,6 +247,18 @@
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col">
<el-form-item
label="是否医院标识"
prop="unifyUse"
class="query-form-item"
>
<el-radio-group v-model="subData.unifyUse">
<el-radio :label="true"></el-radio>
<el-radio :label="false"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
<el-row class="el-row" type="flex">
@ -413,6 +434,15 @@
<span slot="label">{{ currentRow.name }}-货位信息</span>
<invSpaceManage :invInfo="currentInvInfo"></invSpaceManage>
</el-tab-pane>
<el-tab-pane v-if="this.currentRow && this.currentRow.unifyUse">
<span slot="label">{{ currentRow.name }}-供应商列表</span>
<invRelCustomers
:inputQuery="currentRow"
:configParms="configParms"
></invRelCustomers>
</el-tab-pane>
</el-tabs>
</div>
</template>
@ -435,6 +465,7 @@ import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import Treeselect from "@riophae/vue-treeselect";
import InvRelBusType from "@/views/system/dept/invRelBusType";
import InvRelUsers from "@/views/system/dept/invRelUsers";
import invRelCustomers from "@/views/system/dept/invRelCustomers";
import { isBlank } from "@/utils/strUtil";
export default {
@ -602,12 +633,13 @@ export default {
this.isShow = true;
if (data == null) {
this.isAdvanceTypeShow = false;
this.subData = { advanceType: "1", spUse: false, parentCode: null };
this.subData = { advanceType: "1", spUse: false,unifyUse: false, parentCode: null };
} else {
this.isAdvanceTypeShow = true;
this.subData = {
advanceType: data.advanceType.toString(),
spUse: false,
unifyUse: false,
parentCode: data.code,
};
}
@ -668,6 +700,7 @@ export default {
.then((response) => {
this.subFormVisible = false;
if (response.code == 20000) {
this.$message.success("操作成功");
this.getList();
} else {
this.$message.error(response.message);
@ -934,6 +967,14 @@ export default {
};
console.log("status2,spUerFilterName", status);
return upUerMap[status];
},
unifyUseFilterName(status) {
const upUerMap = {
true: "是",
false: "否",
};
return upUerMap[status];
},
},
@ -943,6 +984,7 @@ export default {
InvRelBusType,
invSpaceManage,
Treeselect,
invRelCustomers
},
created() {
this.getList();

Loading…
Cancel
Save