From 7fb0a8f0ab16c149484bf043754cd10cfa94de2f Mon Sep 17 00:00:00 2001
From: wangyi <2946747746@qq.com>
Date: 星期一, 19 一月 2026 14:48:05 +0800
Subject: [PATCH] 增加了业务员,保管员和验收员的对应的显示

---
 src/views/purchase/cgPoOrderBill/cgPoOrderBill.vue |  138 ++++++++++++++++++++++++++++-----------------
 1 files changed, 85 insertions(+), 53 deletions(-)

diff --git a/src/views/purchase/cgPoOrderBill/cgPoOrderBill.vue b/src/views/purchase/cgPoOrderBill/cgPoOrderBill.vue
index f7d1bf6..c9b35d4 100644
--- a/src/views/purchase/cgPoOrderBill/cgPoOrderBill.vue
+++ b/src/views/purchase/cgPoOrderBill/cgPoOrderBill.vue
@@ -9,15 +9,27 @@
       class="searchBox"
     >
       <el-row>
-        <el-form-item label="鏃ユ湡" style="margin-left: 100px">
+        <el-form-item label="寮�濮嬫棩鏈�" style="margin-left: 100px">
           <el-date-picker
-            v-model="dateRange"
+            v-model="sTime"
+            type="date"
+            placeholder="寮�濮嬫棩鏈�"
+            style="width: 150px"
+            :disabled="queryParams.HInitTimeCycle != -1"
             value-format="yyyy-MM-dd"
-            type="daterange"
-            range-separator="-"
-            start-placeholder="寮�濮嬫棩鏈�"
-            end-placeholder="缁撴潫鏃ユ湡"
-          ></el-date-picker>
+          >
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="缁撴潫鏃ユ湡">
+          <el-date-picker
+            v-model="eTime"
+            type="date"
+            placeholder="缁撴潫鏃ユ湡"
+            style="width: 150px"
+            :disabled="queryParams.HInitTimeCycle != -1"
+            value-format="yyyy-MM-dd"
+          >
+          </el-date-picker>
         </el-form-item>
         <el-form-item label="鏃ユ湡闂撮殧">
           <el-select
@@ -264,7 +276,7 @@
           icon="el-icon-edit"
           size="mini"
           :disabled="single"
-          @click="handleEdit((row = rowForm), (OperationType = 3))"
+          @click="handleEdit((row = rowForm), (OperationType = 3), (copyType = -1))"
           >缂栬緫</el-button
         >
       </el-col>
@@ -274,7 +286,7 @@
           icon="el-icon-edit"
           size="mini"
           :disabled="single"
-          @click="handleEdit((row = rowForm), (OperationType = 2))"
+          @click="handleEdit((row = rowForm), (OperationType = 2), (copyType = 1))"
           >澶嶅埗</el-button
         >
       </el-col>
@@ -463,7 +475,7 @@
                 }}</span>
                 <el-button
                   type="text"
-                  @click="handleEdit(row, (OperationType = 3))"
+                  @click.stop="handleEdit(row, (OperationType = 3), (copyType = 1))"
                   v-else-if="column.property == '鍗曟嵁鍙�'"
                   >{{ row.鍗曟嵁鍙� }}</el-button
                 >
@@ -496,22 +508,16 @@
       </el-dialog>
       <!-- 缂栬緫 -->
       <el-dialog
-        title="缂栬緫鑱屽憳"
+        title="缂栬緫閲囪喘璁㈠崟"
         :visible.sync="openEdit"
         width="1480px"
         append-to-body
         class="xsckdBox"
         :before-close="close"
       >
-        <edit
-          :OperationType="OperationType"
-          :linterid="this.rowForm.HItemID"
-          :HSouceBillType="this.rowForm.HSourceBillType"
-          :HOrgID="this.queryParams.HOrgID"
-          :copyType="copyType"
-          @editCloseGy="editGyClose"
-          v-if="editShow"
-        />
+        <div style="height: 70vh" v-if="openEdit">
+          <iframe :src="iframeUrl" frameborder="0" width="100%" height="100%"></iframe>
+        </div>
       </el-dialog>
       <el-dialog
         :title="upload.title"
@@ -611,13 +617,14 @@
 import dayjs from "dayjs";
 
 export default {
-  name: "GySource",
+  name: "Cg_POOrderBillList",
   components: { RowSettings, gySource },
   props: {
     openPage: { type: String },
   },
   data() {
     return {
+      iframeUrl: "",
       activeSeach: "",
       HModName: "Cg_POOrderBillList",
       editShow: false,
@@ -627,7 +634,7 @@
       openPrintList: false,
       printListShow: false,
       HClassTag: "ForFilteringSchemes", //杩囨护鏉′欢鐨刢lass绫�
-      HBillType: "1202",
+      HBillType: "1102",
       openBtnHide: false,
       btnHideShow: false,
       rowHideShow: false,
@@ -659,6 +666,7 @@
         { label: "杩�30澶�", value: 29 },
         { label: "杩戝崐骞�", value: 180 },
         { label: "杩戜竴骞�", value: 365 },
+        { label: "浠绘剰闂撮殧", value: -1 },
       ],
       hPriceTypeList: ["鎴愭湰浠�", "缁撶畻浠�"],
       addBtnShow: false,
@@ -677,7 +685,6 @@
       OperationType: null, //淇濆瓨绫诲瀷锛堟柊澧�1淇敼3锛�
       HInterID: null,
       baseURL: process.env.VUE_APP_BASE_API || "http://47.96.97.237/API/",
-      user: "admin",
       currentRow: [],
       lastSelectedRowIndex: null, // 鐢ㄤ簬璁板綍涓婃鐐瑰嚮鐨勮绱㈠紩
       lastSelectedRow: null, // 涓婁竴娆¢�変腑鐨勮
@@ -772,10 +779,17 @@
   },
   mounted() {
     this.queryParams.HOrgID = sessionStorage["Organization"];
+    window.editGyClose = () => {
+      this.editGyClose(); // 缁勪欢鍐呯殑鏂规硶缁戝畾鍒皐indows
+    };
   },
   created() {
     this.riqiChange();
-    this.getList();
+    // this.getList();
+    this.handleQuery();
+  },
+  beforeDestory() {
+    delete window.editGyClose;
   },
   methods: {
     onDateScanOptionChangerHandler(e) {
@@ -817,7 +831,7 @@
     defaintOperationByCompanyName() {
       var result = false;
       axios
-        .get(this.baseURL + "/Xt_getInfo/getCompanyName")
+        .get(this.$baseUrl + "/Xt_getInfo/getCompanyName")
         .then((response) => {
           var data1 = response.data;
           if (data1.count == 1) {
@@ -852,6 +866,9 @@
       this.getList();
     },
     riqiChange() {
+      if (this.queryParams.HInitTimeCycle == -1) {
+        return;
+      }
       const end = new Date();
       const start = new Date();
       start.setTime(start.getTime() - 3600 * 1000 * 24 * this.queryParams.HInitTimeCycle);
@@ -863,7 +880,6 @@
       const ddE = String(end.getDate()).padStart(2, "0");
       this.sTime = yyyyS + "-" + mmS + "-" + ddS;
       this.eTime = yyyyE + "-" + mmE + "-" + ddE;
-      this.dateRange = [this.sTime, this.eTime];
     },
     organizationChange(val) {
       // let options=undefined
@@ -908,19 +924,17 @@
       if (this.pageSize == 0) {
         this.pageSize = 50;
       }
-      if (this.dateRange.length > 0) {
-        this.sWhere +=
-          " and CONVERT(varchar(100),鏃ユ湡, 23) >= '" + this.dateRange[0] + "'";
-        this.sWhere +=
-          " and CONVERT(varchar(100),鏃ユ湡, 23) <= '" + this.dateRange[1] + "'";
+      if (this.sTime) {
+        this.sWhere += " and CONVERT(varchar(100),鏃ユ湡, 23) >= '" + this.sTime + "'";
+        this.sWhere += " and CONVERT(varchar(100),鏃ユ湡, 23) <= '" + this.eTime + "'";
       }
       // this.sWhere += ` and CONVERT(varchar(100),鏃ユ湡, 23) >= '2020-01-01' and CONVERT(varchar(100),鏃ユ湡, 23) <= '2030-01-01'`;
       //鐢熶骇璧勬枡鍒楄〃
       axios
-        .get(this.baseURL + "/Cg_POOrderBill/page", {
+        .get(this.$baseUrl + "/Cg_POOrderBill/page", {
           params: {
             sWhere: this.sWhere,
-            user: this.user,
+            user: sessionStorage["HUserName"],
             page: this.page,
             size: this.pageSize,
           },
@@ -1009,7 +1023,12 @@
               }
             }
             option.data = result;
-            this.DisPlay_HideColumn(this.HModName, this.user, option, this.dataList);
+            this.DisPlay_HideColumn(
+              this.HModName,
+              sessionStorage["HUserName"],
+              option,
+              this.dataList
+            );
           }
         })
         .catch((error) => {
@@ -1019,7 +1038,7 @@
     DisPlay_HideColumn(HModName, user, option, dataOption) {
       this.totalNameList = [];
       axios
-        .get(this.baseURL + "/Xt_grdAlignment_WMES/grdAlignmentWMESList", {
+        .get(this.$baseUrl + "/Xt_grdAlignment_WMES/grdAlignmentWMESList", {
           params: {
             HModName: HModName,
             user: user,
@@ -1177,7 +1196,7 @@
     //鍙屽嚮琛�
     handleDblclick(row, column, cell, event) {
       this.OperationType = 3;
-      this.handleEdit();
+      this.handleEdit(row, 3, 1);
     },
     // 澶氶�夋閫変腑鏁版嵁
     handleSelectionChange(selection) {
@@ -1308,10 +1327,10 @@
     getOrgIDByUser() {
       var res = "";
       axios
-        .get(this.baseURL + "/Xt_User/getOrgIDListByUser", {
+        .get(this.$baseUrl + "/Xt_User/getOrgIDListByUser", {
           params: {
             HModName: this.HModName,
-            user: this.user,
+            user: sessionStorage["HUserName"],
             HOrgID: this.zuzhiId,
           },
         })
@@ -1366,13 +1385,15 @@
     //鎵撳紑鏂板缁勪欢寮圭獥
     handleAddEdit() {
       this.rowForm.HItemID = 0;
+      this.iframeUrl = `/iframe/CgPoOrderBillEdit?HInterID=${0}&OperationType=${1}&copyType=${-1}`;
       this.$nextTick(() => {
         this.openEdit = true;
         this.editShow = true;
       });
     },
     //鎵撳紑淇敼缁勪欢寮圭獥
-    handleEdit() {
+    handleEdit(row, OperationType, copyType) {
+      this.iframeUrl = `/iframe/CgPoOrderBillEdit?HInterID=${row.hmainid}&OperationType=${OperationType}&copyType=${copyType}`;
       this.$nextTick(() => {
         this.openEdit = true;
         this.editShow = true;
@@ -1391,8 +1412,11 @@
         .then(() => {
           if (!this.rowForm.瀹℃牳浜�) {
             axios
-              .get(this.baseURL + "Cg_POOrderBill/DeltetCg_POOrderBill", {
-                params: { HInter: this.rowForm.HInterID.toString(), user: this.user },
+              .get(this.$baseUrl + "Cg_POOrderBill/DeltetCg_POOrderBill", {
+                params: {
+                  HInter: this.rowForm.HInterID.toString(),
+                  user: sessionStorage["HUserName"],
+                },
               })
               .then((response) => {
                 if (response.data.count == 1) {
@@ -1416,8 +1440,12 @@
       var InterID = form.HItemID || form.HInterID || form.hmainid;
       //閫昏緫瀹℃牳鏂规硶
       axios
-        .get(this.baseURL + "/Cg_POOrderBill/AuditCg_POOrderBill", {
-          params: { HInterID: InterID, IsAudit: num, CurUserName: this.user },
+        .get(this.$baseUrl + "/Cg_POOrderBill/AuditCg_POOrderBill", {
+          params: {
+            HInterID: InterID,
+            IsAudit: num,
+            CurUserName: sessionStorage["HUserName"],
+          },
         })
         .then((response) => {
           let result = response.data;
@@ -1436,11 +1464,11 @@
     async set_CloseBill(num, form) {
       let HInterID = form.HItemID || form.HInterID || form.hmainid;
       try {
-        let res = await axios.get(`${this.baseURL}/Cg_POOrderBill/CloseCg_POOrderBill`, {
+        let res = await axios.get(`${this.$baseUrl}/Cg_POOrderBill/CloseCg_POOrderBill`, {
           params: {
             HInterID: HInterID,
             Type: num,
-            user: this.user,
+            user: sessionStorage["HUserName"],
           },
         });
 
@@ -1461,13 +1489,13 @@
       let HEntryID = form.HEntryID || form.hsubid;
       try {
         let res = await axios.get(
-          `${this.baseURL}Cg_POOrderBill/CloseRowCg_POOrderBill`,
+          `${this.$baseUrl}Cg_POOrderBill/CloseRowCg_POOrderBill`,
           {
             params: {
               HInterID: HInterID,
               HEntryID: HEntryID,
               ISAudit: num,
-              CurUserName: this.user,
+              CurUserName: sessionStorage["HUserName"],
             },
           }
         );
@@ -1487,11 +1515,11 @@
     async set_DropBill(num, form) {
       let HInterID = form.HItemID || form.HInterID || form.hmainid;
       try {
-        let res = await axios.get(`${this.baseURL}/Cg_POOrderBill/DropCg_POOrderBil`, {
+        let res = await axios.get(`${this.$baseUrl}/Cg_POOrderBill/DropCg_POOrderBil`, {
           params: {
             HInterID: HInterID,
             Type: num,
-            user: this.user,
+            user: sessionStorage["HUserName"],
           },
         });
 
@@ -1511,8 +1539,12 @@
       var InterID = form.HItemID || form.HInterID;
       //閫昏緫瀹℃牳鏂规硶
       axios
-        .get(this.baseURL + "/Gy_Employee/StopGy_Employee", {
-          params: { HInterID: InterID, IsStop: num, CurUserName: this.user },
+        .get(this.$baseUrl + "/Gy_Employee/StopGy_Employee", {
+          params: {
+            HInterID: InterID,
+            IsStop: num,
+            CurUserName: sessionStorage["HUserName"],
+          },
         })
         .then((response) => {
           let result = response.data;
@@ -1578,10 +1610,10 @@
         }
       }
       var sSubStr = JSON.stringify(num);
-      var sMainSub = sSubStr + "&鍜�" + this.user;
+      var sMainSub = sSubStr + "&鍜�" + sessionStorage["HUserName"];
       axios({
         method: "post",
-        url: this.baseURL + "/Gy_Source/Gy_Source_btnSave",
+        url: this.$baseUrl + "/Gy_Source/Gy_Source_btnSave",
         data: {
           sMainSub: sMainSub,
         },

--
Gitblit v1.9.1