Browse Source

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

see999 3 years ago
parent
commit
a589c47bff

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

@@ -1887,6 +1887,7 @@
1887 1887
 
1888 1888
           if (index == 1) {
1889 1889
             let params = {
1890
+              p_type:1,
1890 1891
               patient_id: this.patientInfo.id,
1891 1892
               diagnose: this.diagnose,
1892 1893
               sick_type: this.state1,
@@ -1971,7 +1972,8 @@
1971 1972
                 department: this.departmentValue,
1972 1973
                 record_date: this.end_time,
1973 1974
                 his_patient_id: this.hisPatientInfo.id,
1974
-                reg_type: this.register_type
1975
+                reg_type: this.register_type,
1976
+                p_type: 1,
1975 1977
               };
1976 1978
 
1977 1979
               var month_prescriptions = this.deepClone(this.month_prescriptions);

+ 3 - 2
src/xt_pages/hospitalStation/outpatientChargesManagement.vue View File

@@ -91,7 +91,8 @@
91 91
                         </el-button>
92 92
 
93 93
                       <el-button
94
-                        v-if="(this.hisPatientInfo.id > 0 && this.order.order_status == 1) || (this.hisPatientInfo.id > 0 && this.order.order_status == 2) "
94
+                        v-if="(this.hisPatientInfo.id > 0 && this.hisPatientInfo.in_hospital_status == 1 && this.hisPatientInfo.out_hospital_status == 0)"
95
+
95 96
                         size="small" @click="open(9)" type="primary"
96 97
                       >撤销明细
97 98
                       </el-button>
@@ -1031,7 +1032,7 @@
1031 1032
 
1032 1033
         let params = {
1033 1034
           'record_date': this.record_date
1034
-        };
1035
+         };
1035 1036
         GetHisHospitalChargePatientList(params).then(response => {
1036 1037
           if (response.data.state == 0) {
1037 1038
             this.$message.error(response.data.msg);

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

@@ -1887,6 +1887,7 @@
1887 1887
 
1888 1888
           if (index == 1) {
1889 1889
             let params = {
1890
+              p_type:2,
1890 1891
               patient_id: this.patientInfo.id,
1891 1892
               diagnose: this.diagnose,
1892 1893
               sick_type: this.state1,
@@ -1971,7 +1972,8 @@
1971 1972
                 department: this.departmentValue,
1972 1973
                 record_date: this.end_time,
1973 1974
                 his_patient_id: this.hisPatientInfo.id,
1974
-                reg_type: this.register_type
1975
+                reg_type: this.register_type,
1976
+                p_type: 2,
1975 1977
               };
1976 1978
 
1977 1979
               var month_prescriptions = this.deepClone(this.month_prescriptions);