Browse Source

11月14日 库存扣减更新

XMLWAN 3 years ago
parent
commit
a469ebe3b3

+ 7 - 0
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue View File

@@ -540,6 +540,13 @@
540 540
                           >
541 541
                             血浆胆红素吸附
542 542
                           </div>
543
+                          <div
544
+                            class="under_line"
545
+                            style="width: 100px;text-align: center;font-weight:600;"
546
+                            v-if="record.prescription.mode_id == 29"
547
+                          >
548
+                            PE
549
+                          </div>
543 550
                         </div>
544 551
                       </div>
545 552
 

+ 18 - 3
src/xt_pages/dialysis/batch_print/batch_print_order_twentyEight.vue View File

@@ -868,7 +868,7 @@
868 868
                                 </div>
869 869
                             </td>
870 870
                             <td width="35">min</td>
871
-                            <td width="60">去向</td>
871
+                            <!-- <td width="60">去向</td>
872 872
                             <td width="200">
873 873
                             <div style="display:flex;justify-content:space-between;">
874 874
                                 <label-box :isChecked="record.assessment_after_dislysis.patient_gose == 1 ? true : false" showValue="回家"></label-box>
@@ -878,11 +878,26 @@
878 878
                              </td>
879 879
                               <td>
880 880
                                  <div class="under-line">&nbsp;</div>
881
-                              </td>
881
+                              </td> -->
882 882
                             </tr>
883 883
                             </tbody>
884 884
                         </table>
885
-                      
885
+                         <table>
886
+                           <tbody>
887
+                             <tr>
888
+                              <td width="60">去向:</td>
889
+                              <td width="300">
890
+                                <div style="display:flex;justify-content:space-between;">
891
+                                  <label-box :isChecked="record.assessment_after_dislysis.patient_gose == 1 ? true : false" showValue="离院"></label-box>
892
+                                  <label-box :isChecked="record.assessment_after_dislysis.patient_gose == 2 ? true : false" showValue="留观"></label-box>
893
+                                  <label-box :isChecked="record.assessment_after_dislysis.patient_gose == 3 ? true : false" showValue="住院"></label-box>
894
+                                  <label-box :isChecked="record.assessment_after_dislysis.patient_gose == 4 ? true : false" showValue="门诊"></label-box>
895
+                              </div>
896
+                              </td> 
897
+                              <td></td>
898
+                             </tr>
899
+                           </tbody>
900
+                         </table>
886 901
                         </td>
887 902
                     </tr>
888 903
                     </tbody>

+ 16 - 5
src/xt_pages/dialysis/bloodPresssWatch.vue View File

@@ -466,8 +466,11 @@
466 466
           >
467 467
             <!-- 数据的遍历  scope.row就代表数据的每一个对象-->
468 468
             <template slot-scope="scope">
469
-              <!--<span>{{scope.row.bp[index].value}}</span>-->
470
-              <span>{{ getValue(scope.row.bp[index]) }}</span>
469
+              <span v-if="getValue(scope.row.bp[index])>=90 && getValue(scope.row.bp[index])<=140">{{getValue(scope.row.bp[index])}}</span>
470
+              <span  v-if="getValue(scope.row.bp[index])<90 || getValue(scope.row.bp[index]) >140" style="color:red">{{getValue(scope.row.bp[index])}}</span>
471
+              <span v-if="getValueOne(scope.row.bp[index])>0">/</span>
472
+              <span v-if="getValueOne(scope.row.bp[index])>=60 && getValueOne(scope.row.bp[index])<=90">{{getValueOne(scope.row.bp[index])}}</span>
473
+              <span v-if="getValueOne(scope.row.bp[index]) <60 || getValueOne(scope.row.bp[index])>90" style="color:red">{{getValueOne(scope.row.bp[index])}}</span>
471 474
             </template>
472 475
           </el-table-column>
473 476
         </el-table-column>
@@ -763,7 +766,7 @@ export default {
763 766
               if(response.data.data.schedule[i].monitoring_record && response.data.data.schedule[i].monitoring_record.length > 0){
764 767
                 for (let a = 0;a < response.data.data.schedule[i].monitoring_record.length;a++) {
765 768
                 const bp = {};
766
-                bp["value"] =response.data.data.schedule[i].monitoring_record[a].systolic_blood_pressure.toString() +"/" +response.data.data.schedule[i].monitoring_record[a].diastolic_blood_pressure.toString();
769
+                bp["value"] =response.data.data.schedule[i].monitoring_record[a].systolic_blood_pressure.toString()+"/" +response.data.data.schedule[i].monitoring_record[a].diastolic_blood_pressure.toString();
767 770
                 SchedualPatientsTable.bp.push(bp);
768 771
                }
769 772
               }
@@ -779,12 +782,20 @@ export default {
779 782
     getValue: function(val) {
780 783
       
781 784
       if (val != undefined) {
782
-        return val.value;
785
+        var str = val.value.split("/")
786
+        return str[0];
787
+      } else {
788
+        return "";
789
+      }
790
+    },
791
+   getValueOne: function(val) {
792
+      if (val != undefined) {
793
+        var str = val.value.split("/")
794
+        return str[1];
783 795
       } else {
784 796
         return "";
785 797
       }
786 798
     },
787
-
788 799
     handleCurrentChange(val) {
789 800
       this.listQuery.page = val;
790 801
       this.getSchedualPatientList();

+ 1 - 1
src/xt_pages/dialysis/details/NavIgation.vue View File

@@ -592,7 +592,7 @@ export default {
592 592
 
593 593
       this.temp_schedual = schedual
594 594
 
595
-      console.log("排班列表2222222222222222",schedual)
595
+      // console.log("排班列表2222222222222222",schedual)
596 596
     },
597 597
 
598 598
     add_monitor: function(monitor) {

+ 2 - 2
src/xt_pages/dialysis/details/acceptsAssessment.vue View File

@@ -277,12 +277,12 @@
277 277
       }, 
278 278
       precaution: function() {
279 279
         if (this.record.id == 0 || this.record == null ) {
280
-          console.log("id--------")
280
+     
281 281
           return ''
282 282
         } else {
283 283
           //console.log("-----",this.record.precaution)
284 284
           var obj = this.record.precaution
285
-            console.log("obj--",obj)
285
+          
286 286
           if(obj == null){
287 287
             return ""
288 288
           }

+ 1 - 1
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue View File

@@ -1283,7 +1283,7 @@
1283 1283
       this.humor_excessive_symptom_array = getDataConfig('hemodialysis', 'humor_excessive_symptom')
1284 1284
       // console.log("血管通路部位",this.blood_access_part_opera)
1285 1285
       this.internal_fistula = getDataConfig('hemodialysis', 'internal_fistula')
1286
-      console.log("内瘘222222",this.internal_fistula)
1286
+      // console.log("内瘘222222",this.internal_fistula)
1287 1287
       this.internal_fistula_skin = getDataConfig('hemodialysis', 'internal_fistula_skin')
1288 1288
       this.puncture_method = getDataConfig('hemodialysis', 'puncture_method')
1289 1289
       this.machineType = getDataConfig('hemodialysis', 'machine_type')

+ 5 - 5
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue View File

@@ -2781,11 +2781,11 @@
2781 2781
                   : date.getMinutes()
2782 2782
 
2783 2783
               if (this.waitUploadAdvices.length > 0) {
2784
-                if (this.patient.id <= 0) {
2785
-                  this.$message.error('没有选择患者')
2786
-                  this.loading = false
2787
-                  return
2788
-                }
2784
+                // if (this.patient.id <= 0) {
2785
+                //   this.$message.error('没有选择患者')
2786
+                //   this.loading = false
2787
+                //   return
2788
+                // }
2789 2789
                 this.dialysisPrescription.impulse = this.dialysisPrescription.pre_impulse
2790 2790
                 var arr = this.dialysisPrescription
2791 2791
                 const ParamsQuery = arr

+ 5 - 5
src/xt_pages/dialysis/details/index.vue View File

@@ -979,7 +979,7 @@ export default {
979 979
         if (resp.state == 1) {
980 980
           var patient = resp.data.patient // 患者信息
981 981
           var schedual = resp.data.schedual // 患者排班信息
982
-          console.log("排班22222222222",schedual)
982
+          // console.log("排班22222222222",schedual)
983 983
           var prescription = resp.data.prescription // 透析处方
984 984
         
985 985
           if (prescription != null) {
@@ -996,11 +996,11 @@ export default {
996 996
           }
997 997
         
998 998
           var solution = resp.data.solution // 透析方案
999
-          console.log("透析方案22223333333333",solution)
999
+          // console.log("透析方案22223333333333",solution)
1000 1000
           var receiver_treatment_access = resp.data.receiver_treatment_access // 接诊评估
1001 1001
 
1002 1002
           var predialysis_evaluation = resp.data.predialysis_evaluation // 透前评估
1003
-           console.log("透器评估",predialysis_evaluation)
1003
+          //  console.log("透器评估",predialysis_evaluation)
1004 1004
           if (predialysis_evaluation != null) {
1005 1005
             if (predialysis_evaluation.blood_access_part_id == -2) {
1006 1006
               predialysis_evaluation.blood_access_part_id = 0
@@ -1053,7 +1053,7 @@ export default {
1053 1053
           var system_prescribe = resp.data.system_prescribe
1054 1054
 
1055 1055
           var lastAssessment =  resp.data.lastAssessment
1056
-          console.log("最后一次血管通路",lastAssessment)
1056
+          // console.log("最后一次血管通路",lastAssessment)
1057 1057
           this.$refs.nav.setLastRecord(
1058 1058
             lastPredialysisEvaluation,
1059 1059
             lastMonitorRecord,
@@ -1350,7 +1350,7 @@ export default {
1350 1350
           //   }
1351 1351
           // }
1352 1352
          
1353
-          console.log("hh2332223323232",schedules)
1353
+          // console.log("hh2332223323232",schedules)
1354 1354
           this.zone_schedules = this.processedDialysisSchedules(schedules, this.zone_options)
1355 1355
           const patientArr = JSON.parse(JSON.stringify(this.zone_schedules))
1356 1356
           if (this.activeName == 'first') {

+ 5 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

@@ -318,6 +318,9 @@
318 318
                       <div class="under_line" style="width: 150px;text-align: center;font-weight:600;" v-if="prescription.mode_id == 23">
319 319
                         血浆胆红素吸附
320 320
                       </div>
321
+                      <div class="under_line" style="width:100px;text-align: center;font-weight:600;" v-if="prescription.mode_id == 29">
322
+                        PE
323
+                      </div>
321 324
                     </div>
322 325
 
323 326
                     <div class="inline_block" style="margin-left:10px;flex:1;">
@@ -387,7 +390,7 @@
387 390
                       上次透后体重:
388 391
                       <div class="under_line" style="width: 100px;text-align: center">
389 392
                         <span v-if="org_id == 10290">{{lastafterdialysis.weight_after}}</span>
390
-                       <span v-else>{{predialysis.weight_after_last_transparency?predialysis.weight_after_last_transparency:'未称重'}}</span> 
393
+                       <span v-else>{{predialysis.weight_after_last_transparency?predialysis.weight_after_last_transparency:'未称重'}}</span>
391 394
                         <!-- {{ predialysis.weight_after_last_transparency ? parseFloat(lastafterdialysis.weight_after - lastafterdialysis.additional_weight).toFixed(1) : "未称重" }} -->
392 395
                       </div>
393 396
                       kg
@@ -2041,7 +2044,7 @@ export default {
2041 2044
       'vascular_access_desc'
2042 2045
     )
2043 2046
     this.org_id = this.$store.getters.xt_user.org.id
2044
-   
2047
+
2045 2048
     // this.bloodAccessParOpera = getDataConfig('hemodialysis', 'vascular_access_desc')
2046 2049
 
2047 2050
     var bloodAccessParOpera = getDataConfig(

+ 11 - 6
src/xt_pages/dialysis/template/DialysisPrintOrderTwentyEight.vue View File

@@ -1175,8 +1175,15 @@
1175 1175
                       </div>
1176 1176
                     </td>
1177 1177
                     <td width="20">min</td>
1178
-                    <td width="50">去向:</td>
1179
-                      <td width="200">
1178
+                  
1179
+                  </tr>
1180
+                  </tbody>
1181
+                </table>
1182
+                <table class="table-box">
1183
+                  <tbody>
1184
+                    <tr>
1185
+                      <td width="50">去向:</td>
1186
+                      <td width="300">
1180 1187
                         <div style="display:flex;justify-content:space-between;">
1181 1188
                           <!-- <label-box :isChecked="afterdialysis.patient_gose == 1 ? true : false" showValue="回家"></label-box>
1182 1189
                           <label-box :isChecked="afterdialysis.patient_gose == 2 ? true : false" showValue="留观"></label-box>
@@ -1188,10 +1195,8 @@
1188 1195
                           <label-box :isChecked="afterdialysis.patient_gose == 4 ? true : false" showValue="门诊"></label-box>
1189 1196
                         </div>
1190 1197
                       </td>
1191
-                      <td>
1192
-                        <div class="under-line">&nbsp;</div>
1193
-                      </td>
1194
-                  </tr>
1198
+                     <td></td>
1199
+                    </tr>
1195 1200
                   </tbody>
1196 1201
                 </table>
1197 1202
 

+ 1 - 1
src/xt_pages/hospitalStation/components/dialysisIndex.vue View File

@@ -640,7 +640,7 @@ export default {
640 640
           var system_prescribe = resp.data.system_prescribe
641 641
 
642 642
           var lastAssessment =  resp.data.lastAssessment
643
-          console.log("最后一次血管通路",lastAssessment)
643
+          // console.log("最后一次血管通路",lastAssessment)
644 644
           this.$refs.nav.setLastRecord(
645 645
             lastPredialysisEvaluation,
646 646
             lastMonitorRecord,

+ 1 - 1
src/xt_pages/outpatientDoctorStation/components/dialysisIndex.vue View File

@@ -647,7 +647,7 @@ export default {
647 647
           var system_prescribe = resp.data.system_prescribe
648 648
 
649 649
           var lastAssessment =  resp.data.lastAssessment
650
-          console.log("最后一次血管通路",lastAssessment)
650
+          // console.log("最后一次血管通路",lastAssessment)
651 651
           this.$refs.nav.setLastRecord(
652 652
             lastPredialysisEvaluation,
653 653
             lastMonitorRecord,

+ 1 - 1
src/xt_pages/user/hospitalSummaryPrint.vue View File

@@ -240,7 +240,7 @@
240 240
               </span>
241 241
             </td>
242 242
             <td style="text-align:center;width:170px" colspan="2">
243
-              上级签名:
243
+              上级医师签名:
244 244
             </td>
245 245
             <td style="text-align:center;width:170px" colspan="2">
246 246
               <span style="display:inline-block;margin-left:10px;">