snow 1 year ago
parent
commit
1fb568f310

+ 1 - 1
src/views/sellOut/filing/config/columns.js

@@ -1087,7 +1087,7 @@ const ruleForm = {
   supply_area: "",
   pay_way: "",
   send_way: "0",
-  preservation_day: "1", //有效期
+  preservation_day: 1, //有效期
   delivery_day: "0", //物流时间
   make_day: "0", //生产工期
   gold_weight: "0.000",

+ 3 - 0
src/views/sellOut/filing/cpns/baseForm.vue

@@ -1105,6 +1105,9 @@ export default {
 
           if (this.type === "add") {
             this.ruleForm.customerCode = this.currentCompany;
+            this.$nextTick(() => {
+              this.ruleForm.preservation_day = 1;
+            });
           } else if (this.type === "edit") {
             this.loading = true;
             const { code, data } = await asyncRequest.detail({

+ 14 - 2
src/views/sellOut/filing/detail.vue

@@ -1,10 +1,9 @@
 <template>
   <div v-loading="loading" class="report-detail__container">
     <el-tabs v-model="activeTabs">
-      <el-tab-pane name="1" :label="title">
+      <el-tab-pane name="1" :label="type === 'add' ? '新建报备单' : '报备单详情'">
         <el-collapse v-model="collapses">
           <el-collapse-item v-if="type === 'add' || type === 'edit'" name="1" :title="title">
-            {{sitem.status}}
             <base-form :id="id" :type="type" />
           </el-collapse-item>
 
@@ -34,6 +33,19 @@
           </el-collapse-item>
         </el-collapse>
       </el-tab-pane>
+
+      <el-tab-pane label="审批记录" name="2">
+        <process-time-line
+          v-if="newTime !== '' && id"
+          :newTime="newTime"
+          :type="'BBD'"
+          :orderCode="id"
+        />
+      </el-tab-pane>
+
+      <el-tab-pane label="流程图" name="3">
+        <flow-chart process_id="28" type="BBD" :orderCode="id" />
+      </el-tab-pane>
     </el-tabs>
   </div>
 </template>

+ 1 - 2
src/views/sellOut/filing/index.vue

@@ -203,14 +203,13 @@
           />
         </el-tooltip>
 
-        <!-- TODO:未开通供应商端账号可以在这里取消 -->
         <el-tooltip effect="dark" content="取消转单" placement="top">
           <i
             v-if="
               String(scope.row.status) !== '4' 
               && String(scope.row.status) !== '5' 
               && Number(scope.row.wsm_has_account) === 0
-              && _process.includes('5')
+              && powers.includes('005')
             "
             class="el-icon-refresh-right tb-icon"
             @click="handleCancel(scope.row.id)"

+ 4 - 0
src/views/supplierSellOut/supplierFiling/cpns/baseForm.vue

@@ -1106,6 +1106,10 @@ export default {
             this.supplierNosearchChange(
               this.getCompanyWithCode(this.currentCompany)
             );
+
+            this.$nextTick(() => {
+              this.ruleForm.preservation_day = 1;
+            });
             // this.ruleForm.customerCode = this.currentCompany;
           } else if (this.type === "edit") {
             this.loading = true;

+ 14 - 1
src/views/supplierSellOut/supplierFiling/detail.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="report-detail__container">
     <el-tabs v-model="activeTabs" v-loading="loading">
-      <el-tab-pane name="1" :label="title">
+      <el-tab-pane name="1" :label="type === 'add' ? '报备单详情' : '新建报备单'">
         <el-collapse v-model="collapses">
           <el-collapse-item v-if="type === 'add'" name="1" :title="title">
             <base-form :id="id" :type="type" />
@@ -28,6 +28,19 @@
           </tempalte>
         </el-collapse>
       </el-tab-pane>
+
+      <el-tab-pane label="审批记录" name="2">
+        <process-time-line
+          v-if="newTime !== '' && id"
+          :newTime="newTime"
+          :type="'BBD'"
+          :orderCode="id"
+        />
+      </el-tab-pane>
+
+      <el-tab-pane label="流程图" name="3">
+        <flow-chart process_id="28" type="BBD" :orderCode="id" />
+      </el-tab-pane>
     </el-tabs>
   </div>
 </template>

+ 1 - 1
src/views/supplierSellOut/supplierFiling/index.vue

@@ -204,7 +204,7 @@
 
         <el-tooltip effect="dark" content="取消转单" placement="top">
           <i
-            v-if="String(scope.row.status) !== '4' && String(scope.row.status) !== '5' && _process.includes('5')"
+            v-if="String(scope.row.status) !== '4' && String(scope.row.status) !== '5' && powers.includes('005')"
             class="el-icon-refresh-right tb-icon"
             @click="handleCancel(scope.row.id)"
           ></i>