2
lkk
2025-01-17 d23ab1d66456d5dd8aa8645bb262deef4e70a9eb
src/views/system/tijian/index.vue
@@ -353,10 +353,6 @@
                ></el-option>
              </el-select>
            </el-form-item>
            <!-- <el-form-item prop="ageUnit">
              </el-form-item> -->
          </el-form>
          <el-form
            :inline="true"
@@ -590,14 +586,6 @@
                  prop="allProName"
                  :show-overflow-tooltip="true"
                />
                <!-- :selectable="checkSelectable" -->
                <!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
                <template slot-scope="scope">
                  <el-button size="mini" type="text" icon="el-icon-circle-check" @click="handleSeach(scope.row)"
                    v-hasPermi="['system:package:Seach']">套餐详情
                  </el-button>
                </template>
</el-table-column> -->
              </el-table>
            </div>
          </div>
@@ -685,6 +673,7 @@
                    width="260px"
                  >
                  </el-table-column>
                  <el-table-column prop="proPrice" label="原价" width="56px">
                  </el-table-column>
@@ -715,18 +704,6 @@
        </el-tab-pane>
        <el-tab-pane label="单项" name="second">
          <div class="tab8">
            <!-- <div class="tab7">
              <v-tree-transfer
                :treeData="treedataList"
                :defaultProps="{ children: 'tjProjectList', label: 'proName' }"
                :defaultKeys="defaultKeys"
                @changeKeys="changeCategoryKeys"
                :key="datekey"
              ></v-tree-transfer> -->
            <!-- <el-tree :data="data" show-checkbox node-key="proId" :props="defaultProps" :default-checked-keys="treeList"
                @check-change="handleCurrentChecked">
              </el-tree> -->
            <!-- </div> -->
            <el-row :gutter="20">
              <el-col :span="6">
                <div
@@ -803,6 +780,8 @@
                    :span-method="objectSpanMethod"
                  >
                    <el-table-column prop="propinName" label="检查项目">
                    </el-table-column>
                    <el-table-column prop="sl" label="数量" width="56px">
                    </el-table-column>
                    <el-table-column
                      prop="proPrice"
@@ -953,17 +932,17 @@
                  style="width: 150px"
                ></el-input>
              </el-form-item>
              <el-form-item label="优惠">
              <el-form-item label="折扣">
                <!-- {{ discount }} -->
                <el-input-number
                  ref="inputNumber"
                  style="width: 150px"
                  v-model="discount"
                  :precision="2"
                  :precision="1"
                  :step="0.1"
                  :max="10"
                  :min="0"
                  @change="numberChange"
                  @change="debounceNumberChange"
                  :disabled="isfalse"
                ></el-input-number>
              </el-form-item>
@@ -972,7 +951,9 @@
                  placeholder="实收金额"
                  v-model="TotalPrice"
                  style="width: 206px"
                ></el-input>
                  @input="changeXianjia"
                  @blur="numberChangeXianPrice(discount, discount)"
                />
              </el-form-item>
              <br />
@@ -994,7 +975,8 @@
                <el-button
                  type="primary"
                  @click="submitPrice"
                  :disabled="confirm"
                  :loading="loadingSubmit"
                  :disabled="confirm || loadingSubmit"
                  v-if="showHidden.has_charge == 'N'"
                  size="mini"
                  >签到登记</el-button
@@ -1107,17 +1089,18 @@
              <el-table-column label="折扣">
                <template slot-scope="scope">
                  <!-- 只输入纯数字折扣 -->
                  <el-input
                  <el-input-number
                    v-model.number="scope.row.discount"
                    @input="validateDiscount(scope.row)"
                    placeholder="输入折扣"
                    size="small"
                    type="number"
                    min="0"
                    step="1"
                    max="10"
                    :precision="1"
                    :step="0.1"
                    :max="10"
                    :min="0"
                  >
                  </el-input>
                  </el-input-number>
                </template>
              </el-table-column>
              <el-table-column prop="nowPrice" label="实收金额">
@@ -1274,11 +1257,11 @@
                <el-input-number
                  style="width: 140px"
                  v-model="discount"
                  :precision="2"
                  :precision="1"
                  :step="0.1"
                  :max="10"
                  :min="0"
                  @change="numberChange"
                  @change="debounceNumberChange"
                  :disabled="isfalse"
                ></el-input-number>
              </el-form-item>
@@ -1461,6 +1444,7 @@
  },
  data() {
    return {
      isSubmitting: false,
      open1: false,
      filterage: "",
      checkedkeys: [],
@@ -1522,12 +1506,12 @@
      taocan: false,
      top: true,
      value: "2",
      getInfodis: "",
      srcUrl: "",
      hides: false,
      hide: true,
      beat: false,
      dialogVisibles: false,
      loadingSubmit: false,
      charge: false,
      src: "",
      url: "",
@@ -1661,7 +1645,7 @@
        cusIsvip: null,
      },
      // 添加
      lastXianPrice: 0,
      // 表单参数
      // 表单参数
      obj: {},
@@ -1677,7 +1661,27 @@
        firmId: "",
        firmDeptName: "",
      },
      form1: {},
      form1: {
        cnName: "",
        contactPerson: "",
        contactPhone: "",
        taxNumber: "",
        legalPerson: "",
        registerAddress: "",
        mailingAddress: "",
        bankAccount: "",
        mailingAddress: "",
        countNum: "",
        bankAccount: "",
        email: "",
        principal: "",
        url: "",
        faxNumber: "",
        areaName: "",
        orderNum: "",
        remark: "",
        validTime: "",
      },
      title: "",
      // 表单校验
      rules: {
@@ -1728,6 +1732,19 @@
  mounted() {},
  methods: {
    debounceNumberChange(currentValue, oldValue) {
      clearTimeout(this.debounceTimer);
      this.debounceTimer = setTimeout(() => {
        this.numberChange(currentValue, oldValue);
      }, 300);
    },
    changeXianjia() {
      // 原始折扣率计算
      if (this.TotalPrice1 !== 0) {
        this.discount =
          (Math.floor((this.TotalPrice / this.TotalPrice1) * 100) / 100) * 10;
      }
    },
    clear() {
      this.form.firmId = "";
    },
@@ -1763,13 +1780,17 @@
        })
        .catch(() => {});
    },
    handleManualChange(row) {
      console.log("这是主动出发的");
      this.updateProPrice(row);
    },
    validateDiscount(row) {
      if (row.discount > 10) {
        row.discount = 10; // 强制将值设置为最大值
      } else if (row.discount < 0) {
        row.discount = 0; // 强制将值设置为最小值
      console.log("转了")
      if (this.TotalPrice !== undefined && !isNaN(this.TotalPrice) && this.TotalPrice !== this.lastXianPrice) {
        console.log("进入了")
        this.updateProPrice1(row);
        this.lastXianPrice = this.TotalPrice;
      }
      this.updateProPrice(row); // 更新价格或其他逻辑
    },
    isAll(value) {
      return value === "" || value === null;
@@ -1787,7 +1808,33 @@
      this.discount =
        (Math.floor((this.TotalPrice / this.TotalPrice1) * 100) / 100) * 10;
    },
    updateProPrice1(row) {
      console.log("进入了1")
      const ordPrice = new Big(row.ordPrice);
      const discount = new Big(row.discount);
      const result = ordPrice.times(discount.div(10));
      row.nowPrice = result.toNumber();
      const totalYsPrice = this.tableData1.reduce((sum, item) => {
        return sum.plus(new Big(item.nowPrice || '0'));
      }, new Big(0));
      const totalYsPriceNum = totalYsPrice.toNumber();
      if (this.TotalPrice !== undefined && !isNaN(this.TotalPrice)) {
        const xianPrice = new Big(this.TotalPrice);
        const diff = xianPrice.minus(totalYsPriceNum);
        if (!diff.eq(0) && this.tableData1.length > 0) {
          const lastItem = this.tableData1[this.tableData1.length - 1];
          const newYsPrice = new Big(lastItem.nowPrice).plus(diff).toNumber();
          this.$set(this.tableData1[this.tableData1.length - 1], 'nowPrice', newYsPrice);
        }
      }
      // Update youhui calculation
      if (this.TotalPrice1 !== 0 && this.TotalPrice !== 0) {
        this.discount = (Math.floor((this.TotalPrice / this.TotalPrice1) * 100) / 100) * 10;
      } else {
        this.discount = 0;
      }
    },
    openname() {
      this.$refs.bbb.open = true;
      this.$refs.bbb.title = "搜索姓名";
@@ -1911,11 +1958,9 @@
    },
    getList1() {
      getInfo().then((response) => {
        this.getInfodis = response.user.discount;
        this.hospName = response.hospName;
        if (this.getInfodis === null) {
          this.isfalse = true;
        }
      });
      getIsRequired().then((response) => {
        this.showHidden = response.data;
@@ -2128,25 +2173,6 @@
        this.srcUrl = response.url;
      });
    },
    // base64转文件
    // dataURLtoFile(image, filename) {
    //   var arr = image.split(",");
    //   var mime = arr[0].match(/:(.*?);/)[1];
    //   var bstr = atob(arr[1]);
    //   var n = bstr.length;
    //   var u8arr = new Uint8Array(n);
    //   while (n--) {
    //     u8arr[n] = bstr.charCodeAt(n);
    //   }
    //   return new File([u8arr], filename, { type: mime });
    // },
    // 关闭摄像头
    // stopNavigator() {
    //   this.thisVideo.srcObject.getTracks()[0].stop();
    //   this.beat = false;
    // },
    handleClose(done) {
      this.$confirm("确认关闭?")
@@ -2158,16 +2184,9 @@
    /** 查询信息列表 */
    getList() {
      // listCustomer(this.queryParams).then((response) => {
      //   this.customerList = response.rows;
      //   this.total = response.total;
      //   this.loading = false;
      // });
      getInfo().then((response) => {
        this.getInfodis = response.user.discount;
        if (this.getInfodis === null) {
          this.isfalse = true;
        }
      });
      let cusSex = this.form.cusSex;
      //全部套餐
@@ -2219,8 +2238,6 @@
    },
    /** 重置按钮操作 */
    resetQuery() {
      // this.resetForm("form");
      // this.form = {};
      if (this.confirm === true) {
        this.$tab.refreshPage();
      } else {
@@ -2253,27 +2270,66 @@
      })
        .then(() => {
          this.discount = currentValue;
          if (this.discount < this.getInfodis) {
            this.discount = this.getInfodis;
            // this.$modal.msgError(`该人员最高优惠权限为${this.getInfodis}折`);
          }
          this.tableData1.forEach((item) => {
            item.discount = this.discount;
            const ordPrice = new Big(item.ordPrice);
            const discount = new Big(item.discount);
            const result = ordPrice.times(discount.div(10)); // ordPrice * (discount / 10)
            const result = ordPrice.times(discount.div(10));
            item.nowPrice = result.toNumber();
            this.TotalPrice = this.tableData1.reduce((sum, item) => {
              return sum.plus(new Big(item.nowPrice || "0"));
            }, new Big(0));
          });
          // ----------------------------------------------------------
        })
        .catch(() => {
          this.discount = oldValue;
        });
    },
    numberChangeXianPrice(currentValue, oldValue) {
      this.$confirm("确定修改所有子项的折扣吗?", "提示", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning",
      })
        .then(() => {
          this.discount = currentValue;
          if (this.discount < this.getInfodis) {
            this.discount = this.getInfodis;
          }
          let totalYsprice = new Big(0);
          this.tableData1.forEach((item) => {
            item.discount = this.discount;
            const ordPrice = new Big(item.ordPrice);
            const discount = new Big(item.discount);
            const result = ordPrice.times(discount.div(10));
            item.nowPrice = result.toNumber();
            totalYsprice = totalYsprice.plus(new Big(item.nowPrice));
          });
          if (!totalYsprice.eq(this.TotalPrice)) {
            const diff = new Big(this.TotalPrice).minus(totalYsprice);
            if (this.tableData1.length > 0) {
              const lastItem = this.tableData1[this.tableData1.length - 1];
              const newYsPrice = new Big(lastItem.nowPrice)
                .plus(diff)
                .toNumber();
              console.log(
                "hhh",
                this.tableData1[this.tableData1.length - 1].nowPrice,
                newYsPrice
              );
              this.$set(
                this.tableData1[this.tableData1.length - 1],
                "nowPrice",
                newYsPrice
              );
            }
          }
        })
        .catch(() => {
          this.discount = oldValue;
        });
    },
    /** 登记提交按钮 */
    submitForm() {
      let _this = this;
@@ -2322,6 +2378,7 @@
      let cusIdcard = this.form.cusIdcard;
      if (cusIdcard) {
        getCusIdcard(cusIdcard).then((response) => {
          _this.top = false;
          if (response.data) {
            this.form = response.data;
            if (this.form.discount === null) {
@@ -2362,11 +2419,11 @@
                    this.list1 = false;
                    this.list2 = true;
                    this.list3 = false;
                    this.top = false;
                    _this.top = false;
                  } else {
                    this.list1 = true;
                    this.TotalPrice = 0;
                    this.top = false;
                    _this.top = false;
                  }
                });
              } else {
@@ -2522,15 +2579,7 @@
        }
      } else {
        this.$message.warning("请放置身份证后再点击读取");
      } /* if (resultObj.resultFlag == "-1") {
          if (resultObj.errorMsg == "端口打开失败") {
            //alert("读卡器未连接");
          } else {
            //alert(resultObj.errorMsg);
          }
        } else if (resultObj.resultFlag == "-2") {
          //alert(resultObj.errorMsg);
        } */
      }
    },
    // TODO 以下代码可能是泾川使用的
    jingChuanHandlerWebSocketResult(resultObj) {
@@ -2682,23 +2731,9 @@
          alert("请检查读卡器连接是否正常");
        };
      } else {
        // if (_this.inputSSS.indexOf(":1") != -1) {
        //   var str1 = _this.inputSSS.indexOf(":1");
        //   var result1 = _this.inputSSS.substring(0, str1);
        //   var str2 = _this.inputSSS.indexOf(":1");
        //   var result2 = _this.inputSSS.substring(
        //     str2 + 2,
        //     _this.inputSSS.length
        //   );
        //   _this.inputSSS = result1 + result2;
        // }
        _this.inputSSS = _this.inputSSS.replace(":1", "");
        var websocket = null;
        var url = this.valueUrls;
        // var url = 'ws://'+ getIp() +':6789/websocket'
        if ("WebSocket" in window) {
          websocket = new WebSocket(url);
        } else if ("MozWebSocket" in window) {
@@ -2871,53 +2906,6 @@
      }
    },
    // 点击多选框获取选中数据
    // handleSelectionChange(selection, row) {
    //   this.tableData = selection;
    //   if (selection.length > 1) {
    //     let del_row = selection.shift();
    //     this.$refs.tb.toggleRowSelection(del_row, false); //设置这一行取消选中
    //   }
    // this.single = selection.length !== 1;
    // this.multiple = !selection.length;
    // this.tableData.forEach((item) => {
    //   this.fData = item.tjProjectList;
    // });
    // if (selection[0]) {
    //   this.DataList = [];
    // this.data = JSON.parse(JSON.stringify(this.dXData));
    //     if (selection[0].tjProjectList) {
    //       selection[0].tjProjectList.forEach((selectionitem) => {
    //         this.treedataList.forEach((item) => {
    //           if (selectionitem.proName == item.proName) {
    //             item.disabled = true;
    //             item.tjProjectList = [];
    //           }
    //           if (item.tjProjectList) {
    //             item.tjProjectList.forEach((item1) => {
    //               if (selectionitem.proName == item1.proName) {
    //                 item1.disabled = true;
    //                 item1.tjProjectList = [];
    //               }
    //               if (item1.tjProjectList) {
    //                 item1.tjProjectList.forEach((item2) => {
    //                   if (selectionitem.proName == item2.proName) {
    //                     item2.disabled = true;
    //                     item2.tjProjectList = [];
    //                   }
    //                 });
    //               }
    //             });
    //           }
    //         });
    //       });
    //     }
    //   } else {
    //     this.treedataList = JSON.parse(JSON.stringify(this.dXData));
    //     return;
    //   }
    // },
    resetpackage() {
      this.discount = 10;
      if (this.form.cusIdcard) {
@@ -2929,6 +2917,13 @@
      _this.pacId = "";
      this.proIds = [];
      this.tjCategory = "12";
      this.DataList = []; // 清空已选项目列表
      this.checkedkey = []; // 清空树的选中状态
      this.checkedListkey = [];
      this.TreedataList = [];
      this.$refs.tree.setCheckedKeys([]); // 重置树选中状态
      let data = {
        cusId,
        pacId: _this.pacId,
@@ -3268,7 +3263,7 @@
          if (this.DataList.length != 0) {
            this.list1 = false;
            this.DataList.forEach((item) => {
              this.marryall += item.proPrice;
              this.marryall = item.proPrice * item.sl;
            });
          }
        });
@@ -3386,116 +3381,99 @@
        var cusId = this.form.cusIdcard;
      } else {
        this.$message.warning("请先填写信息,再选体检内容");
        return; // 如果没有身份证号码,停止执行
      }
      let _this = this;
      // 初始化变量
      this.isSubmitting = true; // 开始提交时设置标志
      this.TotalPrice1 = 0; // 初始化应收金额
      this.TotalPrice = 0; // 初始化实收金额
      this.discount = 10; // 初始化折扣为10(100%)
      // 判断是否有选中的套餐
      if (this.tableData.length != 0) {
        this.tableData.forEach((item) => {
          _this.pacId = item.pacId;
        });
        _this.pacId = this.tableData[0].pacId;
      } else {
        _this.pacId = "";
      }
      this.proIds = [];
      if (this.DataList.length != 0) {
        this.DataList.forEach((item) => {
      // 处理选中的项目
      const newItemsToAdd = [];
      const allItems = [...this.DataList, ...this.DataLists]; // 合并所有项目
      allItems.forEach((item) => {
        if (!this.proIds.includes(item.proId)) {
          newItemsToAdd.push(item);
          this.proIds.push(item.proId);
        });
      }
      if (this.DataLists.length != 0) {
        this.DataLists.forEach((item) => {
          this.proIds.push(item.proId);
        });
      }
        }
      });
      // 准备数据
      let data = {
        cusId,
        pacId: _this.pacId,
        proIds: this.proIds,
      };
      // 根据体检类型选择不同的处理方法
      if (this.form.tjType == 1) {
        tuantiqueren(data).then((response) => {
          if (response.code == 200) {
            let cusId = this.form.cusIdcard;
            this.proIds = [];
            getTransitionList1(cusId).then((response) => {
              this.tableData1 = response.data;
              this.TotalPrice1 = 0;
              if (this.tableData1) {
                this.tableData1.forEach((item) => {
                  if (item.tjCategory != null) {
                    this.tjCategory = item.tjCategory;
                  }
                  if (item.pacName == "单项") {
                    item.list.forEach((item9) => {
                      this.treeList.push(item9.proId);
                    });
                  }
                  this.TotalPrice1 += item.ordPrice;
                  this.TotalPrice += item.nowPrice;
                  this.pacName = item.pacName;
                });
                this.TotalPrice = this.tableData1.reduce((sum, item) => {
                  return sum.plus(new Big(item.nowPrice || "0"));
                }, new Big(0));
                this.discount =
                  (Math.floor((this.TotalPrice / this.TotalPrice1) * 100) /
                    100) *
                  10;
                this.list1 = false;
                this.list3 = true;
                this.list2 = false;
              } else {
                this.list1 = true;
                this.TotalPrice = 0;
              }
            });
          } else {
            this.processOrderItems(cusId);
          }
          this.isSubmitting = false; // 提交完成后重置标志
        }).catch(() => {
          this.isSubmitting = false; // 确保在错误情况下也重置标志
        });
      } else {
        getaddtTransition(data).then((response) => {
          if (response.code == 200) {
            let cusId = this.form.cusIdcard;
            this.proIds = [];
            getTransitionList1(cusId).then((response) => {
              this.tableData1 = response.data;
              this.TotalPrice1 = 0;
              if (this.tableData1) {
                this.tableData1.forEach((item) => {
                  if (item.tjCategory != null) {
                    this.tjCategory = item.tjCategory;
                  }
                  if (item.pacName == "单项") {
                    item.list.forEach((item9) => {
                      this.treeList.push(item9.proId);
                    });
                  }
                  this.TotalPrice1 += item.ordPrice;
                  this.TotalPrice += item.nowPrice;
                  this.pacName = item.pacName;
                });
                this.discount =
                  (Math.floor((this.TotalPrice / this.TotalPrice1) * 100) /
                    100) *
                  10;
                this.list1 = false;
                this.list3 = true;
                this.list2 = false;
              } else {
                this.list1 = true;
                this.TotalPrice = 0;
              }
            });
          } else {
            this.processOrderItems(cusId);
          }
          this.isSubmitting = false; // 提交完成后重置标志
        }).catch(() => {
          this.isSubmitting = false; // 确保在错误情况下也重置标志
        });
      }
      this.taocan = false;
      this.defaultKeys = [];
      this.DataLists = [];
    },
    // 处理订单项目
    processOrderItems(cusId) {
      getTransitionList1(cusId).then((response) => {
        this.tableData1 = response.data;
        if (this.tableData1) {
          this.tableData1.forEach((item) => {
            if (item.tjCategory != null) {
              this.tjCategory = item.tjCategory;
            }
            if (item.pacName == "单项") {
              item.list.forEach((item9) => {
                this.treeList.push(item9.proId);
              });
            }
            this.TotalPrice1 += item.ordPrice || 0; // 累加应收金额
            this.TotalPrice += item.nowPrice || 0; // 累加实收金额
          });
          // 计算折扣
          this.discount = this.TotalPrice1 > 0 ?
            (Math.floor((this.TotalPrice / this.TotalPrice1) * 100) / 100) * 10 : 0;
          this.list1 = false;
          this.list3 = true;
          this.list2 = false;
        } else {
          this.list1 = true;
          this.TotalPrice = 0;
        }
      });
    },
    submitCheckinfee() {
      let _this = this;
@@ -3661,9 +3639,7 @@
            }
            this.discount =
              (this.formInline.paidIn / this.formInline.price) * 10;
            if (this.discount <= this.getInfodis) {
              this.discount = this.getInfodis;
            }
          } else {
            this.discount = 10;
            this.formInline.paidIn = "0.00";
@@ -3744,8 +3720,6 @@
    listgetOrder(data) {
      getOrder(data).then((res) => {
        this.$modal.msgSuccess("提交成功");
        // this.dialogVisibles = true;
        // this.url = window.webkitURL.createObjectURL(res); //将后端返回的blob文件读取出url
        //调接口显示导检单
        const tjNumber = res.msg;
        const viewNum = "792931586196398080";
@@ -3760,6 +3734,7 @@
    submitPrice() {
      let _this = this;
      if (_this.tjCategory !== "") {
        this.loadingSubmit = true;
        let List = _this.tableData1; //单个项目信息
        if (this.responseList.cusId) {
          var userId = this.responseList.cusId;
@@ -3810,6 +3785,7 @@
          })); // 创建新的对象,包含 discount 和 id
        gaibianzhekou(newArray).then((res) => {
          if (res.code === 200) {
            this.loadingSubmit = false;
            let data;
            if (pacId || this.tjOrderList.length > 0) {
@@ -3847,10 +3823,12 @@
              });
            }
          } else {
            this.loadingSubmit = false;
            this.$modal.msgError("改变折扣错误");
          }
        });
      } else {
        this.loadingSubmit = false;
        this.$modal.msgError("请选择体检类别");
      }
    },