Browse Source

room

master
pengjun 1 year ago
parent
commit
097dc01ad0
  1. 2
      src/components/patientRegister/PatientRegisterList.vue
  2. 1013
      src/components/room/RoomAsbitem.vue
  3. 400
      src/components/room/RoomEdit.vue
  4. 630
      src/components/room/room.vue
  5. 6
      src/router/index.js
  6. 13
      src/store/index.js

2
src/components/patientRegister/PatientRegisterList.vue

@ -1398,7 +1398,7 @@ export default {
reject(err);
});
} else {
this.$peisAPI.print('this.$peisAPI.print', JSON.stringify(toOutShell))
this.$peisAPI.print(JSON.stringify(toOutShell))
.then(res => {
console.log('this.$peisAPI.print', res)
let lres = JSON.parse(res)

1013
src/components/room/RoomAsbitem.vue
File diff suppressed because it is too large
View File

400
src/components/room/RoomEdit.vue

@ -0,0 +1,400 @@
<template>
<div>
<el-form :model="form" label-width="80px" :rules="rules" ref="form">
<el-row>
<el-col :span="8">
<el-form-item prop="displayName" label="分组名称">
<el-input v-model="form.displayName" size="small" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="金额">
<el-input v-model="form.price" type="number" size="small" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="适用性别">
<el-select v-model="form.forSexId" placeholder="请选择" size="small">
<el-option v-for="item in dict.forSex" :key="item.id" :label="item.displayName" :value="item.id">
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<el-form-item label="婚姻状况">
<el-select v-model="form.maritalStatusId" placeholder="请选择" style="width: 100%" size="small">
<el-option v-for="item in dict.forMaritalStatus" :key="item.id" :label="item.displayName" :value="item.id">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="年龄下限">
<el-input v-model="form.ageLowerLimit" type="number" min="1" max="200" size="small" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="年龄上限">
<el-input v-model="form.ageUpperLimit" type="number" min="1" max="200" size="small" />
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<el-form-item label="适用职务">
<el-input v-model="form.jobPost" size="small" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="适用职称">
<el-input v-model="form.jobTitle" size="small" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="可自选金额">
<el-input type="number" v-model="form.canAddMoney" size="small" />
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="备注">
<el-input v-model="form.remark" size="small" />
</el-form-item>
</el-col>
</el-row>
</el-form>
<div style="display: flex;margin-top: 5px;justify-content:space-between;">
<div></div>
<div style="display: flex;">
<el-button class="commonbutton" @click="dialogWin.CustomerOrgGroupEdit = false">关闭</el-button>
<!--
<el-button type="success" @click="computePrice">同比折算组合项目价格</el-button>
-->
<el-button class="commonbutton" type="primary" @click="onSubmit('form')">确定</el-button>
</div>
</div>
</div>
</template>
<script>
import moment from "moment";
import { getapi, postapi, putapi, deletapi } from "@/api/api";
import { mapState } from "vuex";
import {
dddw,
deepCopy,
objCopy,
arrayExistObj,
} from "../../utlis/proFunc";
import CustomerOrgGroupAsbitem from "../../components/customerOrg/customerOrgGroupAsbitem.vue";
export default {
components: {
CustomerOrgGroupAsbitem,
},
props: ["params"],
data() {
return {
form: {
//
customerOrgId: "", //()
isComplete: "N", //
id: "",
customerOrgRegisterId: null, //
displayName: "",
price: 0,
forSexId: "A",
maritalStatusId: "A",
ageLowerLimit: 0,
ageUpperLimit: 200,
canAddMoney:0,
jobPost: "",
jobTitle: "",
remark: "",
isMaxMedicalTimes: "N",
},
formOri: {}, //
formInit: {}, //
rules: {
displayName: [{ required: true, message: "请填写分组名称", trigger: "blur" }],
},
};
},
computed: {
...mapState(["dict", "dialogWin", "dataTransOpts"]),
},
created() {
this.formInit = deepCopy(this.form);
this.form.customerOrgId = this.params.customerOrgId
this.form.customerOrgRegisterId = this.params.customerOrgRegisterId
},
mounted() {
//
this.dictInit();
this.getFormData(this.dataTransOpts.tableS.customer_org_group.id);
},
methods: {
moment, dddw, deepCopy,
//
dictInit() {
//
getapi("/api/app/customer-org/parent-all").then((res) => {
if (res.code != -1) {
this.customerOrgAll = res.data;
let lfind = arrayExistObj(this.customerOrgAll, "id", this.dict.personOrgId);
if (lfind > -1) this.customerOrgAll.splice(lfind, 1);
this.customerOrg = deepCopy(this.customerOrgAll);
}
});
//
getapi("/api/app/for-sex").then((res) => {
if (res.code != -1) {
this.dict.forSex = res.data;
}
});
},
//
getFormData(id) {
if (id) {
getapi(`/api/app/customer-org-group/${id}`)
.then(res => {
if (res.code != -1) {
this.formOri = deepCopy(res.data)
this.form = deepCopy(res.data)
}
})
} else {
console.log('this.formInit',this.formInit)
this.form = deepCopy(this.formInit)
this.form.customerOrgId = this.params.customerOrgId
this.form.customerOrgRegisterId = this.params.customerOrgRegisterId
}
},
onSubmit(formName) {
this.$refs[formName].validate((valid, fields) => {
if (!valid) {
this.$message.warning(fields[Object.keys(fields)[0]][0].message);
return false;
}
if (!this.form.id && !this.form.customerOrgRegisterId) {
this.$message.warning("请选择单位体检次数!");
return false;
}
let body = deepCopy(this.form);
delete body.id;
delete body.customerOrgId;
delete body.isComplete;
if (this.form.id) {
let customerOrgGroupId = this.form.id;
let customerOrgGroupAsbitems = []; //
//
/*
putapi(`/api/app/customer-org-group/${this.form.id}`, body)
.then((res) => {
// console.log(res)
if (res.code != -1) {
console.log("保存分组成功!");
//
if (this.formOri.price != this.form.price) {
return getapi(`/api/app/customerorggroupdetail/getcustomerorggroupdetailinasbitem?CustomerOrgGroupId=${customerOrgGroupId}`);
} else {
this.dialogWin.CustomerOrgGroupEdit = false;
}
}
})
.then((res) => {
if (res && res.code != -1) {
customerOrgGroupAsbitems = res.data;
if (customerOrgGroupAsbitems.length < 1) {
console.log("该分组暂没有组合项目!");
this.dialogWin.CustomerOrgGroupEdit = false;
} else {
let detailsBody = {
customerOrgGroupId,
details: this.madeNewGroupAsbitems(customerOrgGroupAsbitems, this.form.price),
};
return postapi("/api/app/customerorggroupdetail/createcustomerorggroupdetailmany", detailsBody);
}
}
})
.then((res) => {
if (res && res.code != -1) {
console.log("操作成功!并自动按总价同比折算组合项目价格!");
this.dialogWin.CustomerOrgGroupEdit = false;
//
let id = this.form.id;
this.form.id = "";
setTimeout(() => {
this.form.id = id;
}, 100);
}
});
*/
//
putapi(`/api/app/customer-org-group/${this.form.id}`, body)
.then((res) => {
// console.log(res)
if (res.code != -1) {
console.log("保存分组成功!");
this.dataTransOpts.refresh.customer_org_group_detail.M
}
})
} else {
//
postapi("/api/customerorggroup/createcustomerorggroupincustomerorgregister", body)
.then(res => {
if (res.code != -1) {
console.log("操作成功!");
this.dataTransOpts.tableS.customer_org_group.id = res.data.id
this.dialogWin.CustomerOrgGroupEdit = false;
}
});
}
});
},
//
computePrice() {
if (!this.form.id) {
this.$message.warning("尚未保存信息,不可执行此操作!");
return;
}
let customerOrgGroupId = this.form.id;
let customerOrgGroupAsbitems = []; //
getapi(`/api/app/customerorggroupdetail/getcustomerorggroupdetailinasbitem?CustomerOrgGroupId=${customerOrgGroupId}`)
.then((res) => {
if (res.code != -1) {
customerOrgGroupAsbitems = res.data;
if (customerOrgGroupAsbitems.length < 1) {
this.$message.warning("当前分组尚未设置组合项目,不可执行此操作!");
} else {
let body = {
customerOrgGroupId,
details: this.madeNewGroupAsbitems(
customerOrgGroupAsbitems,
this.form.price
),
};
console.log("body", body);
return postapi("/api/app/customerorggroupdetail/createcustomerorggroupdetailmany", body);
}
}
})
.then((res) => {
if (res.code != -1) {
//console.log("");
//
this.form.id = "";
//
setTimeout(() => {
this.form.id = customerOrgGroupId;
this.onSubmit("form");
}, 100);
}
});
},
madeNewGroupAsbitems(oldGroupAsbitems, newTotal) {
newTotal = Math.round(Number(newTotal) * 100) / 100;
let newGroupAsbitems = [];
let oldTotal = Number(0);
oldGroupAsbitems.forEach((e) => {
oldTotal += Number(e.asbitemMoney); //customerOrgGroupDetailMoney
});
oldTotal = Math.round(Number(oldTotal) * 100) / 100;
let discount = 0;
if (oldTotal != 0) discount = Math.round((newTotal * 10000) / oldTotal) / 100;
oldTotal = Number(0);
oldGroupAsbitems.forEach((e) => {
e.customerOrgGroupDetailPrice = Math.round(e.price * discount) / 100;
e.customerOrgGroupDetailMoney =
Math.round(
e.customerOrgGroupDetailPrice * e.customerOrgGroupDetailAmount * 100
) / 100;
oldTotal += Number(e.customerOrgGroupDetailMoney);
});
oldTotal = Math.round(Number(oldTotal) * 100) / 100;
//console.log('discount,oldTotal',discount,oldTotal)
let didTotal = Math.round(Number(newTotal - oldTotal) * 100) / 100;
if (didTotal != 0) {
for (let i = 0; i < oldGroupAsbitems.length; i++) {
if (oldGroupAsbitems[i].customerOrgGroupDetailAmount == 1) {
oldGroupAsbitems[i].customerOrgGroupDetailPrice =
Math.round(
(Number(oldGroupAsbitems[i].customerOrgGroupDetailPrice) +
Number(didTotal)) *
100
) / 100;
break;
}
}
}
oldGroupAsbitems.forEach((e) => {
newGroupAsbitems.push({
customerOrgGroupId: e.customerOrgGroupId,
asbitemId: e.asbitemId,
price: e.customerOrgGroupDetailPrice,
amount: e.customerOrgGroupDetailAmount,
});
});
return newGroupAsbitems;
},
},
//
watch: {
//
// "customerOrgGroup.id"(newVal, oldVal) {
// console.log("customerOrgGroup.id ",newVal,oldVal);
// if (newVal != oldVal) {
// this.getCustomerOrgGroupAsbitems(newVal);
// }
// },
// ID
"dataTransOpts.refresh.customer_org_group.S": {
// immediate: true,
handler(newVal, oldVal) {
console.log(`watch 体检分组 newVal:${newVal} oldVal:${oldVal} customerOrgGroupId: ${this.dataTransOpts.tableS.customer_org_group.id}`);
this.getFormData(this.dataTransOpts.tableS.customer_org_group.id);
}
},
},
};
</script>
<style scoped>
@import "../../assets/css/global_button.css";
@import "../../assets/css/global_dialog.css";
@import "../../assets/css/global_table.css";
@import "../../assets/css/global_form.css";
@import "../../assets/css/global_input.css";
@import "../../assets/css/global.css";
.btnClass {
width: 100px;
margin-bottom: 5px;
}
</style>

630
src/components/room/room.vue

@ -0,0 +1,630 @@
<template>
<div>
<div>
<div class="contenttitle">
基础资料 /<span class="contenttitleBold">分诊叫号房间设置</span>
</div>
<!--分组信息-->
<div style="display: flex; font-size: 14px">
<div :style="'display: block;width:' + (window.pageWidth - window.pageMarginWidth - 110 - 5) + 'px;'">
<div style="display: flex">
<div>
<span>体检中心</span>
<el-select v-model="customerOrgId" placeholder="请选择体检中心" :filter-method="filterMethod" default-first-option
clearable filterable style="margin-left: 10px" @change="changeMedicalCenter" size="small">
<el-option v-for="item in dict.medicalCenter" :key="item.id" :label="item.displayName" :value="item.id">
{{ item.displayName }}
</el-option>
</el-select>
</div>
</div>
<div>
<el-table :data="customerOrgGroups" ref="customerOrgGroups" style="margin-top: 2px" row-key="id" border
height="240px" size="small" highlight-current-row :row-class-name="handleRowClassName"
@row-click="rowClick">
<el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column label="id" prop="id" min-width="200" align="center" />
<el-table-column prop="displayName" label="名称" min-width="150" />
<el-table-column prop="itemTypeId" label="项目类别" min-width="100">
<template slot-scope="scope">
{{ dddw(dict.itemTypeTree, "id", scope.row.itemTypeId, "displayName") }}
</template>
</el-table-column>
<el-table-column prop="forSexId" label="适用性别" min-width="80" align="center">
<template slot-scope="scope">
{{ dddw(dict.forSex, "id", scope.row.forSexId, "displayName") }}
</template>
</el-table-column>
<el-table-column prop="roomTypeFlag" label="房间类别" min-width="80" align="center">
<template slot-scope="scope">
{{ dddw(dict.roomType, "id", scope.row.roomTypeFlag, "displayName") }}
</template>
</el-table-column>
<el-table-column prop="queueTime" label="候诊时间" min-width="80" align="center"/>
<el-table-column prop="isActive" label="是否启用" min-width="80" align="center">
<template slot-scope="scope">
{{ isActive == 'Y' ? '':'' }}
</template>
</el-table-column>
<el-table-column prop="creatorName" label="创建者" min-width="60" align="center" />
<el-table-column label="创建时间" min-width="150" align="center">
<template slot-scope="scope">
{{ scope.row.creationTime ? moment(scope.row.creationTime).format("yyyy-MM-DD HH:mm:ss") : "" }}
</template>
</el-table-column>
number($double)
string
<el-table-column label="操作" align="center">
<template>
<el-tag class="move" style="
cursor: move;
background-color: rgb(245, 245, 245);
border: none;
" draggable="true">
<i class="el-icon-d-caret" style="width: 1rem; height: 1rem; color: rgb(113, 113, 113)"></i>
</el-tag>
</template>
</el-table-column>
</el-table>
</div>
</div>
<!--按钮-->
<div style="display: block; margin-left: 5px">
<div v-show="checkPagePriv(pagePriv.privs, '复制上次分组')" style="margin-top: 0px">
<el-button class="commonbutton" @click="btnCopyPreGroup">复制上次分组</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '新增')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnAdd('')">新增</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '编辑')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnEdit">编辑</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '删除')" style="margin-top: 5px">
<el-button class="deleteButton" @click="btnDel">删除</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '置顶')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnSetTop">置顶</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '置底')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnSetBottom">置底</el-button>
</div>
<div v-show="checkPagePriv(pagePriv.privs, '保存排序')" style="margin-top: 5px">
<el-button class="commonbutton" @click="btnSort" :disabled="!isDrag">保存排序</el-button>
</div>
</div>
</div>
<!--分组项目信息 -->
<div>
<RoomAsbitem :customerOrgGroup="curCustomerOrgGroup" :refreshMoney="refreshMoney" />
</div>
</div>
<!-- 新增或者编辑弹框 -->
<el-dialog :title="dataTransOpts.tableS.customer_org_group.id ? '编辑' : '新增'" :close-on-click-modal="false"
:visible.sync="dialogWin.RoomEdit" width="800px" @close="close_dialogWinRoomEdit">
<RoomEdit :params="RoomEditParams" />
</el-dialog>
<!-- -->
</div>
</template>
<script>
import moment from "moment";
import Sortable from "sortablejs";
import { getapi, postapi, putapi, deletapi } from "@/api/api";
import { mapState } from "vuex";
import {
getPagePriv,
checkPagePriv,
dddw,
deepCopy,
objCopy,
arrayExistObj,
} from "../../utlis/proFunc";
import RoomAsbitem from "./RoomAsbitem.vue";
import RoomEdit from "./RoomEdit.vue";
export default {
components: {
RoomAsbitem, RoomEdit
},
data() {
return {
pagePriv: {
routeUrlorPageName: "customerOrgGroup", //
privs: [], //
},
customerOrg: [], //
customerOrgGroups: [], //
customerOrgId: "", //id
customerOrgRegisterList: [], //
customerOrgRegister: {}, //
curCustomerOrgGroup: {}, //
RoomEditParams: {}, //
isDrag: false,
form: {
//
customerOrgId: "", //()
isComplete: "N", //
id: "",
customerOrgRegisterId: null, //
displayName: "",
price: 0,
forSexId: "A",
maritalStatusId: "A",
ageLowerLimit: 0,
ageUpperLimit: 200,
jobPost: "",
jobTitle: "",
remark: "",
isMaxMedicalTimes: "N",
},
formOri: {}, //
formInit: {}, //
rules: {
displayName: [{ required: true, message: "请填写分组名称", trigger: "blur" }],
},
};
},
computed: {
...mapState(["personnelUnit", "window", "dict", "dialogWin", "dataTransOpts"]),
},
created() {
//
let userPriv = window.sessionStorage.getItem("userPriv");
if (userPriv)
this.pagePriv.privs = deepCopy(getPagePriv(this.pagePriv.routeUrlorPageName));
// ID
this.dataTransOpts.tableS.customer_org_group.id = ''
this.rowDrop();
this.formInit = deepCopy(this.form);
},
mounted() {
//
this.dictInit();
},
methods: {
moment,
checkPagePriv,
dddw,
deepCopy,
//
btnCopyPreGroup() {
if (!this.customerOrgRegister.id) {
this.$message.warning("请选择体检次数");
return;
}
postapi('/api/app/CustomerOrgGroup/CopyLastGrouping', { customerOrgRegisterId: this.customerOrgRegister.id })
.then(res => {
if (res.code > -1) {
//
this.getCustomerOrgGroup(this.customerOrgRegister.id);
}
})
},
//
refreshMoney(formData) {
//console.log('this is parent')
let lfind = arrayExistObj(this.customerOrgGroups, "id", formData.id);
if (lfind > -1) this.customerOrgGroups[lfind].price = formData.price;
},
//
btnSort() {
const result = [];
this.customerOrgGroups.forEach((item, index) => {
result.push({ id: item.id, displayOrder: index });
});
putapi("/api/app/customerorggroup/updatesortmany", {
itemList: result,
}).then((res) => {
console.log("操作成功");
this.isDrag = false;
});
},
//Sortable
rowDrop() {
// this.$nextTick(() => {
// const tbody = document.querySelector(".el-table__body-wrapper tbody");
// const _this = this;
// Sortable.create(tbody, {
// handle: ".move",
// animation: 300,
// onEnd({ newIndex, oldIndex }) {
// _this.isDrag = false;
// const currRow = _this.customerOrgGroups.splice(oldIndex, 1)[0];
// _this.customerOrgGroups.splice(newIndex, 0, currRow);
// _this.customerOrgGroups.map((item, index) => {
// if (index == newIndex && index == oldIndex) {
// } else if (index == oldIndex) {
// } else if (index == newIndex) {
// }
// });
// console.log(_this.customerOrgGroups.map((item) => item.displayOrder));
// },
// });
// });
this.$nextTick(() => {
const el = document.querySelector(".el-table__body-wrapper tbody");
//console.log('el0',el)
const that = this;
Sortable.create(el, {
handle: ".move",
animation: 300,
//
onEnd({ newIndex, oldIndex }) {
that.isDrag = true;
const currRow = that.customerOrgGroups.splice(oldIndex, 1)[0];
that.customerOrgGroups.splice(newIndex, 0, currRow);
console.log("el", el);
},
});
});
},
//
btnSetBottom() {
if (!this.dataTransOpts.tableS.customer_org_group.id) {
this.$message.warning("请选择操作的数据");
return;
}
let lfind = arrayExistObj(this.customerOrgGroups, "id", this.dataTransOpts.tableS.customer_org_group.id);
let currentRow = {};
putapi(
`/api/app/customerorggroup/updatemanysort?id=${this.dataTransOpts.tableS.customer_org_group.id}&SortType=2`
).then((res) => {
console.log("操作成功");
currentRow = this.customerOrgGroups.splice(lfind, 1)[0]; //
this.customerOrgGroups.push(currentRow);
this.$refs["customerOrgGroups"].setCurrentRow(currentRow);
});
},
//
btnSetTop() {
if (!this.dataTransOpts.tableS.customer_org_group.id) {
this.$message.warning("请选择操作的数据");
return;
}
let lfind = arrayExistObj(this.customerOrgGroups, "id", this.dataTransOpts.tableS.customer_org_group.id);
let currentRow = {};
putapi(
`/api/app/customerorggroup/updatemanysort?id=${this.dataTransOpts.tableS.customer_org_group.id}&SortType=1`
).then((res) => {
console.log("操作成功");
currentRow = this.customerOrgGroups.splice(lfind, 1)[0];
this.customerOrgGroups.unshift(currentRow);
this.$refs["customerOrgGroups"].setCurrentRow(currentRow);
});
},
//
handleRowClassName({ row, rowIndex }) {
// highLightBg 'selected'
//console.log(rowIndex, row)
//return row.highLightBg == 'selected' ? 'high-light-bg' : '';
if (row.choosed) {
return "current-row";
} else {
return "";
}
},
//
dictInit() {
//
getapi("/api/app/organization-units/by-code-all").then((res) => {
if (res.code > -1) {
this.dict.medicalCenter = res.data;
}
});
//
getapi("/api/app/item-type/by-code-all").then((res) => {
if (res.code != -1) {
this.dict.itemTypeTree = res.data;
tcdate(this.dict.itemTypeTree);
}
});
//
getapi("/api/app/for-sex").then((res) => {
if (res.code != -1) {
this.dict.forSex = res.data;
}
});
},
//
getCustomerOrgGroup(customerOrgRegisterId) {
this.isDrag = false;
objCopy(this.formInit, this.form);
this.form.customerOrgRegisterId = customerOrgRegisterId;
this.customerOrgGroups = [];
getapi(
`/api/app/customerorggroup/getlistinfilter?CustomerOrgRegisterId=${customerOrgRegisterId}`
).then((res) => {
if (res.code != -1) {
this.customerOrgGroups = res.data;
this.customerOrgGroups.forEach((e) => {
e.customerOrgRegisterId = customerOrgRegisterId;
});
}
});
},
filterMethod(keyWords) {
if (keyWords) {
this.customerOrg = [];
this.customerOrgAll.forEach((item) => {
if (
item.displayName.toLowerCase().indexOf(keyWords.toLowerCase()) > -1 ||
item.simpleCode.toLowerCase().indexOf(keyWords.toLowerCase()) > -1
// || item.shortName.toLowerCase().indexOf(keyWords.toLowerCase()) > - 1
) {
this.customerOrg.push(item);
}
});
} else {
this.customerOrg = deepCopy(this.customerOrgAll);
}
},
//
changeMedicalCenter(v) {
console.log('changeMedicalCenter',v)
},
//
changeTimes(v) {
this.getCustomerOrgGroup(v.id);
},
//
rowClick(row) {
this.dataTransOpts.tableS.customer_org_group.id = row.id
this.curCustomerOrgGroup = deepCopy(row);
this.curCustomerOrgGroup.isComplete = this.customerOrgRegister.isComplete;
setTimeout(() => {
this.dataTransOpts.refresh.customer_org_group_detail.M++;
}, 20);
},
// (id)
btnAdd(id) {
if (!this.customerOrgRegister.id) {
this.$message.warning("请选择体检次数");
return;
}
if (this.customerOrgRegister.isComplete.toUpperCase() == "Y") {
this.$message.warning(`该单位的该次体检次数已完成,不能再${id ? '编辑' : '新增'}分组!`);
return;
}
if (!id) this.dataTransOpts.tableS.customer_org_group.id = ''
setTimeout(() => {
this.dataTransOpts.refresh.customer_org_group.S++
if (!id) this.dataTransOpts.refresh.customer_org_group_detail.M++; //
}, 20);
this.RoomEditParams = {
customerOrgRegisterId: this.customerOrgRegister.id,
customerOrgId: this.customerOrgId
}
this.dialogWin.RoomEdit = true;
},
//
btnEdit() {
if (!this.dataTransOpts.tableS.customer_org_group.id) {
this.$message.warning("请先选择体检分组");
return;
}
this.btnAdd(this.dataTransOpts.tableS.customer_org_group.id)
},
//
btnDel() {
if (!this.dataTransOpts.tableS.customer_org_group.id) {
this.$message.warning("请选择需要操作的数据");
return;
}
if (this.customerOrgRegister.isComplete.toUpperCase() == "Y") {
this.$message.warning("该单位体检次数已完成,不允许删除分组");
return;
}
this.$confirm("此操作将永久删除该记录, 是否继续?", "提示", {
confirmButtonText: "是",
cancelButtonText: " 否 ",
type: "warning",
})
.then(() => {
return deletapi(`/api/app/customer-org-group/${this.dataTransOpts.tableS.customer_org_group.id}`);
})
.then((res) => {
if (res.code != -1) {
console.log("删除成功");
let lfind = arrayExistObj(this.customerOrgGroups, "id", this.dataTransOpts.tableS.customer_org_group.id);
if (lfind > -1) this.customerOrgGroups.splice(lfind, 1);
this.dataTransOpts.tableS.customer_org_group.id = ''
setTimeout(() => {
this.dataTransOpts.refresh.customer_org_group_detail.M++
}, 20);
}
})
.catch((err) => {
if (err == "cancel") {
console.log("已取消删除");
// this.$message.info("");
}
});
},
//
computePrice() {
if (!this.form.id) {
this.$message.warning("尚未保存信息,不可执行此操作!");
return;
}
let customerOrgGroupId = this.form.id;
let RoomAsbitems = []; //
getapi(`/api/app/customerorggroupdetail/getcustomerorggroupdetailinasbitem?CustomerOrgGroupId=${customerOrgGroupId}
`)
.then((res) => {
if (res.code != -1) {
RoomAsbitems = res.data;
if (RoomAsbitems.length < 1) {
this.$message.warning("当前分组尚未设置组合项目,不可执行此操作!");
} else {
let body = {
customerOrgGroupId,
details: this.madeNewGroupAsbitems(
RoomAsbitems,
this.form.price
),
};
console.log("body", body);
return postapi(
"/api/app/customerorggroupdetail/createcustomerorggroupdetailmany",
body
);
}
}
})
.then((res) => {
if (res.code != -1) {
//console.log("");
//
this.form.id = "";
//
setTimeout(() => {
this.form.id = customerOrgGroupId;
this.onSubmit("form");
}, 100);
}
});
},
madeNewGroupAsbitems(oldGroupAsbitems, newTotal) {
newTotal = Math.round(Number(newTotal) * 100) / 100;
let newGroupAsbitems = [];
let oldTotal = Number(0);
oldGroupAsbitems.forEach((e) => {
oldTotal += Number(e.asbitemMoney); //customerOrgGroupDetailMoney
});
oldTotal = Math.round(Number(oldTotal) * 100) / 100;
let discount = 0;
if (oldTotal != 0) discount = Math.round((newTotal * 10000) / oldTotal) / 100;
oldTotal = Number(0);
oldGroupAsbitems.forEach((e) => {
e.customerOrgGroupDetailPrice = Math.round(e.price * discount) / 100;
e.customerOrgGroupDetailMoney =
Math.round(
e.customerOrgGroupDetailPrice * e.customerOrgGroupDetailAmount * 100
) / 100;
oldTotal += Number(e.customerOrgGroupDetailMoney);
});
oldTotal = Math.round(Number(oldTotal) * 100) / 100;
//console.log('discount,oldTotal',discount,oldTotal)
let didTotal = Math.round(Number(newTotal - oldTotal) * 100) / 100;
if (didTotal != 0) {
for (let i = 0; i < oldGroupAsbitems.length; i++) {
if (oldGroupAsbitems[i].customerOrgGroupDetailAmount == 1) {
oldGroupAsbitems[i].customerOrgGroupDetailPrice =
Math.round(
(Number(oldGroupAsbitems[i].customerOrgGroupDetailPrice) +
Number(didTotal)) *
100
) / 100;
break;
}
}
}
oldGroupAsbitems.forEach((e) => {
newGroupAsbitems.push({
customerOrgGroupId: e.customerOrgGroupId,
asbitemId: e.asbitemId,
price: e.customerOrgGroupDetailPrice,
amount: e.customerOrgGroupDetailAmount,
});
});
return newGroupAsbitems;
},
// /
close_dialogWinRoomEdit() {
let id = this.dataTransOpts.tableS.customer_org_group.id
if (id) {
//
getapi(`/api/app/customer-org-group/${id}`)
.then(res => {
if (res.code != -1) {
let lfind = -1
lfind = arrayExistObj(this.customerOrgGroups, 'id', id)
if (lfind > -1) {
objCopy(res.data, this.customerOrgGroups[lfind])
} else {
lfind = this.customerOrgGroups.length
this.customerOrgGroups.push(res.data)
}
//
this.$refs["customerOrgGroups"].setCurrentRow(); //
this.$refs["customerOrgGroups"].setCurrentRow(this.customerOrgGroups[lfind]);
// customer_org_group_detail
this.curCustomerOrgGroup = deepCopy(res.data);
this.curCustomerOrgGroup.isComplete = this.customerOrgRegister.isComplete;
}
})
} else {
//
this.dataTransOpts.tableS.customer_org_group.id = this.curCustomerOrgGroup.id || ''
}
this.dataTransOpts.refresh.customer_org_group_detail.M++;
},
},
};
</script>
<style scoped>
@import "../../assets/css/global_button.css";
@import "../../assets/css/global_dialog.css";
@import "../../assets/css/global_table.css";
@import "../../assets/css/global_form.css";
@import "../../assets/css/global_input.css";
@import "../../assets/css/global.css";
.btnClass {
width: 100px;
margin-bottom: 5px;
}
</style>

6
src/router/index.js

@ -230,6 +230,12 @@ const routes = [{
component: () =>
import ("../views/basic-dictionary/SummaryItems.vue"),
},
{
path: "/room",
name: '分诊叫号房间设置',
component: () =>
import ("../components/room/room.vue"),
},
//---------------------- 收费设置 start ----------------------
{
path: "/invoice-item-type",

13
src/store/index.js

@ -298,6 +298,11 @@ export default new Vuex.Store({
asbItem: [], //显示的 未选组合项目
asbItemQuick: [], //显示的 未选组合项目(供快速选择)
diagnosisLevel: [], //诊断级别
medicalCenter: [], // 体检中心
roomType: [
{ id: "0", displayName: "普通" },
{ id: "1", displayName: "采血室" }
],
},
// 项目特有的对象数据 project private
@ -377,7 +382,7 @@ export default new Vuex.Store({
isPatientSymptomsUpdate: "N", // 症状
isOccSummary: 'N', // 修改总检结论
},
appoint_patient_register:{}, // 预约登记数据
appoint_patient_register: {}, // 预约登记数据
},
//表当前数据(多条记录 M--more)
@ -406,7 +411,7 @@ export default new Vuex.Store({
patient_symptom: [], // 病人症状
patient_past_medical_history: [], // 既往病史
patient_occupational_medical_history: [], // 职业病史
appoint_register_asbitem:[], // 预约所选组合项目
appoint_register_asbitem: [], // 预约所选组合项目
},
plus: {
PatientRegisterEditQuery: 0, // 更新查询条件
@ -416,7 +421,7 @@ export default new Vuex.Store({
PatientRegisterForChoose: 0, // 体检人员查询窗口
OccDisease: 0, // 职业病
WebBooking: 0, // 网上预约
ImportOrgData:0, // 导入企业(青藏公司)数据
ImportOrgData: 0, // 导入企业(青藏公司)数据
}
},
@ -437,7 +442,7 @@ export default new Vuex.Store({
OccDisease: false, // 职业病
Label: false, // 补打条码
WebBooking: false, // 网上预约
ImportOrgData:false, // 导入企业(青藏公司)数据
ImportOrgData: false, // 导入企业(青藏公司)数据
}
},

Loading…
Cancel
Save