浏览代码

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

陈少旭 8 个月前
父节点
当前提交
a4ff7f8e75

+ 34 - 0
src/store/modules/globalConfig.js 查看文件

@@ -834,6 +834,36 @@ const global_config = {
834 834
         calcium: 1,
835 835
         bicarbonate: 1
836 836
       },
837
+      42: {
838
+        id: 42,
839
+        name: 'HD(1)',
840
+        dialysis_duration: 1,
841
+        replacement_way: 1,
842
+        hemodialysis_machine: 2,
843
+        blood_filter: 1,
844
+        perfusion_apparatus: 2,
845
+        blood_flow_volume: 1,
846
+        dialysate_flow: 1,
847
+        kalium: 1,
848
+        sodium: 1,
849
+        calcium: 1,
850
+        bicarbonate: 1
851
+      },
852
+      43: {
853
+        id: 43,
854
+        name: 'HD(2)',
855
+        dialysis_duration: 1,
856
+        replacement_way: 1,
857
+        hemodialysis_machine: 2,
858
+        blood_filter: 1,
859
+        perfusion_apparatus: 2,
860
+        blood_flow_volume: 1,
861
+        dialysate_flow: 1,
862
+        kalium: 1,
863
+        sodium: 1,
864
+        calcium: 1,
865
+        bicarbonate: 1
866
+      },
837 867
     },
838 868
     anticoagulants_confit: { // 抗凝剂
839 869
       1: {
@@ -2349,6 +2379,10 @@ const global_config = {
2349 2379
     {
2350 2380
       id: 2,
2351 2381
       name: '后稀释'
2382
+    },
2383
+    {
2384
+      id:3,
2385
+      name:"前+后稀释"
2352 2386
     }
2353 2387
     ],
2354 2388
 

+ 1 - 0
src/xt_pages/dialysis/details/NavIgation.vue 查看文件

@@ -126,6 +126,7 @@
126 126
        :dryWeightList="dryWeightList"
127 127
        :docList="docList"
128 128
        :first_monitor="first_monitor"
129
+       :last_record="last_assessment_after_dislysis"
129 130
     ></assessment-before-dislysis-dialog>
130 131
 
131 132
     <treatment-summary-dialog

+ 17 - 0
src/xt_pages/dialysis/details/dialog/assessmentBeforeDislysisDialog.vue 查看文件

@@ -39,6 +39,12 @@
39 39
             </el-form-item>
40 40
           </el-col>
41 41
 
42
+          <el-col :span="8" v-if="this.$store.getters.xt_user.template_info.org_id ==10702 || this.$store.getters.xt_user.template_info.org_id ==0">
43
+            <el-form-item label="上次透后体重:" :prop="isName('上次透后体重')">
44
+              <el-input v-model="assessmentBeforeDislysis.last_weight" :disabled="true"></el-input>
45
+            </el-form-item>
46
+          </el-col>
47
+
42 48
           <el-col :span="8">
43 49
             <el-form-item label="干体重(kg):"
44 50
               :prop="isName('干体重')"
@@ -988,6 +994,7 @@
988 994
           washing_time:"",
989 995
           warsh_count:"",
990 996
           puncture_needle_direction:"",
997
+          last_weight:"",
991 998
         },
992 999
 
993 1000
         InnerDialogProps: {
@@ -1068,6 +1075,12 @@
1068 1075
           return { id: 0 };
1069 1076
         }
1070 1077
       },
1078
+      last_record: {
1079
+        type: Object,
1080
+        default: () => {
1081
+          return { id: 0 }
1082
+        }
1083
+      },
1071 1084
 
1072 1085
     },
1073 1086
     methods: {
@@ -1137,6 +1150,10 @@
1137 1150
         }
1138 1151
 
1139 1152
         console.log("第一条监测数据23333333333333333",this.first_monitor)
1153
+        if(this.last_record!=null){
1154
+          this.assessmentBeforeDislysis.last_weight = (this.last_record.weight_after - this.last_record.additional_weight).toFixed(1)
1155
+        }
1156
+       
1140 1157
 
1141 1158
         if(this.lastPredialysisEvaluation != null) {
1142 1159
         // if(this.lastPredialysisEvaluation.remark == "" && this.$store.getters.xt_user.org.id == 10307){

+ 12 - 10
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue 查看文件

@@ -952,20 +952,22 @@
952 952
                     <el-col :span="8"
953 953
                             v-if="isShows('置换液总量') && (((this.$store.getters.xt_user.template_info.template_id == 21 || this.$store.getters.xt_user.template_info.template_id == 29 || this.$store.getters.xt_user.template_info.template_id ==24 || this.$store.getters.xt_user.template_info.template_id ==53) && this.$store.getters.xt_user.template_info.org_id != 10249) && this.$store.getters.xt_user.template_info.org_id != 10441)"
954 954
                             v-show="totalShow">
955
-                        <el-form-item label="置换液总量(ml)" prop="displace_liqui_value" :rules="isCheckmust('置换液总量')">
956
-                            <el-input
957
-                                    v-model="dialysisPrescription.displace_liqui_value"
958
-                            ></el-input>
955
+                        <el-form-item label="置换液总量(ml)" prop="displace_liqui_value" :rules="isCheckmust('置换液总量')" v-if="dialysisPrescription.mode_id!=26">
956
+                            <el-input v-model="dialysisPrescription.displace_liqui_value"></el-input>
957
+                        </el-form-item>
958
+
959
+                        <el-form-item label="置换液总量(L/h)" prop="displace_liqui_value" :rules="isCheckmust('置换液总量')" v-if="dialysisPrescription.mode_id ==26">
960
+                            <el-input v-model="dialysisPrescription.displace_liqui_value"></el-input>
959 961
                         </el-form-item>
960 962
                     </el-col>
961 963
                     <el-col :span="8"
962 964
                             v-if="isShows('置换液总量') && (this.$store.getters.xt_user.template_info.template_id != 21 && this.$store.getters.xt_user.template_info.template_id != 29 && this.$store.getters.xt_user.template_info.template_id !=24 && this.$store.getters.xt_user.template_info.template_id !=53) || this.$store.getters.xt_user.template_info.org_id  == 10249 || this.$store.getters.xt_user.template_info.org_id == 10441 "
963 965
                             v-show="totalShow">
964
-                            <!-- v-show="totalShow" -->
965
-                        <el-form-item label="置换液总量(L)" prop="displace_liqui_value" :rules="isCheckmust('置换液总量')">
966
-                            <el-input
967
-                                    v-model="dialysisPrescription.displace_liqui_value"
968
-                            ></el-input>
966
+                        <el-form-item label="置换液总量(L)" prop="displace_liqui_value" :rules="isCheckmust('置换液总量')"  v-if="dialysisPrescription.mode_id!=26">
967
+                            <el-input  v-model="dialysisPrescription.displace_liqui_value"></el-input>
968
+                        </el-form-item>
969
+                        <el-form-item label="置换液总量(L/h)" prop="displace_liqui_value" :rules="isCheckmust('置换液总量')"  v-if="dialysisPrescription.mode_id ==26">
970
+                            <el-input  v-model="dialysisPrescription.displace_liqui_value"></el-input>
969 971
                         </el-form-item>
970 972
                     </el-col>
971 973
 
@@ -3309,7 +3311,7 @@ mu
3309 3311
             //   }
3310 3312
 
3311 3313
             // }
3312
-            if(this.dialysisPrescription.mode_id!=2 && this.dialysisPrescription.mode_id!=5 && this.dialysisPrescription.mode_id!=12 && this.dialysisPrescription.mode_id!=10 && this.dialysisPrescription.mode_id!=34 && this.dialysisPrescription.mode_id!=35  && this.dialysisPrescription.mode_id!=36 && this.dialysisPrescription.mode_id!=37){
3314
+            if(this.dialysisPrescription.mode_id!=2 && this.dialysisPrescription.mode_id!=5 && this.dialysisPrescription.mode_id!=12 && this.dialysisPrescription.mode_id!=10 && this.dialysisPrescription.mode_id!=34 && this.dialysisPrescription.mode_id!=35  && this.dialysisPrescription.mode_id!=36 && this.dialysisPrescription.mode_id!=37 && this.dialysisPrescription.mode_id!=41){
3313 3315
               this.dialysisPrescription.displace_liqui_part = 0
3314 3316
               this.dialysisPrescription.displace_liqui_value = 0
3315 3317
               this.dialysisPrescription.replacement_total = 0

+ 2 - 4
src/xt_pages/dialysis/template/DialysisPrintOrderSeventyeight.vue 查看文件

@@ -212,14 +212,14 @@
212 212
                   <div class="row"
213 213
                     style="padding: 2px 0; line-height: 23px; display: flex"
214 214
                   > 
215
-                    <div class="inline_block" style=" flex: 1">
215
+                    <!-- <div class="inline_block" style=" flex: 1">
216 216
                       透析期间:
217 217
                       <div
218 218
                         style="width: 50%; text-align: center;display: inline-block;border-bottom: 1px solid #999;"
219 219
                       >
220 220
                         {{ predialysis.dialysis_interphase ? predialysis.dialysis_interphase : '/' }}
221 221
                       </div>
222
-                    </div>
222
+                    </div> -->
223 223
 
224 224
                     <div class="inline_block" style=" flex: 1">
225 225
                       透前症状:
@@ -1938,8 +1938,6 @@ export default {
1938 1938
         this.predialysis.diastolic_blood_pressure == 0
1939 1939
       ) {
1940 1940
         this.$message.error("透前血压未填完整");
1941
-      } else if (this.predialysis.dialysis_interphase == "") {
1942
-        this.$message.error("透析期间未填");
1943 1941
       } else if (this.predialysis.symptom_before_dialysis == "") {
1944 1942
         this.$message.error("透前症状未填");
1945 1943
       } else if (this.predialysis.internal_fistula == "") {

+ 19 - 13
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue 查看文件

@@ -917,8 +917,8 @@
917 917
                         }}
918 918
                         </span>
919 919
 
920
-                        <span v-if="org_id ==10510 ">
921
-                          <span v-if="prescription.mode_id ==2 || prescription.mode_id ==5 || presciption.mode_id==12">{{
920
+                        <span v-if="org_id ==10510 || org_id == 0">
921
+                          <span v-if="prescription!=null &&( prescription.mode_id ==2 || prescription.mode_id ==5 || presciption.mode_id==12)">{{
922 922
                             afterdialysis.displace_liqui_value
923 923
                             ? afterdialysis.displace_liqui_value
924 924
                             : "/"
@@ -926,7 +926,7 @@
926 926
                         </span>
927 927
                         <span v-else>/</span>
928 928
                         </span>
929
-                        <span v-if="org_id!=10206&& org_id!=10510"> {{
929
+                        <span v-if="org_id!=10206&& org_id!=10510 && org_id!=0"> {{
930 930
                           prescription.displace_liqui_value
931 931
                             ? prescription.displace_liqui_value
932 932
                             : "/"
@@ -951,16 +951,22 @@
951 951
                             ? prescription.replacement_total
952 952
                             : "/"
953 953
                         }}
954
-                        </span>
954
+                       </span>
955 955
 
956
-                        <span v-if="org_id ==10510"> {{
957
-                          afterdialysis.displace_liqui_value
956
+                        <span v-if="org_id ==10510 || org_id == 0">
957
+                          <span v-if="prescription!=null && (prescription.mode_id ==2 || prescription.mode_id ==5 || prescription.mode_id==12)">{{
958
+                            afterdialysis.displace_liqui_value
958 959
                             ? afterdialysis.displace_liqui_value
959 960
                             : "/"
960
-                        }}
961
+                           }}
962
+                          </span>
963
+                          <span v-else>
964
+                            
965
+                          </span>
961 966
                         </span>
962 967
 
963
-                        <span v-if="org_id!=10206 && org_id!=10510"> {{
968
+                       
969
+                        <span v-if="org_id!=10206 && org_id!=10510&&org_id!=0"> {{
964 970
                           prescription.displace_liqui_value
965 971
                             ? prescription.displace_liqui_value
966 972
                             : "/"
@@ -2197,7 +2203,7 @@
2197 2203
 
2198 2204
 
2199 2205
                       <tr
2200
-                      v-if="org_id == 0 || org_id ==10206 || org_id== 10489"
2206
+                      v-if="org_id == 0 || org_id ==10206 || org_id == 10644"
2201 2207
                       v-for="(advice, advice_index) in projectsOne"
2202 2208
                       :key="advice_index"
2203 2209
                     >
@@ -2416,7 +2422,7 @@
2416 2422
 
2417 2423
 
2418 2424
                       <tr
2419
-                      v-if="org_id == 0 || org_id ==10206 || org_id ==10489 || org_id ==10633 || org_id ==10644"
2425
+                      v-if="org_id == 0 || org_id ==10206 || org_id ==10633 || org_id ==10644"
2420 2426
                       v-for="(advice, advice_index) in projectsOne"
2421 2427
                       :key="advice_index"
2422 2428
                     >
@@ -5639,7 +5645,7 @@ export default {
5639 5645
 
5640 5646
         console.log("haaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",this.doctor_advices)
5641 5647
 
5642
-        if(this.org_id ==10206 || this.org_id ==10489 || this.org_id ==10644 || this.org_id ==10633 || this.org_id == 0){
5648
+        if(this.org_id ==10206 || this.org_id ==10644 || this.org_id ==10633 || this.org_id == 0){
5643 5649
           let projectsOne = [];
5644 5650
           response.data.data.projects.map((item) => {
5645 5651
               projectsOne.push(item);
@@ -5677,7 +5683,7 @@ export default {
5677 5683
         }
5678 5684
 
5679 5685
         //HIS客户显示临时医嘱的地方
5680
-        if(this.org_id == 10510 || this.org_id ==10567 || this.org_id == 10489|| this.org_id == 10644){
5686
+        if(this.org_id == 10510 || this.org_id ==10567 || this.org_id == 10489){
5681 5687
           if(response.data.data.doctorAdevieInfo!=null && response.data.data.doctorAdevieInfo.length>0){
5682 5688
 
5683 5689
             for(let i=0;i<response.data.data.doctorAdevieInfo.length;i++){
@@ -5702,7 +5708,7 @@ export default {
5702 5708
 
5703 5709
 
5704 5710
 
5705
-        if(this.org_id!=10510 && this.org_id!=0&&this.org_id!=10206 && this.org_id!=10478 && this.org_id!=0 && this.org_id!=10489){
5711
+        if(this.org_id!=10510 && this.org_id!=0&&this.org_id!=10206 && this.org_id!=10478 && this.org_id!=0 && this.org_id!=10489 && this.org_id!=10644){
5706 5712
             if(this.projects!=null && this.projects.length >0){
5707 5713
              for(let i=0;i<this.projects.length;i++){
5708 5714
               if(this.projects[i].type== 2){

+ 8 - 2
src/xt_pages/org/orginfo.vue 查看文件

@@ -449,8 +449,10 @@ import Neditor from '@/components/Neditor'
449 449
                         this.fileList.push(image);
450 450
                     }
451 451
                     console.log("fileList-------------",fileList)
452
-
453
-                    var illness = res.data.orginfo.illness.split(',');
452
+                    var illnessList = "21,22,23,24,25,26,27,28,29,30,31,32"
453
+                    // var illness = res.data.orginfo.illness.split(',');
454
+                    var illness = illnessList.split(',')
455
+                    console.log("illness--------------------",illness)
454 456
                     for (const index in illness) {
455 457
                         var iid = parseInt(illness[index]);
456 458
                         if (isNaN(iid) || iid<=0) {
@@ -458,8 +460,12 @@ import Neditor from '@/components/Neditor'
458 460
                         }
459 461
                         this.form.illness_list.push(iid);
460 462
                     }
463
+                    console.log("this.form.illness_list---------------------",this.form.illness_list)
461 464
                     var business_week = this.form.business_week;
462 465
                     var business_week_tem = business_week.split(" — ");
466
+
467
+                    console.log("business_week",business_week)
468
+                    console.log("business_week_tem",business_week_tem)
463 469
                     if(business_week_tem.length==2) {
464 470
                         var fromIndex = this.weekOptions.indexOf(business_week_tem[0]);
465 471
                         var toIndex = this.weekOptions.indexOf(business_week_tem[1]);

+ 16 - 19
src/xt_pages/outpatientDoctorStation/components/deskRecord.vue 查看文件

@@ -582,7 +582,7 @@ export default {
582 582
             caseHistory.confirm_failure_date
583 583
           );
584 584
           this.drug_allergy_history = caseHistory.drug_allergy_history;
585
-          this.physical_examination = caseHistory.physical_examination;
585
+          this.physical_examination = caseHistory.physical_examination
586 586
           this.special_inspection = caseHistory.special_inspection;
587 587
           this.lab_apparatus = caseHistory.lab_apparatus;
588 588
           this.form.id = historyInfo.id;
@@ -827,7 +827,7 @@ export default {
827 827
         this.primary_disease = this.LastCaseHistory.primary_disease
828 828
         this.confirm_failure_date = this.LastCaseHistory.confirm_failure_date
829 829
         this.drug_allergy_history = this.LastCaseHistory.drug_allergy_history
830
-        this.physical_examination = this.LastCaseHistory.physical_examination
830
+        this.physical_examination = this.LastCaseHistory.physical_examination?this.patientInfo.remark:""
831 831
         this.special_inspection = this.LastCaseHistory.special_inspection
832 832
         this.lab_apparatus = this.LastCaseHistory.lab_apparatus
833 833
         this.case_history.sick = this.LastCaseHistory.sick
@@ -848,7 +848,7 @@ export default {
848 848
         this.primary_disease = this.case_history.primary_disease
849 849
         this.confirm_failure_date = this.case_history.confirm_failure_date
850 850
         this.drug_allergy_history = this.case_history.drug_allergy_history
851
-        this.physical_examination = this.case_history.physical_examination
851
+        this.physical_examination = this.case_history.physical_examination?this.patientInfo.remark:""
852 852
         this.special_inspection = this.case_history.special_inspection
853 853
         this.lab_apparatus = this.case_history.lab_apparatus
854 854
       }
@@ -882,19 +882,6 @@ export default {
882 882
     patientInfo: {
883 883
       handler(newval, oldval) {
884 884
 
885
-        this.primary_disease = this.patientInfo.primary_disease;
886
-        this.confirm_failure_date = this.patientInfo.confirm_failure_date;
887
-        this.drug_allergy_history = this.patientInfo.drug_allergy_history;
888
-        this.physical_examination = this.patientInfo.physical_examination;
889
-        this.special_inspection = this.patientInfo.special_inspection;
890
-        this.lab_apparatus = this.patientInfo.lab_apparatus;
891
-        console.log("WOWOWOWOOWOWOWWO",this.patientInfo)
892
-        console.log("透气那数据阿道夫阿道夫阿道夫低分安抚",this.LastCaseHistory)
893
-        console.log("befor------------------------",this.befor)
894
-        console.log("patient------------------------",this.patientInfo)
895
-        console.log("prescriptionInfo--------------------",this.prescriptionInfo)
896
-        console.log("this.diagnoses",this.diagnoses)
897
-        console.log("this.case_history",this.case_history)
898 885
         if(this.case_history!=null && this.case_history.id == 0){
899 886
           console.log("hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh")
900 887
           if(this.befor!=undefined){
@@ -919,19 +906,25 @@ export default {
919 906
           }   
920 907
         }
921 908
         if(this.patientInfo!=null){
909
+           console.log("owowowowowoo222222222222222",this.patientInfo)
922 910
            this.case_history.chief_conplaint = this.patientInfo.patient_complains
923 911
            this.case_history.history_of_present_illness = this.patientInfo.present_history
924 912
            this.case_history.past_history = this.patientInfo.past_history
925 913
            this.allergic_history = this.patientInfo.allergic_history
926 914
            this.case_history.diagnostic = this.patientInfo.diagnose
927
-         
915
+           this.physical_examination = this.patientInfo.remark
916
+           this.primary_disease = this.patientInfo.primary_disease;
917
+            this.confirm_failure_date = this.patientInfo.confirm_failure_date;
918
+            this.drug_allergy_history = this.patientInfo.drug_allergy_history;
919
+            this.special_inspection = this.patientInfo.special_inspection;
920
+            this.lab_apparatus = this.patientInfo.lab_apparatus;
928 921
            if(this.prescriptionInfo!=null){
929 922
                console.log("诊断---------------------",this.diagnoses)
930 923
               this.case_history.diagnose = this.getDiagnosis(this.prescriptionInfo.diagnosis) 
931 924
            }
932 925
          }
933 926
         }
934
-      
927
+        console.log("体格检查444444444444444444444",this.physical_examination)
935 928
       },
936 929
       deep: true,
937 930
     },
@@ -953,7 +946,11 @@ export default {
953 946
         this.primary_disease = this.case_history.primary_disease
954 947
         this.confirm_failure_date = this.case_history.confirm_failure_date
955 948
         this.drug_allergy_history = this.case_history.drug_allergy_history
956
-        this.physical_examination = this.case_history.physical_examination
949
+        if(this.case_history.physical_examination!=''){
950
+          this.physical_examination = this.case_history.physical_examination
951
+        }
952
+      
953
+        console.log("体格检查555555555555555555",this.physical_examination)
957 954
         this.special_inspection = this.case_history.special_inspection
958 955
         this.lab_apparatus = this.case_history.lab_apparatus
959 956
         this.watchSign++;

+ 1 - 1
src/xt_pages/outpatientDoctorStation/recordPrint.vue 查看文件

@@ -62,7 +62,7 @@
62 62
       <!-- || org_id == 0-->
63 63
       </printThree>
64 64
       <printFour
65
-        v-if="org_id == 10138 || org_id == 10278 || org_id == 10341 || org_id == 10342"
65
+        v-if="org_id == 10138 || org_id == 10278 || org_id == 10341 || org_id == 10342 || org_id == 0"
66 66
         ref="printFour"
67 67
         v-bind:childResponse="childResponse"
68 68
         :patient="patient"

+ 22 - 14
src/xt_pages/outpatientDoctorStation/template/prineight.vue 查看文件

@@ -40,14 +40,14 @@
40 40
                 透析号:{{ item.patient.dialysis_no }}
41 41
               </div>
42 42
               <div style="flex: 1;">
43
-                费别:自费
44
-                <!-- <span v-if="hisPatient.balance_accounts_type==1">
43
+                费别:
44
+                <!-- <span v-if="item.hisPatient.balance_accounts_type==1">
45 45
                   <span v-if="hisPatient.insutype==390">城乡医保</span>
46 46
                   <span v-if="hisPatient.insutype==310">职工医保</span>
47
+                </span> v-else-->
48
+                <span >
49
+                  {{ getsettlement(item.hisPatient.balance_accounts_type) }}
47 50
                 </span>
48
-                <span v-else>
49
-                  {{ getsettlement(hisPatient.balance_accounts_type) }}
50
-                </span> -->
51 51
               </div>
52 52
             </div>
53 53
             <div  style="display: flex;line-height: 24px;padding: 0 10px;">
@@ -91,14 +91,14 @@
91 91
             </div>
92 92
             <div style="display: flex;margin: 10px 0;">
93 93
               <div style="flex: 1;">门诊号:{{ hisPatient.number ? hisPatient.number : "" }}</div>
94
-              <div style="flex: 1;">费别:自费
94
+              <div style="flex: 1;">费别:
95 95
                 <!-- <span v-if="hisPatient.balance_accounts_type==1">
96 96
                   <span v-if="hisPatient.insutype==390">城乡医保</span>
97 97
                   <span v-if="hisPatient.insutype==310">职工医保</span>
98
+                </span> v-else-->
99
+                <span >
100
+                  {{ getsettlement(item.hisPatient.balance_accounts_type) }}
98 101
                 </span>
99
-                <span v-else>
100
-                  {{ getsettlement(hisPatient.balance_accounts_type) }}
101
-                </span> -->
102 102
               </div>
103 103
             </div>
104 104
             <div style="display: flex;">
@@ -114,8 +114,7 @@
114 114
 
115 115
           <div class="prescriptionBox" style="min-height: 300px;">
116 116
             <div class="Rp">Rp:</div>
117
-            <div
118
-              class="drugsBox"
117
+            <div class="drugsBox"
119 118
               v-for="(it, index) in item.advices" :key="index"
120 119
               :style="{'page-break-after':index==yi&&item.advices.length>5? 'always':'auto'}"
121 120
             >
@@ -125,7 +124,9 @@
125 124
                   v-if="prescriptions[index].med_type != '1111' && prescriptions[index].med_type != '1112'">
126 125
                   <div style="display: flex;margin: 10px 0;line-height: 24px;padding: 0 10px;">
127 126
                     <div style="flex: 1;">
128
-                      NO:
127
+                      NO:{{ item.prescription_number.substring(
128
+                        item.prescription_number.length - 6
129
+                      ) }}
129 130
                     </div>
130 131
                     <div style="flex: 1;">
131 132
                       开方时间:{{ getTime(item.ctime) ? getTime(item.ctime) : "" }}
@@ -136,7 +137,10 @@
136 137
                       透析号:{{ item.patient.dialysis_no }}
137 138
                     </div>
138 139
                     <div style="flex: 1;">
139
-                      费别:居民医保/职工医保/自费
140
+                      费别:
141
+                      <span >
142
+                        {{ getsettlement(item.hisPatient.balance_accounts_type) }}
143
+                      </span>
140 144
                     </div>
141 145
                   </div>
142 146
                   <div  style="display: flex;margin: 10px 0;line-height: 24px;padding: 0 10px;">
@@ -176,7 +180,11 @@
176 180
                   </div>
177 181
                   <div style="display: flex;margin: 10px 0;">
178 182
                     <div style="flex: 1;">门诊号:{{ hisPatient.number ? hisPatient.number : "" }}</div>
179
-                    <div style="flex: 1;">费别:居民医保/职工医保/自费</div>
183
+                    <div style="flex: 1;">费别:
184
+                      <span >
185
+                        {{ getsettlement(item.hisPatient.balance_accounts_type) }}
186
+                      </span>
187
+                    </div>
180 188
                   </div>
181 189
                   <div style="display: flex;">
182 190
                     <div style="flex: 1;">临床诊断:{{ getDiagnosis(item.info.diagnosis) }}</div>

+ 1 - 1
src/xt_pages/stock/drugs/components/purchaseNewDrugQuery.vue 查看文件

@@ -441,7 +441,7 @@ export default {
441 441
               list[i].drugAddOne= 0
442 442
               list[i].drugOutOne =0
443 443
               
444
-              if(this.org_id ==10210  || this.org_id ==10402 || this.org_id ==10215){
444
+              if(this.org_id ==10210  || this.org_id ==10402 || this.org_id ==10215 || this.org_id == 0 || this.org_id ==10191){
445 445
                  list[i].drugIn = this.GetDrugStartFlow(list[i].DrugStatFlow.over_count,list[i].min_number,list[i].min_unit,list[i].max_unit) 
446 446
               }else{
447 447
                 list[i].drugIn = this.GetInitStartFlow(list[i].new_drug_in_flow_info,list[i].new_drug_profit_flow_info,list[i].new_drug_out_flow_info,list[i].new_drug_no_profit_flow_info,list[i].new_drug_cancel_flow_info,list[i].min_number,list[i].min_unit,list[i].max_unit)

+ 1 - 1
src/xt_pages/user/doctorAdvice.vue 查看文件

@@ -1859,7 +1859,7 @@
1859 1859
                   }}{{ advice.single_dose_unit }}</span
1860 1860
                 >
1861 1861
                 <span>{{ advice.delivery_way }}</span>
1862
-                <span>{{ advice.execution_frequency }}</span>
1862
+                <!-- <span>{{ advice.execution_frequency }}</span> -->
1863 1863
               </td>
1864 1864
               <td>
1865 1865
                 <span v-if="advice.execution_time != 0">{{