XMLWAN 2 gadus atpakaļ
vecāks
revīzija
f55c8e631a

+ 8 - 0
src/api/config.js Parādīt failu

@@ -217,3 +217,11 @@ export function changeSettleOpenConfig(params) {
217 217
     params: params
218 218
   })
219 219
 }
220
+
221
+export function changeGoodOutOpen(params) {
222
+  return request({
223
+    url: '/api/changegoodoutopen',
224
+    method: 'Get',
225
+    params: params
226
+  })
227
+}

+ 30 - 1
src/xt_pages/data/basicConfig.vue Parādīt failu

@@ -42,6 +42,9 @@
42 42
             <p style="margin-top:20px;">药品在保存处方时出库:
43 43
                 <el-switch v-model="drug_out_open" @change="changeDrugOpen"></el-switch>
44 44
             </p>
45
+             <p style="margin-top:20px;">耗材在保存处方时出库:
46
+                <el-switch v-model="good_out_open" @change="changeGoodOutOpen"></el-switch>
47
+            </p>
45 48
 
46 49
             <p style="margin-top:20px;">药品耗材在结算时出库:
47 50
                 <el-switch v-model="drug_settle_open" @change="changeSettleOpen"></el-switch>
@@ -101,7 +104,7 @@
101 104
 
102 105
 <script>
103 106
 import BreadCrumb from "@/xt_pages/components/bread-crumb";
104
-import { getAllIsOpenInit,postXtHisIsOpen,postMonitorIsOpen,changeFuncPrint,getDataPrintList,postXtHisProjectIsOpen,changeStockSetting,changeAdviceConfig,changePrescriptionConfig,changeDrugOpenConfig,changeSettleOpenConfig} from '@/api/config'
107
+import { getAllIsOpenInit,postXtHisIsOpen,postMonitorIsOpen,changeFuncPrint,getDataPrintList,postXtHisProjectIsOpen,changeStockSetting,changeAdviceConfig,changePrescriptionConfig,changeDrugOpenConfig,changeSettleOpenConfig,changeGoodOutOpen} from '@/api/config'
105 108
 
106 109
 export default {
107 110
   name: "printTemplate",
@@ -124,6 +127,7 @@ export default {
124 127
       is_open_prescription_xt_his:false,
125 128
       drug_out_open:false,
126 129
       drug_settle_open:false,
130
+      good_out_open:false,
127 131
     };
128 132
   },
129 133
   methods: {
@@ -175,6 +179,12 @@ export default {
175 179
               this.drug_settle_open = false
176 180
             }
177 181
 
182
+            if(response.data.data.is_out_open == 1){
183
+              this.good_out_open = true
184
+            }else{
185
+              this.good_out_open = false
186
+            }
187
+
178 188
           } else {
179 189
             this.$message.error(response.data.msg)
180 190
           }
@@ -435,7 +445,26 @@ export default {
435 445
             this.getInitIsOpenConfig()
436 446
           }
437 447
       })
448
+    },
449
+    
450
+    changeGoodOutOpen(){
451
+      var good_open = 0
452
+      if(this.good_out_open == false){
453
+        good_open = 2
454
+      }
455
+      if(this.good_out_open == true){
456
+         good_open = 1
457
+      }
458
+      var params= {
459
+        good_open:good_open,
460
+      }
461
+      changeGoodOutOpen(params).then(response=>{
462
+        if(response.data.state == 1){
463
+          this.$message.success("保存成功!")
464
+        }
465
+      })
438 466
     }
467
+    
439 468
 
440 469
   },
441 470
   created() {

+ 2 - 2
src/xt_pages/dialysis/details/DialysisPrescription.vue Parādīt failu

@@ -142,8 +142,8 @@
142 142
           <label>目标超滤量 : </label>
143 143
           <span class="content">{{ target_ultrafiltration != "0" ? target_ultrafiltration : ""}}</span>
144 144
           
145
-          <span v-if="this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.template_id != 32 && this.$store.getters.xt_user.template_info.template_id != 34 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.template_id != 40 && this.$store.getters.xt_user.template_info.template_id != 43 && this.$store.getters.xt_user.template_info.template_id != 45  && this.$store.getters.xt_user.template_info.template_id != 46  && this.$store.getters.xt_user.template_info.template_id != 48 && this.$store.getters.xt_user.template_info.org_id != 9555  && this.$store.getters.xt_user.template_info.org_id != 10345  && this.$store.getters.xt_user.template_info.org_id != 10346  && this.$store.getters.xt_user.template_info.org_id != 10395  && this.$store.getters.xt_user.template_info.template_id!=60  && this.$store.getters.xt_user.template_info.org_id != 10340  && this.$store.getters.xt_user.template_info.org_id != 10430 && this.$store.getters.xt_user.template_info.org_id != 10432"  class="unit">{{ target_ultrafiltration != "0" ? "L" : "" }}</span>
146
-          <span v-if="this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.template_id == 32 || this.$store.getters.xt_user.template_info.template_id == 34 || this.$store.getters.xt_user.template_info.template_id == 38 || this.$store.getters.xt_user.template_info.template_id == 40 || this.$store.getters.xt_user.template_info.template_id == 43 || this.$store.getters.xt_user.template_info.template_id == 45 || this.$store.getters.xt_user.template_info.template_id == 46  || this.$store.getters.xt_user.template_info.template_id == 48 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10345  || this.$store.getters.xt_user.template_info.org_id == 10346  || this.$store.getters.xt_user.template_info.org_id == 10395 || this.$store.getters.xt_user.template_info.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 10430 || this.$store.getters.xt_user.template_info.org_id == 10432" class="unit">{{ target_ultrafiltration != "0" ? "ml" : "" }}</span>
145
+          <span v-if="this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.template_id != 32 && this.$store.getters.xt_user.template_info.template_id != 34 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.template_id != 40 && this.$store.getters.xt_user.template_info.template_id != 43 && this.$store.getters.xt_user.template_info.template_id != 45  && this.$store.getters.xt_user.template_info.template_id != 46  && this.$store.getters.xt_user.template_info.template_id != 48 && this.$store.getters.xt_user.template_info.org_id != 9555  && this.$store.getters.xt_user.template_info.org_id != 10345  && this.$store.getters.xt_user.template_info.org_id != 10346  && this.$store.getters.xt_user.template_info.org_id != 10395  && this.$store.getters.xt_user.template_info.template_id!=60  && this.$store.getters.xt_user.template_info.org_id != 10340  && this.$store.getters.xt_user.template_info.org_id != 10430 && this.$store.getters.xt_user.template_info.org_id != 10432  && this.$store.getters.xt_user.template_info.org_id != 10441"  class="unit">{{ target_ultrafiltration != "0" ? "L" : "" }}</span>
146
+          <span v-if="this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.template_id == 32 || this.$store.getters.xt_user.template_info.template_id == 34 || this.$store.getters.xt_user.template_info.template_id == 38 || this.$store.getters.xt_user.template_info.template_id == 40 || this.$store.getters.xt_user.template_info.template_id == 43 || this.$store.getters.xt_user.template_info.template_id == 45 || this.$store.getters.xt_user.template_info.template_id == 46  || this.$store.getters.xt_user.template_info.template_id == 48 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10345  || this.$store.getters.xt_user.template_info.org_id == 10346  || this.$store.getters.xt_user.template_info.org_id == 10395 || this.$store.getters.xt_user.template_info.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 10430 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id==10441" class="unit">{{ target_ultrafiltration != "0" ? "ml" : "" }}</span>
147 147
         </li>
148 148
 
149 149
          <li v-if="isShow('目标超滤量') && this.$store.getters.xt_user.template_info.org_id == 10290">

+ 2 - 2
src/xt_pages/dialysis/details/assessmentAfter.vue Parādīt failu

@@ -17,8 +17,8 @@
17 17
           <span class="content" v-if="actual_ultrafiltration != '0'">{{
18 18
             actual_ultrafiltration
19 19
           }}</span>
20
-          <span class="unit" v-if=" actual_ultrafiltration != '0' && (this.$store.getters.xt_user.template_info.template_id == 6 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.template_id == 32 || this.$store.getters.xt_user.template_info.template_id == 34 || this.$store.getters.xt_user.template_info.template_id == 36 || this.$store.getters.xt_user.template_info.template_id == 38 || this.$store.getters.xt_user.template_info.template_id == 43 || this.$store.getters.xt_user.template_info.template_id == 44 || this.$store.getters.xt_user.template_info.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10340 ||  this.$store.getters.xt_user.template_info.org_id == 10387 ||  this.$store.getters.xt_user.template_info.org_id == 10430 ||  this.$store.getters.xt_user.template_info.org_id == 10432 ) " >ml</span>
21
-          <span class="unit" v-if=" actual_ultrafiltration != '0' && this.$store.getters.xt_user.template_info.template_id != 6 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.template_id != 32 && this.$store.getters.xt_user.template_info.template_id != 34 && this.$store.getters.xt_user.template_info.template_id != 36 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.template_id != 43 && this.$store.getters.xt_user.template_info.template_id != 44 && this.$store.getters.xt_user.template_info.template_id != 60 &&  this.$store.getters.xt_user.template_info.org_id != 9555  && this.$store.getters.xt_user.template_info.org_id != 10340 &&  this.$store.getters.xt_user.template_info.org_id!= 10387 &&  this.$store.getters.xt_user.template_info.org_id!= 10430 &&  this.$store.getters.xt_user.template_info.org_id!= 10432"  >L</span>
20
+          <span class="unit" v-if=" actual_ultrafiltration != '0' && (this.$store.getters.xt_user.template_info.template_id == 6 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22 || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28 || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.template_id == 32 || this.$store.getters.xt_user.template_info.template_id == 34 || this.$store.getters.xt_user.template_info.template_id == 36 || this.$store.getters.xt_user.template_info.template_id == 38 || this.$store.getters.xt_user.template_info.template_id == 43 || this.$store.getters.xt_user.template_info.template_id == 44 || this.$store.getters.xt_user.template_info.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10340 ||  this.$store.getters.xt_user.template_info.org_id == 10387 ||  this.$store.getters.xt_user.template_info.org_id == 10430 ||  this.$store.getters.xt_user.template_info.org_id == 10432 ||  this.$store.getters.xt_user.template_info.org_id == 10441 ) " >ml</span>
21
+          <span class="unit" v-if=" actual_ultrafiltration != '0' && this.$store.getters.xt_user.template_info.template_id != 6 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.template_id != 32 && this.$store.getters.xt_user.template_info.template_id != 34 && this.$store.getters.xt_user.template_info.template_id != 36 && this.$store.getters.xt_user.template_info.template_id != 38 && this.$store.getters.xt_user.template_info.template_id != 43 && this.$store.getters.xt_user.template_info.template_id != 44 && this.$store.getters.xt_user.template_info.template_id != 60 &&  this.$store.getters.xt_user.template_info.org_id != 9555  && this.$store.getters.xt_user.template_info.org_id != 10340 &&  this.$store.getters.xt_user.template_info.org_id!= 10387 &&  this.$store.getters.xt_user.template_info.org_id!= 10430 &&  this.$store.getters.xt_user.template_info.org_id!= 10432 &&  this.$store.getters.xt_user.template_info.org_id!= 10441"  >L</span>
22 22
         </li>
23 23
         <li v-if="isShow('导管')">
24 24
           <label>导管 : </label>

+ 1 - 1
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue Parādīt failu

@@ -28,7 +28,7 @@
28 28
           <el-col :span="8" v-if="isShow('实际超滤量')">
29 29
             <el-form-item
30 30
               label="实际超滤量(ml): "
31
-              v-if=" this.template_id == 6 || this.template_id == 9 || this.template_id == 10 || this.template_id == 11  || this.template_id == 17 || this.template_id == 20 || this.template_id == 21 || this.template_id == 22 || this.template_id == 23 || this.template_id == 24 || this.template_id == 26 || this.template_id == 28 || this.template_id == 27 || this.template_id == 29 || this.template_id == 30 || this.template_id == 31 || this.template_id == 32 || this.template_id == 34 || this.template_id == 36 || this.template_id == 38 || this.template_id == 43 || this.template_id == 44 || this.template_id == 47 || this.template_id == 56 || this.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10307 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10387 || this.$store.getters.xt_user.template_info.org_id == 10430 || this.$store.getters.xt_user.template_info.org_id == 10432"  >
31
+              v-if=" this.template_id == 6 || this.template_id == 9 || this.template_id == 10 || this.template_id == 11  || this.template_id == 17 || this.template_id == 20 || this.template_id == 21 || this.template_id == 22 || this.template_id == 23 || this.template_id == 24 || this.template_id == 26 || this.template_id == 28 || this.template_id == 27 || this.template_id == 29 || this.template_id == 30 || this.template_id == 31 || this.template_id == 32 || this.template_id == 34 || this.template_id == 36 || this.template_id == 38 || this.template_id == 43 || this.template_id == 44 || this.template_id == 47 || this.template_id == 56 || this.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10307 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10387 || this.$store.getters.xt_user.template_info.org_id == 10430 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10441"  >
32 32
               <el-input v-model="form.actual_ultrafiltration"></el-input>
33 33
             </el-form-item>
34 34
             <el-form-item label="实际超滤量(L): " v-else>

+ 2 - 2
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue Parādīt failu

@@ -95,7 +95,7 @@
95 95
                     </el-col>
96 96
 
97 97
                     <el-col :span="8"
98
-                            v-if="isShows('目标超滤量') && (this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22  || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28  || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.template_id == 32 || this.$store.getters.xt_user.template_info.template_id == 34 || this.$store.getters.xt_user.template_info.template_id == 38 ||  this.$store.getters.xt_user.template_info.template_id == 40 ||  this.$store.getters.xt_user.template_info.template_id == 43 ||  this.$store.getters.xt_user.template_info.template_id == 45  ||  this.$store.getters.xt_user.template_info.template_id == 46 ||  this.$store.getters.xt_user.template_info.template_id == 48 ||  this.$store.getters.xt_user.template_info.template_id == 56 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10345 || this.$store.getters.xt_user.template_info.org_id == 10346 || this.$store.getters.xt_user.template_info.org_id == 10249 || this.$store.getters.xt_user.template_info.org_id == 10395 ||this.$store.getters.xt_user.template_info.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 10430 || this.$store.getters.xt_user.template_info.org_id == 10432)">
98
+                            v-if="isShows('目标超滤量') && (this.$store.getters.xt_user.template_info.template_id == 17 || this.$store.getters.xt_user.template_info.template_id == 9 || this.$store.getters.xt_user.template_info.template_id == 20 || this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 22  || this.$store.getters.xt_user.template_info.template_id == 23 || this.$store.getters.xt_user.template_info.template_id == 24 || this.$store.getters.xt_user.template_info.template_id == 26 || this.$store.getters.xt_user.template_info.template_id == 28  || this.$store.getters.xt_user.template_info.template_id == 27 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id == 30 || this.$store.getters.xt_user.template_info.template_id == 31 || this.$store.getters.xt_user.template_info.template_id == 32 || this.$store.getters.xt_user.template_info.template_id == 34 || this.$store.getters.xt_user.template_info.template_id == 38 ||  this.$store.getters.xt_user.template_info.template_id == 40 ||  this.$store.getters.xt_user.template_info.template_id == 43 ||  this.$store.getters.xt_user.template_info.template_id == 45  ||  this.$store.getters.xt_user.template_info.template_id == 46 ||  this.$store.getters.xt_user.template_info.template_id == 48 ||  this.$store.getters.xt_user.template_info.template_id == 56 || this.$store.getters.xt_user.template_info.org_id == 9555 || this.$store.getters.xt_user.template_info.org_id == 10345 || this.$store.getters.xt_user.template_info.org_id == 10346 || this.$store.getters.xt_user.template_info.org_id == 10249 || this.$store.getters.xt_user.template_info.org_id == 10395 ||this.$store.getters.xt_user.template_info.template_id == 60 || this.$store.getters.xt_user.template_info.org_id == 10340 || this.$store.getters.xt_user.template_info.org_id == 10430 || this.$store.getters.xt_user.template_info.org_id == 10432 || this.$store.getters.xt_user.template_info.org_id == 10441)">
99 99
                         <el-form-item label="目标超滤量(ml):">
100 100
                             <el-input
101 101
                                     type="number"
@@ -106,7 +106,7 @@
106 106
 
107 107
 
108 108
                     <el-col :span="8"
109
-                            v-if="isShows('目标超滤量')  && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.template_id != 32 && this.$store.getters.xt_user.template_info.template_id != 34 && this.$store.getters.xt_user.template_info.template_id != 38 &&  this.$store.getters.xt_user.template_info.template_id != 40 &&  this.$store.getters.xt_user.template_info.template_id != 43 &&  this.$store.getters.xt_user.template_info.template_id != 45 &&  this.$store.getters.xt_user.template_info.template_id != 46  &&  this.$store.getters.xt_user.template_info.template_id != 48 &&  this.$store.getters.xt_user.template_info.template_id != 56 && this.$store.getters.xt_user.template_info.org_id != 9555 &&  this.$store.getters.xt_user.template_info.org_id != 10345 &&  this.$store.getters.xt_user.template_info.org_id != 10346 && this.$store.getters.xt_user.template_info.org_id != 10249 &&  this.$store.getters.xt_user.template_info.org_id != 10395 &&  this.$store.getters.xt_user.template_info.template_id != 60 &&  this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id != 10430 && this.$store.getters.xt_user.template_info.org_id != 10432">
109
+                            v-if="isShows('目标超滤量')  && this.$store.getters.xt_user.template_info.template_id != 17 && this.$store.getters.xt_user.template_info.template_id != 9 && this.$store.getters.xt_user.template_info.template_id != 20 && this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 22 && this.$store.getters.xt_user.template_info.template_id != 23 && this.$store.getters.xt_user.template_info.template_id != 24 && this.$store.getters.xt_user.template_info.template_id != 26 && this.$store.getters.xt_user.template_info.template_id != 28 && this.$store.getters.xt_user.template_info.template_id != 27 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id != 30 && this.$store.getters.xt_user.template_info.template_id != 31 && this.$store.getters.xt_user.template_info.template_id != 32 && this.$store.getters.xt_user.template_info.template_id != 34 && this.$store.getters.xt_user.template_info.template_id != 38 &&  this.$store.getters.xt_user.template_info.template_id != 40 &&  this.$store.getters.xt_user.template_info.template_id != 43 &&  this.$store.getters.xt_user.template_info.template_id != 45 &&  this.$store.getters.xt_user.template_info.template_id != 46  &&  this.$store.getters.xt_user.template_info.template_id != 48 &&  this.$store.getters.xt_user.template_info.template_id != 56 && this.$store.getters.xt_user.template_info.org_id != 9555 &&  this.$store.getters.xt_user.template_info.org_id != 10345 &&  this.$store.getters.xt_user.template_info.org_id != 10346 && this.$store.getters.xt_user.template_info.org_id != 10249 &&  this.$store.getters.xt_user.template_info.org_id != 10395 &&  this.$store.getters.xt_user.template_info.template_id != 60 &&  this.$store.getters.xt_user.template_info.org_id != 10340 && this.$store.getters.xt_user.template_info.org_id != 10430 && this.$store.getters.xt_user.template_info.org_id != 10432 && this.$store.getters.xt_user.template_info.org_id!=10441">
110 110
                         <el-form-item label="目标超滤量(L):">
111 111
                             <el-input
112 112
                                     type="number"

+ 21 - 12
src/xt_pages/stock/drugs/drugStockOutOrder.vue Parādīt failu

@@ -292,7 +292,7 @@
292 292
 
293 293
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
294 294
                   <td style="border-right: none; border-inline-end:none;text-align: center">
295
-                    <span v-if="is_sys==1">{{getOutCountSix(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)}}</span>
295
+                    <span v-if="is_sys==1 || is_sys == 5">{{getOutCountSix(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)}}</span>
296 296
                     <!-- <span v-if="is_sys == 1"> {{getOutCount(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span> -->
297 297
                     <span v-if="is_sys == 0"> {{getOutCountOne(item.batch_number,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}} </span>
298 298
                   </td>
@@ -303,7 +303,7 @@
303 303
             <template slot-scope="scope">
304 304
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
305 305
                   <td style="border-right: none; border-inline-end:none;text-align: center">
306
-                    <span v-if="is_sys == 1">{{getBatchNumber(item.warehousing_detail_id)}}</span> 
306
+                    <span v-if="is_sys == 1 || is_sys == 5">{{getBatchNumber(item.warehousing_detail_id)}}</span> 
307 307
                     <span v-if="is_sys == 0">{{getBatchNumberOne(item.batch_number)}}</span>
308 308
                   </td>
309 309
                </tr>
@@ -322,7 +322,7 @@
322 322
             <template slot-scope="scope">
323 323
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
324 324
                   <td style="border-right: none; border-inline-end: none;text-align: center">
325
-                    <span v-if="is_sys == 1">{{getPrice(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span> 
325
+                    <span v-if="is_sys == 1 || is_sys == 5">{{getPrice(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span> 
326 326
                     <span v-if="is_sys == 0">
327 327
                       <span v-if="scope.row.child.length == 1">
328 328
                          {{getPriceTwo(item.warehouse_out_id,item.drug_id)}}
@@ -341,7 +341,7 @@
341 341
             <template slot-scope="scope">
342 342
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
343 343
                   <td style="border-right: none; border-inline-end: none;text-align: center">
344
-                    <span v-if="is_sys == 1">{{getTotalPrice(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
344
+                    <span v-if="is_sys == 1 || is_sys == 5">{{getTotalPrice(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
345 345
                     <span v-if="is_sys == 0">
346 346
                       <span v-if="scope.row.child.length == 1">{{item.retail_price}}</span> 
347 347
                       <span v-if="scope.row.child.length > 1">{{item.count * item.price}}</span> 
@@ -355,7 +355,7 @@
355 355
             <template slot-scope="scope">
356 356
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
357 357
                   <td style="border-right: none; border-inline-end: none;text-align: center">
358
-                    <span v-if="is_sys == 1"> {{getAllManufacturerName(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
358
+                    <span v-if="is_sys == 1 || is_sys == 5"> {{getAllManufacturerName(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
359 359
                     <span v-if="is_sys == 0"> {{getManufacturerName(scope.row.manufacturer)}}</span>
360 360
                   </td>
361 361
                </tr>
@@ -365,7 +365,7 @@
365 365
             <template slot-scope="scope">
366 366
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
367 367
                   <td style="border-right: none; border-inline-end: none;text-align: center">
368
-                    <span v-if="is_sys == 1"> {{getProductDate(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
368
+                    <span v-if="is_sys == 1 || is_sys == 5"> {{getProductDate(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
369 369
                     <span v-if="is_sys == 0"> {{getTime(scope.row.product_date)}}</span>
370 370
                   </td>
371 371
                </tr>
@@ -375,7 +375,7 @@
375 375
             <template slot-scope="scope">
376 376
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
377 377
                   <td style="border-right: none; border-inline-end: none;text-align: center">
378
-                   <span v-if="is_sys == 1"> {{getExpiryDate(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
378
+                   <span v-if="is_sys == 1 || is_sys == 5"> {{getExpiryDate(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
379 379
                    <span v-if="is_sys == 0"> {{getTime(scope.row.expiry_date)}}</span>
380 380
                   </td>
381 381
                </tr>
@@ -385,7 +385,7 @@
385 385
             <template slot-scope="scope">
386 386
                 <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
387 387
                   <td style="border-right: none; border-inline-end: none;text-align: center">
388
-                    <span v-if="is_sys ==1">{{getDealer(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
388
+                    <span v-if="is_sys ==1 || is_sys ==5">{{getDealer(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
389 389
                     <span v-if="is_sys ==0">{{getDealerName(scope.row.dealer)}}</span>  
390 390
                   </td>
391 391
                </tr>
@@ -395,7 +395,7 @@
395 395
             <template slot-scope="scope">
396 396
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
397 397
                   <td style="border-right: none; border-inline-end: none;text-align: center">
398
-                    <span v-if="is_sys == 1">{{getNumber(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span> 
398
+                    <span v-if="is_sys == 1 || is_sys == 5">{{getNumber(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span> 
399 399
                     <span v-if="is_sys == 0">{{scope.row.number}}</span> 
400 400
                   </td>
401 401
                </tr>
@@ -405,7 +405,7 @@
405 405
             <template slot-scope="scope">
406 406
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
407 407
                   <td style="border-right: none; border-inline-end: none;text-align: center">
408
-                    <span v-if="is_sys == 1">{{getRemark(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
408
+                    <span v-if="is_sys == 1 || is_sys == 5">{{getRemark(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}</span>
409 409
                     <span v-if="is_sys == 0">{{scope.row.remark}}</span>
410 410
                   </td>
411 411
                </tr>
@@ -878,6 +878,10 @@ export default {
878 878
     },
879 879
 
880 880
     handleDelete: function (index, row) {
881
+      if (row.is_sys == 5) {
882
+        this.$message.error("结算出库数据不能删除!");
883
+        return;
884
+      }
881 885
       if (row.is_sys == 12) {
882 886
         this.$message.error("调拨出库数据不能删除!");
883 887
         return;
@@ -965,6 +969,11 @@ export default {
965 969
           this.$message.error("调拨出库数据不能删除!");
966 970
           return false;
967 971
         }
972
+        if (this.selectedTableData[i].is_sys == 5) {
973
+          this.$message.error("结算出库数据不能删除!");
974
+          return false;
975
+        }
976
+      
968 977
         if (this.selectedTableData[i].is_sys == 0) {
969 978
           ids.push(this.selectedTableData[i].id);
970 979
           if(this.selectedTableData[i].supply_cancel_out_id >0){
@@ -1227,7 +1236,7 @@ export default {
1227 1236
             this.drugFlowList = drugFlowList;
1228 1237
           }
1229 1238
 
1230
-          if (is_sys == 0 || is_sys == 12) {
1239
+          if (is_sys == 0 || is_sys == 12 || is_sys == 5) {
1231 1240
             var flowlist = response.data.data.flowlist;
1232 1241
             this.drugFlowList = [];
1233 1242
             for (let i = 0; i < flowlist.length; i++) {
@@ -1305,7 +1314,7 @@ export default {
1305 1314
           if (val.is_sys == 1) {
1306 1315
             this.drugDialogVisible = true;
1307 1316
           }
1308
-          if (val.is_sys == 0 || val.is_sys == 12) {
1317
+          if (val.is_sys == 0 || val.is_sys == 12 || val.is_sys == 5) {
1309 1318
             this.drugDialogVisibleTwo = true;
1310 1319
           }
1311 1320
           var userListOne = response.data.data.outList;

+ 9 - 1
src/xt_pages/stock/drugs/drugStockOutOrderEdit.vue Parādīt failu

@@ -626,6 +626,10 @@ export default {
626 626
         this.$message.error("调拨出库数据不能新增!");
627 627
         return;
628 628
       }
629
+      if (parseInt(this.$route.query.is_sys) == 5) {
630
+        this.$message.error("结算出库数据不能新增!");
631
+        return;
632
+      }
629 633
       if (row.supply_cancel_out_id > 0) {
630 634
         this.$message.error("采购出库数据不能新增!");
631 635
         return;
@@ -667,6 +671,10 @@ export default {
667 671
         this.$message.error("调拨出库数据不能删除!");
668 672
         return;
669 673
       }
674
+      if (parseInt(this.$route.query.is_sys) == 5) {
675
+        this.$message.error("结算出库数据不能删除!");
676
+        return;
677
+      }
670 678
      if(parseInt(this.$route.query.is_check) == 1){
671 679
         this.$message.error("已审核的单据不能删除!")
672 680
         return false
@@ -1294,7 +1302,7 @@ export default {
1294 1302
     if (sys == 1) {
1295 1303
       this.drug_show = true;
1296 1304
     }
1297
-    if (sys == 12) {
1305
+    if (sys == 12 || sys==5) {
1298 1306
       this.drug_show = true;
1299 1307
     }
1300 1308
     if (parseInt(this.$route.query.supply_cancel_out_id) > 0 || parseInt(this.$route.query.is_check) == 1) {

+ 17 - 4
src/xt_pages/stock/stockOutOrder.vue Parādīt failu

@@ -177,6 +177,7 @@
177 177
             <span v-if="scope.row.is_sys == 1">自动出库</span>
178 178
             <span v-if="scope.row.is_sys == 0">手动出库</span>
179 179
             <span v-if="scope.row.is_sys == 12">调拨出库</span>
180
+            <span v-if="scope.row.is_sys == 5">结算出库</span>
180 181
           </template>
181 182
         </el-table-column>
182 183
 
@@ -232,6 +233,8 @@
232 233
         :total="total"
233 234
       >
234 235
       </el-pagination>
236
+
237
+
235 238
       <!--  详情 -->
236 239
       <div v-show="tableShow" style="margin-top: 10px">
237 240
         <el-table
@@ -412,7 +415,7 @@
412 415
               <span
413 416
                 style="color: #589ff8"
414 417
                 @click="GetOrderDetailById(scope.row)"
415
-                >使用明细</span
418
+                >使用明细222</span
416 419
               >
417 420
             </template>
418 421
           </el-table-column>
@@ -1043,6 +1046,7 @@ export default {
1043 1046
         { id: 1, name: "手动出库" },
1044 1047
         { id: 2, name: "自动出库" },
1045 1048
         { id: 3, name: "调拨出库" },
1049
+        { id: 5, name:"结算出库"  }
1046 1050
       ],
1047 1051
       check_type:0,
1048 1052
       checkList:[
@@ -1265,6 +1269,10 @@ export default {
1265 1269
         this.$message.error("调拨出库数据不能删除!");
1266 1270
         return false;
1267 1271
       }
1272
+     if (row.is_sys == 5) {
1273
+        this.$message.error("结算出库数据不能删除!");
1274
+        return false;
1275
+      }
1268 1276
       if (row.supply_cancel_out_id > 0) {
1269 1277
         this.$message.error("采购出库数据不能删除!");
1270 1278
         return false;
@@ -1339,6 +1347,7 @@ export default {
1339 1347
       const ids = [];
1340 1348
       const idOne = [];
1341 1349
       for (let i = 0; i < this.selectedTableData.length; i++) {
1350
+         
1342 1351
         if(this.selectedTableData[i].is_check == 1){
1343 1352
           this.$message.error("已审核单据不能删除!")
1344 1353
           return false
@@ -1347,6 +1356,10 @@ export default {
1347 1356
           this.$message.error("自动出库数据不能删除!");
1348 1357
           return false;
1349 1358
         }
1359
+        if (this.selectedTableData[i].is_sys == 5) {
1360
+          this.$message.error("结算出库数据不能删除!");
1361
+          return false;
1362
+        }
1350 1363
         if (this.selectedTableData[i].is_sys == 12) {
1351 1364
           this.$message.error("调拨出库数据不能删除!");
1352 1365
           return false;
@@ -1399,7 +1412,7 @@ export default {
1399 1412
     },
1400 1413
 
1401 1414
     handleSearch(val) {
1402
-      console.log("val322332232332i",val)
1415
+    
1403 1416
       this.is_sys = val.is_sys;
1404 1417
       this.tableList = [];
1405 1418
       this.editdialogVisibleThree = false;
@@ -1963,7 +1976,7 @@ export default {
1963 1976
             }
1964 1977
             
1965 1978
           }
1966
-          console.log("user_list23322323232323",this.userList)
1979
+         
1967 1980
           this.userList.push({
1968 1981
             is_total: 1,
1969 1982
             total: total,
@@ -1971,7 +1984,7 @@ export default {
1971 1984
           if (val.is_sys == 1) {
1972 1985
             this.editdialogVisibleThree = true;
1973 1986
           }
1974
-          if (val.is_sys == 0) {
1987
+          if (val.is_sys == 0 || val.is_sys == 5) {
1975 1988
             this.editdialogVisibleTwo = true;
1976 1989
           }
1977 1990
           }

+ 8 - 0
src/xt_pages/stock/stockOutOrderEdit.vue Parādīt failu

@@ -481,6 +481,10 @@
481 481
         return name;
482 482
       },
483 483
       handleEdit: function(index, row) {
484
+      if(parseInt(this.$route.query.is_sys) == 5){
485
+         this.$message.error("结算出库数据不能新增!")
486
+          return
487
+       }
484 488
        if(parseInt(this.$route.query.is_sys) == 12){
485 489
          this.$message.error("调拨出库数据不能新增!")
486 490
           return
@@ -519,6 +523,10 @@
519 523
        if(parseInt(this.$route.query.is_sys) == 12){
520 524
          this.$message.error("调拨出库数据不能删除!")
521 525
           return
526
+       }
527
+       if(parseInt(this.$route.query.is_sys) == 5){
528
+         this.$message.error("结算出库数据不能删除!")
529
+          return
522 530
        }
523 531
         if(row.supply_cancel_out_id >0){
524 532
           this.$message.error("采购出库数据不能删除!")