解决合并冲突
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<template>
|
||||
<div busNo="app-container">
|
||||
<el-form
|
||||
style="margin-top:20px;margin-left:20px;"
|
||||
:model="queryParams"
|
||||
ref="queryRef"
|
||||
:inline="true"
|
||||
label-width="90px"
|
||||
style="margin-top: 20px; margin-left: 20px"
|
||||
:model="queryParams"
|
||||
ref="queryRef"
|
||||
:inline="true"
|
||||
label-width="90px"
|
||||
>
|
||||
<el-form-item label="收费时间:">
|
||||
<el-date-picker
|
||||
@@ -61,12 +61,7 @@
|
||||
/>
|
||||
</el-form-item> -->
|
||||
<el-form-item label="科室:" prop="departmentId">
|
||||
<el-select
|
||||
v-model="queryParams.departmentId"
|
||||
placeholder=""
|
||||
clearable
|
||||
style="width: 150px"
|
||||
>
|
||||
<el-select v-model="queryParams.departmentId" placeholder="" clearable style="width: 150px">
|
||||
<el-option
|
||||
v-for="supplyStatus in getDepartmentOptions"
|
||||
:key="supplyStatus.id"
|
||||
@@ -76,12 +71,7 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="开单人:" prop="issuerId">
|
||||
<el-select
|
||||
v-model="queryParams.issuerId"
|
||||
placeholder=""
|
||||
clearable
|
||||
style="width: 150px"
|
||||
>
|
||||
<el-select v-model="queryParams.issuerId" placeholder="" clearable style="width: 150px">
|
||||
<el-option
|
||||
v-for="supplyStatus in issuerOptions"
|
||||
:key="supplyStatus.id"
|
||||
@@ -91,12 +81,7 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="收费人:" prop="payeeId">
|
||||
<el-select
|
||||
v-model="queryParams.payeeId"
|
||||
placeholder=""
|
||||
clearable
|
||||
style="width: 150px"
|
||||
>
|
||||
<el-select v-model="queryParams.payeeId" placeholder="" clearable style="width: 150px">
|
||||
<el-option
|
||||
v-for="supplyStatus in payeeOptions"
|
||||
:key="supplyStatus.id"
|
||||
@@ -104,17 +89,12 @@
|
||||
:value="supplyStatus.id"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form-item>
|
||||
<!-- 字典item_type -->
|
||||
<el-form-item label="项目类型:" prop="clinicalType">
|
||||
<el-select
|
||||
v-model="queryParams.clinicalType"
|
||||
placeholder=""
|
||||
clearable
|
||||
style="width: 150px"
|
||||
>
|
||||
<el-select v-model="queryParams.clinicalType" placeholder="" clearable style="width: 150px">
|
||||
<el-option
|
||||
v-for="supplyStatus in clinicalTypeOptions"
|
||||
v-for="supplyStatus in clinicalTypeOptions"
|
||||
:key="supplyStatus.value"
|
||||
:label="supplyStatus.label"
|
||||
:value="supplyStatus.value"
|
||||
@@ -122,7 +102,11 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<!-- 医保号,门诊号,患者姓名,项目名,项目编码 -->
|
||||
<el-form-item label="医保号/门诊号/患者姓名/项目名/项目编码:" prop="searchKey" label-width="295">
|
||||
<el-form-item
|
||||
label="医保号/门诊号/患者姓名/项目名/项目编码:"
|
||||
prop="searchKey"
|
||||
label-width="295"
|
||||
>
|
||||
<el-input
|
||||
v-model="queryParams.searchKey"
|
||||
placeholder="输入医保号/门诊号/患者姓名/项目名称/项目编码后回车查询"
|
||||
@@ -133,50 +117,34 @@
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" busNo="mb8" style="margin-left:20px;margin-right:0px;margin-bottom:5px">
|
||||
<el-row
|
||||
:gutter="10"
|
||||
busNo="mb8"
|
||||
style="margin-left: 20px; margin-right: 0px; margin-bottom: 5px"
|
||||
>
|
||||
<el-col :span="1.5">
|
||||
<!-- v-hasPermi="['system:user:import']" -->
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="Search"
|
||||
@click="handleQuery"
|
||||
|
||||
>查询</el-button
|
||||
>
|
||||
<el-button type="primary" plain icon="Search" @click="handleQuery">查询</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<!-- v-hasPermi="['system:user:export']" -->
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="CircleClose"
|
||||
@click="handleClear"
|
||||
|
||||
>重置</el-button
|
||||
>
|
||||
<el-button type="warning" plain icon="CircleClose" @click="handleClear">重置</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-table
|
||||
style="padding:0 20px;width:100%;height:67vh"
|
||||
style="padding: 0 20px; width: 100%; height: 67vh"
|
||||
v-loading="loading"
|
||||
:data="purchaseinventoryList"
|
||||
@selection-change="handleSelectionChange"
|
||||
:span-method="arraySpanMethod"
|
||||
border
|
||||
fit
|
||||
:default-sort="{ prop: 'chargeTime', order: 'descending' }"
|
||||
@header-click="handleHeaderClick"
|
||||
show-summary
|
||||
:summary-method="getSummaries"
|
||||
>
|
||||
<!-- :span-method="arraySpanMethod" -->
|
||||
<!-- :summary-method="getSummaries"
|
||||
<!-- :span-method="arraySpanMethod" -->
|
||||
<!-- :summary-method="getSummaries"
|
||||
show-summary 每页单独合计-->
|
||||
<el-table-column type="selection" width="50px" align="center" resizable />
|
||||
<el-table-column
|
||||
label='门诊号'
|
||||
label="门诊号"
|
||||
align="center"
|
||||
key="busNo"
|
||||
min-width="150px"
|
||||
@@ -197,7 +165,6 @@
|
||||
align="center"
|
||||
key="departmentName"
|
||||
prop="departmentName"
|
||||
min-width="120px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
@@ -210,7 +177,7 @@
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
<el-table-column
|
||||
<el-table-column
|
||||
label="医保号"
|
||||
align="center"
|
||||
key="ybCode"
|
||||
@@ -219,13 +186,12 @@
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
|
||||
|
||||
<el-table-column
|
||||
label="药品项目"
|
||||
align="center"
|
||||
key="clinicalName"
|
||||
prop="clinicalName"
|
||||
min-width="180px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
@@ -243,27 +209,23 @@
|
||||
align="center"
|
||||
key="type_dictText"
|
||||
prop="type_dictText"
|
||||
min-width="100px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
|
||||
|
||||
<el-table-column
|
||||
label="开单人"
|
||||
align="center"
|
||||
key="issuerName"
|
||||
prop="issuerName"
|
||||
min-width="100px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
<el-table-column
|
||||
|
||||
<el-table-column
|
||||
label="收费人"
|
||||
align="center"
|
||||
key="payeeName"
|
||||
prop="payeeName"
|
||||
min-width="100px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
@@ -281,7 +243,6 @@
|
||||
align="center"
|
||||
key="number"
|
||||
prop="number"
|
||||
min-width="80px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
@@ -290,7 +251,6 @@
|
||||
align="center"
|
||||
key="price"
|
||||
prop="price"
|
||||
min-width="100px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
>
|
||||
@@ -303,25 +263,20 @@
|
||||
align="center"
|
||||
key="totalPrice"
|
||||
prop="totalPrice"
|
||||
min-width="100px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
/>
|
||||
<el-table-column
|
||||
label="医保等级"
|
||||
align="center"
|
||||
key="chrgitmLv_enumText"
|
||||
prop="chrgitmLv_enumText"
|
||||
min-width="100px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
/>
|
||||
/>
|
||||
<el-table-column
|
||||
label="收费时间"
|
||||
align="center"
|
||||
key="chargeTime"
|
||||
prop="chargeTime"
|
||||
min-width="160px"
|
||||
:show-overflow-tooltip="true"
|
||||
resizable
|
||||
>
|
||||
@@ -345,7 +300,9 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
margin-left:0px;margin-right:0px;padding:0 20px;
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
padding: 0 20px;
|
||||
"
|
||||
>
|
||||
<el-col :span="3">
|
||||
@@ -361,29 +318,28 @@ import {
|
||||
getAmbPractitionerDetail,
|
||||
// getMedicationDetailsInit,
|
||||
getDepartmentList,
|
||||
getReportChargeInit
|
||||
} from "./statisticalManagent";
|
||||
import useUserStore from "@/store/modules/user";
|
||||
import { watch } from "vue";
|
||||
import { parseTime } from '@/utils/his'; // 导入日期时间处理工具函数
|
||||
getReportChargeInit,
|
||||
} from './statisticalManagent';
|
||||
import useUserStore from '@/store/modules/user';
|
||||
import { watch } from 'vue';
|
||||
const userStore = useUserStore();
|
||||
|
||||
const router = useRouter();
|
||||
const { proxy } = getCurrentInstance();
|
||||
const totalAmount = ref(0);
|
||||
// const {
|
||||
// item_type,
|
||||
// item_category_code,
|
||||
// hosp_lv
|
||||
// } = proxy.useDict(
|
||||
// "item_type",
|
||||
// "item_category_code",
|
||||
// "hosp_lv"
|
||||
// );
|
||||
const purchaseinventoryListAll = ref([])
|
||||
const xiaojiTotal = ref([])
|
||||
const rowSpan = ref(1)
|
||||
const issuerOptions = ref([])
|
||||
const payeeOptions = ref([])
|
||||
const inventoryOptions = ref([])
|
||||
const purchaseinventoryListAll = ref([]);
|
||||
const xiaojiTotal = ref([]);
|
||||
const rowSpan = ref(1);
|
||||
const issuerOptions = ref([]);
|
||||
const payeeOptions = ref([]);
|
||||
const inventoryOptions = ref([]);
|
||||
const clinicalTypeOptions = ref([]);
|
||||
const purchaseinventoryList = ref([]);
|
||||
const loading = ref(true);
|
||||
@@ -392,7 +348,7 @@ const single = ref(true);
|
||||
const multiple = ref(true);
|
||||
const total = ref(0);
|
||||
const occurrenceTime = ref([]);
|
||||
const getDepartmentOptions = ref([])
|
||||
const getDepartmentOptions = ref([]);
|
||||
// const queryParams.value.statisticsType = ref(1)
|
||||
|
||||
const data = reactive({
|
||||
@@ -400,18 +356,18 @@ const data = reactive({
|
||||
queryParams: {
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
statisticsType: 1,
|
||||
searchKey:undefined,
|
||||
// ybCode: undefined,
|
||||
// busNo:undefined,
|
||||
statisticsType: 1,
|
||||
searchKey: undefined,
|
||||
// ybCode: undefined,
|
||||
// busNo:undefined,
|
||||
// name: undefined,
|
||||
departmentId:undefined,
|
||||
issuerId:undefined,
|
||||
payeeId: undefined,
|
||||
clinicalType:undefined,
|
||||
departmentId: undefined,
|
||||
issuerId: undefined,
|
||||
payeeId: undefined,
|
||||
clinicalType: undefined,
|
||||
// clinicalName:undefined,
|
||||
chargeTimeSTime:undefined,
|
||||
chargeTimeETime:undefined,
|
||||
chargeTimeSTime: undefined,
|
||||
chargeTimeETime: undefined,
|
||||
},
|
||||
rules: {},
|
||||
});
|
||||
@@ -420,8 +376,8 @@ const { queryParams, form, rules } = toRefs(data);
|
||||
watch(
|
||||
() => purchaseinventoryList.value,
|
||||
(newVlaue) => {
|
||||
if(newVlaue&&newVlaue.length>0){
|
||||
handleTotalAmount()
|
||||
if (newVlaue && newVlaue.length > 0) {
|
||||
handleTotalAmount();
|
||||
}
|
||||
},
|
||||
{ immediate: true }
|
||||
@@ -429,71 +385,96 @@ watch(
|
||||
watch(
|
||||
() => queryParams.value.statisticsType,
|
||||
(newVlaue) => {
|
||||
queryParams.value.statisticsType = newVlaue
|
||||
queryParams.value.statisticsType = newVlaue;
|
||||
},
|
||||
{ immediate: true }
|
||||
);
|
||||
/**计算合计金额 */
|
||||
function handleTotalAmount() {
|
||||
totalAmount.value = purchaseinventoryList.value.reduce(
|
||||
(accumulator, currentRow) => {
|
||||
return (accumulator + (Number(currentRow.totalPrice) || 0))
|
||||
},
|
||||
0
|
||||
);
|
||||
totalAmount.value = purchaseinventoryList.value.reduce((accumulator, currentRow) => {
|
||||
return accumulator + (Number(currentRow.totalPrice) || 0);
|
||||
}, 0);
|
||||
}
|
||||
function getTotals(row,i){
|
||||
let totalPriceSums = Number(purchaseinventoryList.value[i].totalPrice)
|
||||
// let totalReturnPriceSums = Number(purchaseinventoryList.value[i].refundPrice)
|
||||
for (let j=1; i-j>=0; j++) {
|
||||
if (purchaseinventoryList.value[i].busNo == purchaseinventoryList.value[i-j].busNo) {
|
||||
totalPriceSums += Number(purchaseinventoryList.value[i-j].totalPrice)
|
||||
// totalReturnPriceSums += Number(purchaseinventoryList.value[i-j].refundPrice)
|
||||
}
|
||||
}
|
||||
xiaojiTotal.value.push({inde:i+1,busNo:row.busNo,genderEnum_enumText:row.genderEnum_enumText,totalPrice:totalPriceSums.toFixed(2)||0.00})
|
||||
// var totalPrice2 = 0
|
||||
// var refundPrice2 = 0
|
||||
purchaseinventoryList.value.splice(i+1, 0, {busNo:row.busNo,genderEnum_enumText:row.genderEnum_enumText,departmentName:'小计',totalPrice:totalPriceSums.toFixed(2)||0.00})
|
||||
// purchaseinventoryList.value.map(k=>{
|
||||
// if(k.departmentName!='小计'){
|
||||
// totalPrice2 += Number(k.totalPrice)
|
||||
// refundPrice2 += Number(k.refundPrice)
|
||||
// }
|
||||
// })
|
||||
// totalPrice2 = totalPrice2?totalPrice2.toFixed(4):totalPrice2
|
||||
// refundPrice2 = refundPrice2?refundPrice2.toFixed(4):refundPrice2
|
||||
// purchaseinventoryList.value.push({departmentName:'合计',totalPrice:totalPrice2,refundPrice:refundPrice2})
|
||||
}
|
||||
// 行合并方法 - 简化实现,避免在合并过程中修改数组
|
||||
const arraySpanMethod = ({row, column, rowIndex, columnIndex}) => {
|
||||
// 跳过小计行和合计行的合并处理
|
||||
if (row.departmentName === '小计' || row.departmentName === '合计') {
|
||||
return { rowspan: 1, colspan: 1 };
|
||||
}
|
||||
|
||||
// 只合并门诊号列(索引1)
|
||||
if (columnIndex === 1) {
|
||||
// 查找当前门诊号的起始位置
|
||||
let startIndex = rowIndex;
|
||||
while (startIndex > 0) {
|
||||
const prevRow = purchaseinventoryList.value[startIndex - 1];
|
||||
// 如果前一行是小计行或者门诊号不同,当前行就是起始行
|
||||
if (prevRow.departmentName === '小计' || prevRow.busNo !== row.busNo) {
|
||||
break;
|
||||
}
|
||||
startIndex--;
|
||||
function getTotals(row, i) {
|
||||
let totalPriceSums = Number(purchaseinventoryList.value[i].totalPrice);
|
||||
// let totalReturnPriceSums = Number(purchaseinventoryList.value[i].refundPrice)
|
||||
for (let j = 1; i - j >= 0; j++) {
|
||||
if (purchaseinventoryList.value[i].busNo == purchaseinventoryList.value[i - j].busNo) {
|
||||
totalPriceSums += Number(purchaseinventoryList.value[i - j].totalPrice);
|
||||
// totalReturnPriceSums += Number(purchaseinventoryList.value[i-j].refundPrice)
|
||||
}
|
||||
|
||||
// 如果当前行是门诊号的起始行
|
||||
if (startIndex === rowIndex) {
|
||||
}
|
||||
xiaojiTotal.value.push({
|
||||
inde: i + 1,
|
||||
busNo: row.busNo,
|
||||
genderEnum_enumText: row.genderEnum_enumText,
|
||||
totalPrice: totalPriceSums.toFixed(4) || 0.0,
|
||||
});
|
||||
// var totalPrice2 = 0
|
||||
// var refundPrice2 = 0
|
||||
purchaseinventoryList.value.splice(i + 1, 0, {
|
||||
busNo: row.busNo,
|
||||
genderEnum_enumText: row.genderEnum_enumText,
|
||||
departmentName: '小计',
|
||||
totalPrice: totalPriceSums.toFixed(4) || 0.0,
|
||||
});
|
||||
// purchaseinventoryList.value.map(k=>{
|
||||
// if(k.departmentName!='小计'){
|
||||
// totalPrice2 += Number(k.totalPrice)
|
||||
// refundPrice2 += Number(k.refundPrice)
|
||||
// }
|
||||
// })
|
||||
// totalPrice2 = totalPrice2?totalPrice2.toFixed(4):totalPrice2
|
||||
// refundPrice2 = refundPrice2?refundPrice2.toFixed(4):refundPrice2
|
||||
// purchaseinventoryList.value.push({departmentName:'合计',totalPrice:totalPrice2,refundPrice:refundPrice2})
|
||||
}
|
||||
const arraySpanMethod = ({ row, column, rowIndex, columnIndex }) => {
|
||||
// 合并一样的列住院号 outpatientNumber属性&&(queryParams.value.statisticsType==1||queryParams.value.statisticsType==4||queryParams.value.statisticsType==6)
|
||||
if (columnIndex === 1 && purchaseinventoryList.value.length > 0) {
|
||||
if (
|
||||
rowIndex === 0 ||
|
||||
(rowIndex > 0 && row.busNo !== purchaseinventoryList.value[rowIndex - 1]?.busNo)
|
||||
) {
|
||||
let rowspan = 1;
|
||||
// 计算门诊号相同的连续行数
|
||||
for (let i = rowIndex + 1; i < purchaseinventoryList.value.length; i++) {
|
||||
const nextRow = purchaseinventoryList.value[i];
|
||||
// 如果下一行是小计行或者门诊号不同,停止计数
|
||||
if (nextRow.departmentName === '小计' || nextRow.busNo !== row.busNo) {
|
||||
break;
|
||||
let totalPriceSum = 0;
|
||||
// let totalReturnPriceSum = 0
|
||||
for (let i = rowIndex + 1; i < purchaseinventoryList.value.length + 1; i++) {
|
||||
if (purchaseinventoryList.value[i - 1].departmentName != '合计') {
|
||||
if (
|
||||
purchaseinventoryList.value[i] &&
|
||||
purchaseinventoryList.value[i].busNo === row.busNo
|
||||
) {
|
||||
rowspan++;
|
||||
totalPriceSum += Number(purchaseinventoryList.value[i].totalPrice);
|
||||
// totalReturnPriceSum += Number(purchaseinventoryList.value[i].refundPrice)
|
||||
if (i == purchaseinventoryList.value.length - 1) {
|
||||
let findIndexTotal = xiaojiTotal.value.findIndex((k) => k.busNo == row.busNo);
|
||||
if (findIndexTotal < 0) {
|
||||
getTotals(row, i);
|
||||
}
|
||||
} else {
|
||||
}
|
||||
} else {
|
||||
totalPriceSum += Number(row.totalPrice);
|
||||
// totalReturnPriceSum += Number(row.refundPrice)
|
||||
let findIndexTotal = xiaojiTotal.value.findIndex((k) => k.busNo == row.busNo);
|
||||
if (findIndexTotal < 0) {
|
||||
xiaojiTotal.value.push({
|
||||
inde: i,
|
||||
genderEnum_enumText: row.genderEnum_enumText,
|
||||
busNo: row.busNo,
|
||||
totalPrice: totalPriceSum,
|
||||
});
|
||||
purchaseinventoryList.value.splice(i, 0, {
|
||||
busNo: row.busNo,
|
||||
genderEnum_enumText: row.genderEnum_enumText,
|
||||
departmentName: '小计',
|
||||
totalPrice: totalPriceSum.toFixed(4) || 0.0,
|
||||
});
|
||||
// console.log(purchaseinventoryList.value,"12121")
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
rowspan++;
|
||||
}
|
||||
@@ -502,59 +483,74 @@ const arraySpanMethod = ({row, column, rowIndex, columnIndex}) => {
|
||||
// 非起始行不显示
|
||||
return { rowspan: 0, colspan: 0 };
|
||||
}
|
||||
// }else{ // 姓名列patientName
|
||||
// if (columnIndex ===2&&purchaseinventoryList.value.length>0) {
|
||||
// if (rowIndex === 0 || (rowIndex > 0 && row.name !== purchaseinventoryList.value[rowIndex - 1]?.name)) {
|
||||
// let rowspan = 1;
|
||||
// for (let i = rowIndex + 1; i < purchaseinventoryList.value.length; i++) {
|
||||
// if (purchaseinventoryList.value[i].name === row.name) {
|
||||
// rowspan++;
|
||||
// } else {
|
||||
// break;
|
||||
// }
|
||||
// }
|
||||
// return { rowspan:rowspan, colspan: 1 };
|
||||
// } else {
|
||||
// return { rowspan: 0, colspan: 0 };
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
||||
};
|
||||
const getSummaries = (param) => {
|
||||
const { columns, data } = param
|
||||
const sums = []
|
||||
const { columns, data } = param;
|
||||
const sums = [];
|
||||
columns.forEach((column, index) => {
|
||||
if (index === 0) {
|
||||
sums[index] = h('div', { style: { textDecoration: 'underline' } }, [
|
||||
'合计',
|
||||
])
|
||||
return
|
||||
sums[index] = h('div', { style: { textDecoration: 'underline' } }, ['合计']);
|
||||
return;
|
||||
}
|
||||
const values = data.map((item) => (item.departmentName!='小计'&&Number(item[column.property])))
|
||||
if (column.property=='totalPrice') {
|
||||
const values = data.map(
|
||||
(item) => item.departmentName != '小计' && Number(item[column.property])
|
||||
);
|
||||
if (column.property == 'totalPrice') {
|
||||
sums[index] = `${values.reduce((prev, curr) => {
|
||||
const value = Number(curr)
|
||||
if (!Number.isNaN(value)) {
|
||||
return (Number(prev) + Number(curr)).toFixed(2) || 0.00
|
||||
} else {
|
||||
return Number(prev)
|
||||
}
|
||||
}, 0.00)}`
|
||||
const value = Number(curr);
|
||||
if (!Number.isNaN(value)) {
|
||||
return (Number(prev) + Number(curr)).toFixed(4) || 0.0;
|
||||
} else {
|
||||
return Number(prev);
|
||||
}
|
||||
}, 0.0)}`;
|
||||
} else {
|
||||
sums[index] = ' '
|
||||
sums[index] = ' ';
|
||||
}
|
||||
})
|
||||
return sums
|
||||
}
|
||||
});
|
||||
return sums;
|
||||
};
|
||||
|
||||
function inventoryChange(val){
|
||||
queryParams.value.statisticsType = val
|
||||
xiaojiTotal.value = []
|
||||
purchaseinventoryList.value = []
|
||||
getList()
|
||||
function inventoryChange(val) {
|
||||
queryParams.value.statisticsType = val;
|
||||
xiaojiTotal.value = [];
|
||||
purchaseinventoryList.value = [];
|
||||
getList();
|
||||
}
|
||||
function getPharmacyCabinetLists() {
|
||||
getReportChargeInit().then((response)=>{
|
||||
inventoryOptions.value = response.data.statisticsTypeOptions
|
||||
queryParams.value.statisticsType = 1
|
||||
issuerOptions.value = response.data.issuerOptions
|
||||
payeeOptions.value = response.data.payeeOptions
|
||||
clinicalTypeOptions.value = response.data.clinicalTypeOptions
|
||||
})
|
||||
getReportChargeInit().then((response) => {
|
||||
inventoryOptions.value = response.data.statisticsTypeOptions;
|
||||
queryParams.value.statisticsType = 1;
|
||||
issuerOptions.value = response.data.issuerOptions;
|
||||
payeeOptions.value = response.data.payeeOptions;
|
||||
clinicalTypeOptions.value = response.data.clinicalTypeOptions;
|
||||
});
|
||||
getDepartmentList().then((response) => {
|
||||
getDepartmentOptions.value = response.data // 科室
|
||||
})
|
||||
|
||||
getDepartmentOptions.value = response.data; // 科室
|
||||
});
|
||||
}
|
||||
/** 查询调拨管理项目列表 */
|
||||
function getList(type) {
|
||||
if(type){
|
||||
xiaojiTotal.value = []
|
||||
purchaseinventoryList.value = []
|
||||
function getList(type) {
|
||||
if (type) {
|
||||
xiaojiTotal.value = [];
|
||||
purchaseinventoryList.value = [];
|
||||
}
|
||||
loading.value = true;
|
||||
// purchaseinventoryList.value = [
|
||||
@@ -570,7 +566,7 @@ function getList(type) {
|
||||
// {busNo:'M2505070009100307',name:"赵六",departmentName:'CF2505070009101368',birthDate:'2025-05-07 16:28',practitionerName:'张三',practitionerName:'王东收费',clinicalName:'布洛芬缓释胶囊',busNo:'yp3065',medicalName:'布洛芬缓释胶囊',ybNo:'XC10AXY097A0010',totalVolume:'0.3g*24',salePrice:'4.8',price:'4.8',totalPrice:'4.8',number:'1盒',totalPrice:'4.8',refundQuantity:'0.00盒',refundPrice:'0.00',lotNumber:'72240709',manufacturerText:'上海信谊天平药业有限公司',supplierName:'旧系统批量'},
|
||||
// {busNo:'M2505070009100307',name:"赵六",departmentName:'CF2505070009101369',birthDate:'2025-05-07 16:28',practitionerName:'张三',practitionerName:'王东收费',clinicalName:'布洛芬缓释胶囊',busNo:'yp3065',medicalName:'布洛芬缓释胶囊',ybNo:'XC10AXY097A0010',totalVolume:'0.3g*24',salePrice:'2.8',price:'2.8',totalPrice:'2.8',number:'1盒',totalPrice:'2.8',refundQuantity:'0.00盒',refundPrice:'0.00',lotNumber:'72240709',manufacturerText:'上海信谊天平药业有限公司',supplierName:'旧系统批量'},
|
||||
// ]
|
||||
var totalPrice2 = 0
|
||||
var totalPrice2 = 0;
|
||||
// var refundPrice2 = 0
|
||||
// var purchaseinventoryLists = []
|
||||
// var purchaseinventoryListsArray = []
|
||||
@@ -581,111 +577,139 @@ function getList(type) {
|
||||
// purchaseinventoryLists.map(p=>{
|
||||
// purchaseinventoryListsArray = [...purchaseinventoryListsArray, ...p.reportPageItemDto]
|
||||
// // purchaseinventoryList.value.concat(p.reportPageItemDto)
|
||||
// })
|
||||
// })
|
||||
// }
|
||||
// purchaseinventoryList.value = purchaseinventoryListsArray
|
||||
purchaseinventoryList.value = res.data.records||[]
|
||||
total.value = res.data.total
|
||||
purchaseinventoryList.value.map(k=>{
|
||||
k.totalPrice = k.totalPrice?k.totalPrice.toFixed(2):'0.00'
|
||||
// 优先使用price,其次使用salePrice
|
||||
k.price = k.price ? k.price.toFixed(2) : (k.salePrice ? k.salePrice.toFixed(2) : '0.00')
|
||||
// 如果没有chargeTime,尝试使用createTime作为替代
|
||||
if (!k.chargeTime && k.createTime) {
|
||||
k.chargeTime = k.createTime;
|
||||
}
|
||||
purchaseinventoryList.value = res.data.records || [];
|
||||
total.value = res.data.total;
|
||||
purchaseinventoryList.value.map((k) => {
|
||||
k.totalPrice = k.totalPrice ? k.totalPrice.toFixed(4) : '0.0000';
|
||||
k.price = k.price ? k.price.toFixed(4) : '0.0000';
|
||||
// k.refundPrice = k.refundPrice || '0.00'
|
||||
k.number = k.number ? (k.number + (k.quantityUnit_dictText || '')) : ('0.00' + (k.quantityUnit_dictText || ''))
|
||||
k.number = k.number
|
||||
? k.number + (k.quantityUnit_dictText ? k.quantityUnit_dictText : '')
|
||||
: '0.0000' + k.quantityUnit_dictText
|
||||
? k.quantityUnit_dictText
|
||||
: '';
|
||||
// k.refundQuantity = k.refundQuantity?(k.refundQuantity+k.refundUnitCode_dictText):('0.00'+ k.quantityUnit_dictText)
|
||||
if(total.value&&total.value<=queryParams.value.pageSize){
|
||||
totalPrice2 += Number(k.totalPrice)
|
||||
// refundPrice2 += Number(k.refundPrice)
|
||||
if (total.value && total.value <= queryParams.value.pageSize) {
|
||||
totalPrice2 += Number(k.totalPrice);
|
||||
// refundPrice2 += Number(k.refundPrice)
|
||||
}
|
||||
})
|
||||
if(total.value<=res.data.size){
|
||||
});
|
||||
if (total.value <= res.data.size) {
|
||||
loading.value = false;
|
||||
}
|
||||
// 1页数据时,不再手动添加合计行,使用表格的show-summary功能
|
||||
|
||||
// 1页数据
|
||||
if (total.value && total.value <= queryParams.value.pageSize) {
|
||||
totalPrice2 = totalPrice2 ? totalPrice2.toFixed(4) : totalPrice2;
|
||||
// refundPrice2 = refundPrice2?refundPrice2.toFixed(4):refundPrice2
|
||||
let pageNoAll = total.value / queryParams.value.pageSize;
|
||||
if (Math.ceil(pageNoAll) == queryParams.value.pageNo) {
|
||||
purchaseinventoryList.value.push({ departmentName: '合计', totalPrice: totalPrice2 });
|
||||
}
|
||||
}
|
||||
|
||||
// 带分页数据
|
||||
if(total.value&&total.value>queryParams.value.pageSize){
|
||||
if (total.value && total.value > queryParams.value.pageSize) {
|
||||
// var purchaseinventoryListsAll = []
|
||||
// var purchaseinventoryListsArrayAll = []
|
||||
let queryParamsValue = {...queryParams.value}
|
||||
queryParamsValue.pageSize = total.value
|
||||
queryParamsValue.pageNo = 1
|
||||
let queryParamsValue = { ...queryParams.value };
|
||||
queryParamsValue.pageSize = total.value;
|
||||
queryParamsValue.pageNo = 1;
|
||||
getReportChargePage(queryParamsValue).then((res) => {
|
||||
// purchaseinventoryListsAll = res.data.records||[]
|
||||
// if(purchaseinventoryListsAll.length>0){
|
||||
// purchaseinventoryListsAll.map(p=>{
|
||||
// purchaseinventoryListsArrayAll = [...purchaseinventoryListsArrayAll, ...p.reportPageItemDto]
|
||||
// // purchaseinventoryList.value.concat(p.reportPageItemDto)
|
||||
// })
|
||||
// })
|
||||
// }
|
||||
// purchaseinventoryListAll.value = purchaseinventoryListsArrayAll
|
||||
purchaseinventoryListAll.value = res.data.records||[]
|
||||
if(purchaseinventoryListAll.value.length>0){
|
||||
purchaseinventoryListAll.value.map((k,index)=>{
|
||||
k.totalPrice = k.totalPrice?k.totalPrice.toFixed(2):'0.00'
|
||||
// 优先使用price,其次使用salePrice
|
||||
k.price = k.price ? k.price.toFixed(2) : (k.salePrice ? k.salePrice.toFixed(2) : '0.00')
|
||||
// 如果没有chargeTime,尝试使用createTime作为替代
|
||||
if (!k.chargeTime && k.createTime) {
|
||||
k.chargeTime = k.createTime;
|
||||
}
|
||||
purchaseinventoryListAll.value = res.data.records || [];
|
||||
if (purchaseinventoryListAll.value.length > 0) {
|
||||
purchaseinventoryListAll.value.map((k, index) => {
|
||||
k.totalPrice = k.totalPrice ? k.totalPrice.toFixed(4) : '0.0000';
|
||||
k.price = k.price ? k.price.toFixed(4) : '0.0000';
|
||||
// k.refundPrice = k.refundPrice || '0.00'
|
||||
k.number = k.number ? (k.number + (k.quantityUnit_dictText || '')) : ('0.00' + (k.quantityUnit_dictText || ''))
|
||||
k.number = k.number
|
||||
? k.number + k.quantityUnit_dictText
|
||||
? k.quantityUnit_dictText
|
||||
: ''
|
||||
: '0.0000' + k.quantityUnit_dictText
|
||||
? k.quantityUnit_dictText
|
||||
: '';
|
||||
// k.refundQuantity = k.refundQuantity?(k.refundQuantity+k.refundUnitCode_dictText):('0.00'+ k.quantityUnit_dictText)
|
||||
totalPrice2 += Number(k.totalPrice)
|
||||
totalPrice2 += Number(k.totalPrice);
|
||||
// refundPrice2 += Number(k.refundPrice)
|
||||
//处理不同页门诊号相同小计在最后回显问题start
|
||||
// m<queryParams.value.pageSize&&
|
||||
for(let m = 1;m<index;m++){
|
||||
if (queryParams.value.pageNo>1&&index == (queryParams.value.pageSize*(queryParams.value.pageNo-1))&&
|
||||
for (let m = 1; m < index; m++) {
|
||||
if (
|
||||
queryParams.value.pageNo > 1 &&
|
||||
index == queryParams.value.pageSize * (queryParams.value.pageNo - 1) &&
|
||||
k.busNo == purchaseinventoryListAll.value[index - m]?.busNo
|
||||
) {
|
||||
// purchaseinventoryList.value.unshift(purchaseinventoryListAll.value[index-m]) // 加
|
||||
// //修改计算的小计缺少加过来的部分
|
||||
let dispenseNoIndex1 = purchaseinventoryList.value.findIndex(o=>o.departmentName=='小计'&&o.busNo==purchaseinventoryListAll.value[index-m].busNo)
|
||||
|
||||
if(dispenseNoIndex1>0){
|
||||
purchaseinventoryList.value[dispenseNoIndex1].totalPrice = Number(purchaseinventoryList.value[dispenseNoIndex1].totalPrice)+Number(purchaseinventoryListAll.value[index-m].totalPrice)
|
||||
purchaseinventoryList.value[dispenseNoIndex1].totalPrice = purchaseinventoryList.value[dispenseNoIndex1].totalPrice?purchaseinventoryList.value[dispenseNoIndex1].totalPrice.toFixed(2):'0.00'
|
||||
// purchaseinventoryList.value.unshift(purchaseinventoryListAll.value[index-m]) // 加
|
||||
// //修改计算的小计缺少加过来的部分
|
||||
let dispenseNoIndex1 = purchaseinventoryList.value.findIndex(
|
||||
(o) =>
|
||||
o.departmentName == '小计' &&
|
||||
o.busNo == purchaseinventoryListAll.value[index - m].busNo
|
||||
);
|
||||
|
||||
if (dispenseNoIndex1 > 0) {
|
||||
purchaseinventoryList.value[dispenseNoIndex1].totalPrice =
|
||||
Number(purchaseinventoryList.value[dispenseNoIndex1].totalPrice) +
|
||||
Number(purchaseinventoryListAll.value[index - m].totalPrice);
|
||||
purchaseinventoryList.value[dispenseNoIndex1].totalPrice = purchaseinventoryList
|
||||
.value[dispenseNoIndex1].totalPrice
|
||||
? purchaseinventoryList.value[dispenseNoIndex1].totalPrice.toFixed(4)
|
||||
: '0.0000';
|
||||
}
|
||||
}
|
||||
if ((index+m) == (queryParams.value.pageSize*queryParams.value.pageNo)&& k.busNo == purchaseinventoryListAll.value[index + m]?.busNo) {
|
||||
if(purchaseinventoryList.value[purchaseinventoryList.value.length-1].departmentName=='小计'){
|
||||
purchaseinventoryList.value.splice(purchaseinventoryList.value.length-1,1) // 减掉第二页还有相同门诊号的第一页的小计
|
||||
if (
|
||||
index + m == queryParams.value.pageSize * queryParams.value.pageNo &&
|
||||
k.busNo == purchaseinventoryListAll.value[index + m]?.busNo
|
||||
) {
|
||||
if (
|
||||
purchaseinventoryList.value[purchaseinventoryList.value.length - 1]
|
||||
.departmentName == '小计'
|
||||
) {
|
||||
purchaseinventoryList.value.splice(purchaseinventoryList.value.length - 1, 1); // 减掉第二页还有相同门诊号的第一页的小计
|
||||
}
|
||||
// let dispenseNoIndex = purchaseinventoryList.value.findIndex(o=>o.paymentId==k.paymentId&&o.chargeId==k.chargeId) //通过唯一主键进行区分
|
||||
// purchaseinventoryList.value.splice(dispenseNoIndex,1) // 减
|
||||
// if(purchaseinventoryList.value[dispenseNoIndex-1]&&purchaseinventoryList.value[dispenseNoIndex-1].departmentName=='小计'){
|
||||
// purchaseinventoryList.value.splice(dispenseNoIndex+1,1) // 减掉带小计的
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
// end
|
||||
})
|
||||
totalPrice2 = totalPrice2?totalPrice2.toFixed(4):totalPrice2
|
||||
});
|
||||
totalPrice2 = totalPrice2 ? totalPrice2.toFixed(4) : totalPrice2;
|
||||
// refundPrice2 = refundPrice2?refundPrice2.toFixed(4):refundPrice2
|
||||
loading.value = false;
|
||||
// 不再手动添加合计行,使用表格的show-summary功能
|
||||
let pageNoAll = total.value / queryParams.value.pageSize;
|
||||
if (Math.ceil(pageNoAll) == queryParams.value.pageNo) {
|
||||
purchaseinventoryList.value.push({ departmentName: '合计', totalPrice: totalPrice2 });
|
||||
}
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
function handleQuery() {
|
||||
queryParams.value.chargeTimeSTime =
|
||||
occurrenceTime.value && occurrenceTime.value.length == 2
|
||||
? occurrenceTime.value[0] + " 00:00:00"
|
||||
: "";
|
||||
? occurrenceTime.value[0] + ' 00:00:00'
|
||||
: '';
|
||||
queryParams.value.chargeTimeETime =
|
||||
occurrenceTime.value && occurrenceTime.value.length == 2
|
||||
? occurrenceTime.value[1] + " 23:59:59"
|
||||
: "";
|
||||
? occurrenceTime.value[1] + ' 23:59:59'
|
||||
: '';
|
||||
queryParams.value.pageNo = 1;
|
||||
getList(1);
|
||||
}
|
||||
@@ -693,10 +717,10 @@ function handleQuery() {
|
||||
/** 清空条件按钮操作 */
|
||||
function handleClear() {
|
||||
// 清空查询条件
|
||||
occurrenceTime.value = ""
|
||||
queryParams.value.chargeTimeSTime = ""
|
||||
queryParams.value.chargeTimeETime = ""
|
||||
proxy.resetForm("queryRef");
|
||||
occurrenceTime.value = '';
|
||||
queryParams.value.chargeTimeSTime = '';
|
||||
queryParams.value.chargeTimeETime = '';
|
||||
proxy.resetForm('queryRef');
|
||||
getList(1);
|
||||
}
|
||||
|
||||
@@ -707,54 +731,36 @@ function handleSelectionChange(selection) {
|
||||
multiple.value = !selection.length;
|
||||
}
|
||||
|
||||
// 表头点击事件,用于实现更灵活的列操作
|
||||
function handleHeaderClick(column) {
|
||||
// 可以在这里添加额外的表头操作逻辑
|
||||
// 例如:根据列内容自动调整宽度
|
||||
if (column.property) {
|
||||
autoFitColumnWidth(column.property);
|
||||
}
|
||||
// 初始化日期范围为当前月第一天到今天
|
||||
function initDefaultDateRange() {
|
||||
const now = new Date();
|
||||
const year = now.getFullYear();
|
||||
const month = now.getMonth();
|
||||
|
||||
// 当前月第一天
|
||||
const firstDay = new Date(year, month, 1);
|
||||
// 今天
|
||||
const today = now;
|
||||
|
||||
// 格式化为YYYY-MM-DD格式
|
||||
const formatDate = (date) => {
|
||||
const y = date.getFullYear();
|
||||
const m = String(date.getMonth() + 1).padStart(2, '0');
|
||||
const d = String(date.getDate()).padStart(2, '0');
|
||||
return `${y}-${m}-${d}`;
|
||||
};
|
||||
|
||||
occurrenceTime.value = [formatDate(firstDay), formatDate(today)];
|
||||
|
||||
// 同时设置到queryParams中,确保首次加载时传递时间参数
|
||||
queryParams.value.chargeTimeSTime = occurrenceTime.value[0] + ' 00:00:00';
|
||||
queryParams.value.chargeTimeETime = occurrenceTime.value[1] + ' 23:59:59';
|
||||
}
|
||||
|
||||
// 根据内容自动调整列宽
|
||||
function autoFitColumnWidth(property) {
|
||||
// 实际项目中可以根据需要实现更复杂的自动宽度计算逻辑
|
||||
// 这里提供一个简单的实现方式
|
||||
const table = document.querySelector('.el-table__body-wrapper table');
|
||||
if (table) {
|
||||
const rows = table.querySelectorAll('tbody tr');
|
||||
let maxWidth = 100; // 默认最小宽度
|
||||
|
||||
rows.forEach(row => {
|
||||
const cell = Array.from(row.cells).find((cell, index) => {
|
||||
const headerCell = table.querySelector(`thead th:nth-child(${index + 1})`);
|
||||
return headerCell && headerCell.dataset.property === property;
|
||||
});
|
||||
|
||||
if (cell) {
|
||||
const textWidth = cell.textContent.length * 8; // 粗略估算文本宽度
|
||||
maxWidth = Math.max(maxWidth, textWidth);
|
||||
}
|
||||
});
|
||||
|
||||
// 应用计算出的宽度(可以根据实际需要调整)
|
||||
// 注意:在实际Element Plus中,可能需要通过ref获取表格实例并调用API来设置列宽
|
||||
}
|
||||
}
|
||||
|
||||
/** 跳转到患者档案管理页面 */
|
||||
function handleArchive(row) {
|
||||
// 跳转到患者档案管理页面,并传递busNo参数
|
||||
proxy.$router.push({
|
||||
path: '/system/basicmanage/patientmanagement',
|
||||
query: { searchKey: row.busNo }
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
// 初始化页面
|
||||
getPharmacyCabinetLists();
|
||||
initDefaultDateRange();
|
||||
getList();
|
||||
getPharmacyCabinetLists()
|
||||
</script>
|
||||
<style scoped>
|
||||
.custom-tree-node {
|
||||
@@ -762,7 +768,7 @@ getPharmacyCabinetLists()
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.pagination-container{
|
||||
margin-right: 20px;
|
||||
.pagination-container {
|
||||
margin-right: 20px;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user