Browse Source

工单优化~

aiwenzhu 3 weeks ago
parent
commit
e8a770e624

+ 24 - 0
src/views/productManagement/installationOrder/components/AcceptDialog.vue

@@ -23,6 +23,24 @@
           disabled
         />
       </el-form-item>
+      <el-form-item label="预计完成时间" prop="estimatedCompleteTime">
+        <el-date-picker
+          v-model="form.estimatedCompleteTime"
+          type="date"
+          placeholder="选择日期"
+          style="width: 100%"
+          value-format="yyyy-MM-dd"
+          format="yyyy-MM-dd"
+          clearable
+          :picker-options="{
+            disabledDate: (time) => {
+              const todayStart = new Date();
+              todayStart.setHours(0, 0, 0, 0); // 获取当天 00:00:00.000
+              return time.getTime() < todayStart.getTime();
+            },
+          }"
+        />
+      </el-form-item>
     </el-form>
     <div slot="footer" class="dialog-footer">
       <el-button
@@ -63,6 +81,7 @@ export default {
       form: {
         acceptorId: "",
         acceptTime: new Date(),
+        estimatedCompleteTime: "",
       },
       rules: {
         acceptorId: [
@@ -71,6 +90,9 @@ export default {
         acceptTime: [
           { required: true, message: "请选择接单时间", trigger: "change" },
         ],
+        estimatedCompleteTime: [
+          { required: true, message: "请选择预计完成时间", trigger: "change" },
+        ],
       },
     };
   },
@@ -86,6 +108,7 @@ export default {
     initForm() {
       this.form.acceptorId = this.currentUser.id;
       this.form.acceptTime = new Date();
+      this.form.estimatedCompleteTime = "";
     },
     // 提交表单
     handleSubmit() {
@@ -97,6 +120,7 @@ export default {
               orderId: this.rowData.id,
               acceptorId: this.form.acceptorId,
               acceptTime: this.formatDateTime(this.form.acceptTime),
+              estimatedCompleteTime: this.form.estimatedCompleteTime,
             });
           } finally {
             this.submitting = false;

+ 3 - 3
src/views/productManagement/installationOrder/components/AddDialog.vue

@@ -430,9 +430,9 @@ export default {
         serviceStaff: [
           { required: true, message: "请选择服务人员", trigger: "change" },
         ],
-        estimatedCompleteTime: [
-          { required: true, message: "请选择预计完成时间", trigger: "change" },
-        ],
+        // estimatedCompleteTime: [
+        //   { required: true, message: "请选择预计完成时间", trigger: "change" },
+        // ],
         customer: [
           { required: true, message: "请选择客户", trigger: "change" },
         ],

+ 2 - 2
src/views/productManagement/installationOrder/components/CheckDialog.vue

@@ -147,7 +147,7 @@ export default {
         serviceStaffId: "",
         customContact: "",
         telephone: "",
-        checkDate: new Date(),
+        checkDate: this.formatDate(new Date()),
         checkImage: [],
       },
       rules: {
@@ -196,7 +196,7 @@ export default {
         serviceStaffId: parseInt(this.currentUser.id),
         customContact: "",
         telephone: "",
-        checkDate: new Date(),
+        checkDate: this.formatDate(new Date()),
         checkImage: [],
       };
       this.fileList = [];

+ 55 - 22
src/views/productManagement/installationOrder/components/DailyWriteDialog.vue

@@ -3,7 +3,7 @@
   <el-dialog
     title="服务填写"
     :visible.sync="visible"
-    width="1000px"
+    width="1200px"
     :close-on-click-modal="false"
     :close-on-press-escape="false"
     @close="handleDialogClose"
@@ -70,23 +70,18 @@
         </template>
       </el-table-column>
       <el-table-column prop="userName" label="服务人员" align="center" />
-      <el-table-column
-        prop="isWrite"
-        label="是否填写"
-        width="80"
-        align="center"
-      >
+      <el-table-column prop="isWrite" label="已填写" width="80" align="center">
         <template slot-scope="scope">
           <el-tag
             :type="scope.row.isWrite === '已填写' ? 'success' : 'warning'"
           >
-            {{ scope.row.isWrite }}
+            {{ scope.row.isWrite === "已填写" ? "是" : "否" }}
           </el-tag>
         </template>
       </el-table-column>
       <el-table-column prop="orderQuantity" label="计划总量" align="center" />
       <el-table-column prop="installQuantity" label="已完成量" align="center" />
-
+      <el-table-column prop="unshippedQuantity" label="剩余量" align="center" />
       <el-table-column
         prop="todayQuantity"
         label="当日完成量"
@@ -105,16 +100,22 @@
           />
         </template>
       </el-table-column>
-      <el-table-column prop="unshippedQuantity" label="剩余量" align="center" />
-      <el-table-column prop="installRemark" label="备注" align="center">
+      <el-table-column
+        prop="installRemark"
+        label="备注"
+        width="200"
+        align="center"
+      >
         <template slot-scope="scope">
           <el-input
             v-model="scope.row.installRemark"
             type="text"
             size="small"
-            placeholder="请输入备注"
+            placeholder="请输入备注(必填)"
             maxlength="200"
             show-word-limit
+            :class="{ 'is-error': scope.row.remarkError }"
+            @input="handleRemarkInput(scope.row)"
           />
         </template>
       </el-table-column>
@@ -336,16 +337,35 @@ export default {
 
     // 验证表格数据
     validateTableData() {
-      // const invalidRows = this.tableData.filter(
-      //   (row) => !row.todayQuantity || row.todayQuantity <= 0
-      // );
-
-      // if (invalidRows.length > 0) {
-      //   const dates = invalidRows.map((row) => row.date).join("、");
-      //   this.$message.error(`${dates} 的当日完成量必须大于0`);
-      //   return false;
-      // }
-      return true;
+      let isValid = true;
+      const emptyRemarkRows = this.tableData.filter(
+        (row) => !row.installRemark?.trim()
+      );
+
+      // 重置所有行的错误状态
+      this.tableData.forEach((row) => {
+        this.$set(row, "remarkError", false);
+      });
+
+      if (emptyRemarkRows.length > 0) {
+        // 标记未填写备注的行
+        emptyRemarkRows.forEach((row) => {
+          this.$set(row, "remarkError", true);
+        });
+
+        const dates = emptyRemarkRows.map((row) => row.date).join("、");
+        this.$message.error(`请填写 ${dates} 的备注信息`);
+        isValid = false;
+      }
+
+      return isValid;
+    },
+
+    // 处理备注输入
+    handleRemarkInput(row) {
+      if (row.remarkError && row.installRemark?.trim()) {
+        this.$set(row, "remarkError", false);
+      }
     },
 
     // 删除行
@@ -488,6 +508,19 @@ export default {
     .el-input__inner {
       text-align: center;
     }
+
+    .el-input {
+      &.is-error {
+        .el-input__inner {
+          border-color: #f56c6c;
+
+          &:focus {
+            border-color: #f56c6c;
+            box-shadow: 0 0 0 2px rgba(245, 108, 108, 0.2);
+          }
+        }
+      }
+    }
   }
 
   .dialog-footer {

+ 4 - 3
src/views/productManagement/installationOrder/components/DispatchDialog.vue

@@ -46,6 +46,7 @@
       <el-form-item label="派单日期" prop="dispatcherDate">
         <el-date-picker
           v-model="form.dispatcherDate"
+          disabled
           type="date"
           placeholder="选择派单日期"
           style="width: 100%"
@@ -100,7 +101,7 @@ export default {
       form: {
         serviceStaffIds: [],
         dispatcherId: "",
-        dispatcherDate: new Date(),
+        dispatcherDate: this.formatDate(new Date()),
       },
       previousServiceStaffIds: [],
       rules: {
@@ -122,7 +123,7 @@ export default {
         // 弹窗打开时设置默认值
         this.$nextTick(() => {
           this.form.dispatcherId = parseInt(this.currentUser.id);
-          this.form.dispatcherDate = new Date();
+          this.form.dispatcherDate = this.formatDate(new Date());
           // 设置默认选中的服务人员
           if (this.rowData.serviceStaffIds) {
             this.form.serviceStaffIds = this.rowData.serviceStaffIds
@@ -190,7 +191,7 @@ export default {
       this.form = {
         serviceStaffIds: [],
         dispatcherId: "",
-        dispatcherDate: new Date(),
+        dispatcherDate: this.formatDate(new Date()),
       };
       this.previousServiceStaffIds = []; // 重置上一次的选择状态
     },

+ 2 - 1
src/views/productManagement/installationOrder/index.vue

@@ -1531,6 +1531,7 @@ export default {
                 orderId: form.orderId,
                 acceptId: this.currentUser.id,
                 acceptName: this.currentUser.name,
+                estimatedCompleteTime: form.estimatedCompleteTime,
               },
             },
             {
@@ -1543,7 +1544,7 @@ export default {
                 operationUserName: this.currentUser.name,
                 beforeStatus: this.currentRow.statusName,
                 afterStatus: "处理中",
-                operationContent: "接单处理",
+                operationContent: `接单处理,预计完成时间:${form.estimatedCompleteTime}`,
               },
             },
           ],

+ 2 - 4
src/views/productManagement/productionSummary/components/OrderProductionTable.vue

@@ -172,12 +172,12 @@
             }}
           </template>
         </el-table-column>
-        <el-table-column
+        <!-- <el-table-column
           prop="producer"
           label="生产人员"
           width="100"
           align="center"
-        />
+        /> -->
         <el-table-column
           prop="remainingDays"
           label="距离完成时间还剩"
@@ -378,7 +378,6 @@ export default {
           "昨日完成量",
           "今日完成量",
           "完成率",
-          "生产人员",
           "距离完成时间还剩",
         ];
 
@@ -400,7 +399,6 @@ export default {
           `${((item.installedQuantity / item.totalQuantity) * 100).toFixed(
             2
           )}%`,
-          item.producer || "",
           this.formatRemainingTime(item),
         ]);
 

+ 129 - 8
src/views/productManagement/productionSummary/index.vue

@@ -24,21 +24,19 @@
             <el-button-group>
               <el-button
                 type="primary"
-                size="small"
                 :plain="queryType !== 'order'"
                 :loading="isLoading"
                 :disabled="isLoading"
-                @click="switchQueryType('order')"
+                @click="handleManualSwitch('order')"
               >
                 按订单查询
               </el-button>
               <el-button
                 type="primary"
-                size="small"
                 :plain="queryType !== 'product'"
                 :loading="isLoading"
                 :disabled="isLoading"
-                @click="switchQueryType('product')"
+                @click="handleManualSwitch('product')"
               >
                 按货品查询
               </el-button>
@@ -58,21 +56,19 @@
             <el-button-group>
               <el-button
                 type="primary"
-                size="small"
                 :plain="queryType !== 'order'"
                 :loading="isLoading"
                 :disabled="isLoading"
-                @click="switchQueryType('order')"
+                @click="handleManualSwitch('order')"
               >
                 按订单查询
               </el-button>
               <el-button
                 type="primary"
-                size="small"
                 :plain="queryType !== 'product'"
                 :loading="isLoading"
                 :disabled="isLoading"
-                @click="switchQueryType('product')"
+                @click="handleManualSwitch('product')"
               >
                 按货品查询
               </el-button>
@@ -116,12 +112,22 @@ export default {
       statisticsPanelData: [],
       queryType: "order", // 默认按订单查询
       isLoading: false,
+      autoSwitchTimer: null, // 自动切换定时器
+      switchInterval: 60 * 1000, // 1分钟
+      defaultInterval: 60 * 1000, // 1分钟
+      manualInterval: 300 * 1000, // 5分钟
     };
   },
   created() {
     this.updateCurrentTime();
     setInterval(this.updateCurrentTime, 1000);
     this.getTableData();
+    console.log("开始自动切换,间隔:", this.switchInterval);
+    this.startAutoSwitch();
+  },
+  beforeDestroy() {
+    console.log("组件销毁,清除定时器");
+    this.clearAutoSwitch();
   },
   methods: {
     updateCurrentTime() {
@@ -162,6 +168,7 @@ export default {
     async switchQueryType(type) {
       if (this.queryType === type || this.isLoading) return;
 
+      console.log("切换查询类型到:", type);
       this.isLoading = true;
       this.queryType = type;
 
@@ -228,6 +235,85 @@ export default {
         this.$message.error("获取图表数据失败");
       }
     },
+    // 开始自动切换
+    startAutoSwitch() {
+      console.log("启动自动切换定时器");
+      this.clearAutoSwitch();
+      this.autoSwitchTimer = setInterval(() => {
+        console.log("触发自动切换");
+        this.handleAutoSwitch();
+      }, this.switchInterval);
+    },
+
+    // 清除自动切换定时器
+    clearAutoSwitch() {
+      if (this.autoSwitchTimer) {
+        console.log("清除现有定时器");
+        clearInterval(this.autoSwitchTimer);
+        this.autoSwitchTimer = null;
+      }
+    },
+
+    // 处理自动切换
+    async handleAutoSwitch() {
+      console.log("执行自动切换,当前类型:", this.queryType);
+      const newType = this.queryType === "order" ? "product" : "order";
+      await this.switchQueryType(newType);
+      this.$message.info(
+        `已自动切换到${newType === "order" ? "按订单" : "按货品"}查询模式,${
+          this.switchInterval / 1000
+        }秒后下次切换`
+      );
+    },
+
+    // 处理手动切换
+    async handleManualSwitch(type) {
+      if (this.queryType === type || this.isLoading) return;
+
+      console.log("手动切换到:", type);
+      // 更新切换间隔
+      this.switchInterval = this.manualInterval;
+      this.clearAutoSwitch();
+      this.startAutoSwitch();
+
+      await this.switchQueryType(type);
+      this.$message.success(
+        `已切换到${type === "order" ? "按订单" : "按货品"}查询模式,${
+          this.switchInterval / 1000
+        }秒后自动切换`
+      );
+    },
+
+    // 重置切换间隔
+    resetSwitchInterval() {
+      console.log("重置切换间隔");
+      this.switchInterval = this.defaultInterval;
+      this.clearAutoSwitch();
+      this.startAutoSwitch();
+      this.$message.info(`已重置为${this.switchInterval / 1000}秒自动切换`);
+    },
+
+    // 处理搜索
+    handleSearch() {
+      // 根据currentQueryType执行不同的搜索逻辑
+      if (this.queryType === "order") {
+        this.searchByOrder();
+      } else {
+        this.searchByGoods();
+      }
+    },
+
+    // 按订单搜索
+    searchByOrder() {
+      // 实现按订单搜索的逻辑
+      console.log("执行按订单搜索");
+    },
+
+    // 按货品搜索
+    searchByGoods() {
+      // 实现按货品搜索的逻辑
+      console.log("执行按货品搜索");
+    },
   },
 };
 </script>
@@ -353,4 +439,39 @@ export default {
     transition: opacity 0.2s ease;
   }
 }
+
+.production-summary {
+  .query-section {
+    margin-bottom: 20px;
+
+    .query-type-buttons {
+      margin-bottom: 15px;
+
+      .el-button-group {
+        .el-button {
+          padding: 8px 20px;
+
+          &.el-button--primary {
+            background-color: #409eff;
+            border-color: #409eff;
+            color: #fff;
+
+            &:hover {
+              background-color: #66b1ff;
+              border-color: #66b1ff;
+            }
+          }
+
+          &.el-button--default {
+            &:hover {
+              color: #409eff;
+              border-color: #c6e2ff;
+              background-color: #ecf5ff;
+            }
+          }
+        }
+      }
+    }
+  }
+}
 </style>