Browse Source

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

csx 4 years ago
parent
commit
59882a9041

+ 7 - 5
src/xt_pages/outpatientCharges/components/prescriptionTable.vue View File

@@ -30,7 +30,7 @@
30 30
       </el-table-column>
31 31
 
32 32
       <el-table-column align="center" prop="day" width="50" label="天数">
33
-        <template slot-scope="scope">{{scope.row.day}}</template>
33
+        <template slot-scope="scope">{{scope.row.day}}</template>
34 34
       </el-table-column>
35 35
 
36 36
       <el-table-column align="center" prop="name" width="100" label="总量">
@@ -41,7 +41,7 @@
41 41
       </el-table-column>
42 42
       <el-table-column align="center" prop="name" width="60" label="单价">
43 43
         <template slot-scope="scope">
44
-          <div> {{scope.row.retail_price}}</div>
44
+          <div> {{scope.row.retail_price}}</div>
45 45
 
46 46
           <!--<el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>-->
47 47
         </template>
@@ -64,7 +64,8 @@
64 64
         <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
65 65
       </el-table-column>
66 66
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
67
-        <template slot-scope="scope">{{scope.row.single_dose}}</template>
67
+        <template slot-scope="scope">{{scope.row.single_dose}}{{scope.row.unit}}</template>
68
+
68 69
       </el-table-column>
69 70
       <el-table-column align="center" prop="delivery_way" width="80" label="用法">
70 71
         <template slot-scope="scope">
@@ -83,9 +84,10 @@
83 84
       <el-table-column align="center" prop="number_days" width="50" label="天数">
84 85
         <template slot-scope="scope">
85 86
           <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
86
-          {{scope.row.number_days}}
87
+          {{scope.row.number_days}}
87 88
 
88 89
         </template>
90
+
89 91
       </el-table-column>
90 92
       <el-table-column align="center" prop="total" width="50" label="总量">
91 93
         <template slot-scope="scope">
@@ -101,7 +103,7 @@
101 103
       <el-table-column align="center" prop="name" width="50" label="单价">
102 104
         <template slot-scope="scope">
103 105
           <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
104
-          {{scope.row.price}}
106
+          {{scope.row.price}}
105 107
 
106 108
         </template>
107 109
       </el-table-column>

+ 39 - 28
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

@@ -357,24 +357,25 @@
357 357
         form['record_time'] = this.record_date
358 358
         this.loadingtwo = true
359 359
         if (this.$store.getters.xt_user.org_id == 4) {
360
+         var  that = this
360 361
           axios.get('http://127.0.0.1:9532/api/upload/get', {
361 362
             params: form
362 363
           })
363 364
             .then(function (response) {
364 365
               if (response.data.state == 0) {
365
-                this.$message.error(response.data.msg)
366
-                this.loadingtwo = false
367
-                this.$refs.charge.hide()
366
+                that.$message.error(response.data.msg)
367
+                that.loadingtwo = false
368
+                that.$refs.charge.hide()
368 369
                 return false
369 370
               } else {
370
-                this.$refs.charge.hide()
371
-                this.loadingtwo = false
372
-                this.state = '已收费'
373
-                this.$message({message: '收费成功', type: 'success'})
374
-                this.loadingtwo = false
375
-                this.cal_one = this.cal_one - 1
376
-                this.cal_two = this.cal_two + 1
377
-                this.patientTableData.splice(this.current_index, 1)
371
+                that.$refs.charge.hide()
372
+                that.loadingtwo = false
373
+                that.state = '已收费'
374
+                that.$message({message: '收费成功', type: 'success'})
375
+                that.loadingtwo = false
376
+                that.cal_one = this.cal_one - 1
377
+                that.cal_two = this.cal_two + 1
378
+                that.patientTableData.splice(this.current_index, 1)
378 379
               }
379 380
             })
380 381
             .catch(function (error) {
@@ -411,22 +412,24 @@
411 412
           this.loadingone = true
412 413
 
413 414
         if (this.$store.getters.xt_user.org_id == 4) {
415
+          var  that = this
416
+
414 417
           axios.get('http://127.0.0.1:9532/api/register/get', {
415 418
             params: forms
416 419
           })
417 420
             .then(function (response) {
418 421
               if (response.data.state == 0) {
419
-                this.$message.error(response.data.msg)
420
-                this.loadingone = false
421
-                this.$refs.register.hide()
422
+                that.$message.error(response.data.msg)
423
+                that.loadingone = false
424
+                that.$refs.register.hide()
422 425
                 return false
423 426
               } else {
424
-                this.$refs.register.hide()
425
-                this.getPatientList()
426
-                this.$message({message: '挂号成功', type: 'success'})
427
-                this.loadingone = false
427
+                that.$refs.register.hide()
428
+                that.getPatientList()
429
+                that.$message({message: '挂号成功', type: 'success'})
430
+                that.loadingone = false
428 431
                 var his_info = response.data.data.his_info
429
-                this.hisPatientInfo = his_info
432
+                that.hisPatientInfo = his_info
430 433
               }
431 434
             })
432 435
             .catch(function (error) {
@@ -461,6 +464,9 @@
461 464
           this.$message.error('请先选择患者')
462 465
           return
463 466
         }
467
+        this.prescriptions = []
468
+        this.curPrescriptions = []
469
+
464 470
         let params = {
465 471
           'record_date': val,
466 472
           'patient_id': this.patientInfo.id
@@ -656,6 +662,7 @@
656 662
 
657 663
         } else if (index == 5) {
658 664
           if (this.$store.getters.xt_user.org_id == 4) {
665
+            var that = this
659 666
             this.$confirm('是否退费', '退费', {
660 667
               confirmButtonText: '确 定',
661 668
               cancelButtonText: '取 消',
@@ -673,12 +680,12 @@
673 680
               })
674 681
                 .then(function (response) {
675 682
                   if (response.data.state == 0) {
676
-                    this.$message.error(response.data.msg)
677
-                    this.loadingtwo = false
683
+                    that.$message.error(response.data.msg)
684
+                    that.loadingtwo = false
678 685
                     return false
679 686
                   } else {
680
-                    this.$message({message: '退费成功', type: 'success'})
681
-                    this.loadingtwo = false
687
+                    that.$message({message: '退费成功', type: 'success'})
688
+                    that.loadingtwo = false
682 689
 
683 690
                   }
684 691
                 })
@@ -742,14 +749,16 @@
742 749
             clr_type:"11",
743 750
           }
744 751
 
752
+          var that = this
753
+
745 754
           if (this.$store.getters.xt_user.org_id == 4) {
746 755
             axios.get('http://127.0.0.1:9532/api/checkaccount/get', {
747 756
               params: params
748 757
             })
749 758
               .then(function (response) {
750 759
                 if (response.data.state == 0) {
751
-                  this.$message.error(response.data.msg)
752
-                  this.loadingtwo = false
760
+                  that.$message.error(response.data.msg)
761
+                  that.loadingtwo = false
753 762
                   return false
754 763
                 } else {
755 764
 
@@ -768,13 +777,14 @@
768 777
             start_time:"2020-12-28",
769 778
             end_time:"2020-12-30",
770 779
           }
780
+          var that = this
771 781
           axios.get('http://127.0.0.1:9532/api/checkdetailaccount/get', {
772 782
             params: params
773 783
           })
774 784
             .then(function (response) {
775 785
               if (response.data.state == 0) {
776
-                this.$message.error(response.data.msg)
777
-                this.loadingtwo = false
786
+                that.$message.error(response.data.msg)
787
+                that.loadingtwo = false
778 788
                 return false
779 789
               } else {
780 790
 
@@ -1043,7 +1053,8 @@
1043 1053
                   total: prescription.project[b].count.toString(),
1044 1054
                   price: prescription.project[b].price,
1045 1055
                   remark: prescription.project[b].remark,
1046
-                  medical_code: prescription.project[b].project.medical_code
1056
+                  medical_code: prescription.project[b].project.medical_code,
1057
+                  unit:prescription.project[b].project.unit
1047 1058
                 }
1048 1059
                 tempProject.push(obj)
1049 1060
               }

+ 31 - 30
src/xt_pages/outpatientCharges/statementPrint.vue View File

@@ -152,6 +152,8 @@ export default {
152 152
     getInfo(order_id) {
153 153
       if (this.$store.getters.xt_user.org_id == 4) {
154 154
 
155
+        var that = this
156
+
155 157
         axios.get('http://127.0.0.1:9532/api/settle/query', {
156 158
           params: {
157 159
             order_id: order_id,
@@ -165,47 +167,46 @@ export default {
165 167
               console.log("logloglog")
166 168
 
167 169
               console.log(response.data.data.info)
170
+              that.info = response.data.data.info
171
+              console.log(that.info)
168 172
 
169
-              this.info = response.data.data.info
170
-              console.log(this.info)
171
-
172
-              this.info['bed_cost_total'] = response.data.data.bedCostTotal
173
-              this.info['bed_cost_self_total'] = response.data.data.bedCostSelfTotal
174
-              this.info['bed_cost_part_self_total'] = response.data.data.bedCostPartSelfTotal
173
+              that.info['bed_cost_total'] = response.data.data.bedCostTotal
174
+              that.info['bed_cost_self_total'] = response.data.data.bedCostSelfTotal
175
+              that.info['bed_cost_part_self_total'] = response.data.data.bedCostPartSelfTotal
175 176
 
176
-              this.info['operation_cost_total'] = response.data.data.operationCostTotal
177
-              this.info['operation_cost_self_total'] = response.data.data.operationCostSelfTotal
178
-              this.info['operation_cost_part_self_total'] = response.data.data.operationCostPartSelfTotal
177
+              that.info['operation_cost_total'] = response.data.data.operationCostTotal
178
+              that.info['operation_cost_self_total'] = response.data.data.operationCostSelfTotal
179
+              that.info['operation_cost_part_self_total'] = response.data.data.operationCostPartSelfTotal
179 180
 
180
-              this.info['other_cost_total'] = response.data.data.otherCostTotal
181
-              this.info['other_cost_self_total'] = response.data.data.otherCostSelfTotal
182
-              this.info['other_cost_part_self_total'] = response.data.data.otherCostPartSelfTotal
181
+              that.info['other_cost_total'] = response.data.data.otherCostTotal
182
+              that.info['other_cost_self_total'] = response.data.data.otherCostSelfTotal
183
+              that.info['other_cost_part_self_total'] = response.data.data.otherCostPartSelfTotal
183 184
 
184
-              this.info['material_cost_total'] = response.data.data.materialCostTotal
185
-              this.info['material_cost_self_total'] = response.data.data.materialCostSelfTotal
186
-              this.info['material_cost_part_self_total'] = response.data.data.materialCostPartSelfTotal
185
+              that.info['material_cost_total'] = response.data.data.materialCostTotal
186
+              that.info['material_cost_self_total'] = response.data.data.materialCostSelfTotal
187
+              that.info['material_cost_part_self_total'] = response.data.data.materialCostPartSelfTotal
187 188
 
188
-              this.info['western_medicine_cost_total'] = response.data.data.westernMedicineCostTotal
189
-              this.info['western_medicine_cost_self_total'] = response.data.data.westernMedicineCostSelfTotal
190
-              this.info['western_medicine_cost_part_self_total'] = response.data.data.westernMedicineCostPartSelfTotal
189
+              that.info['western_medicine_cost_total'] = response.data.data.westernMedicineCostTotal
190
+              that.info['western_medicine_cost_self_total'] = response.data.data.westernMedicineCostSelfTotal
191
+              that.info['western_medicine_cost_part_self_total'] = response.data.data.westernMedicineCostPartSelfTotal
191 192
 
192
-              this.info['chinese_traditional_medicine_cost_total'] = response.data.data.chineseTraditionalMedicineCostTotalt
193
-              this.info['chinese_traditional_medicine_cost_self_total'] = response.data.data.chineseTraditionalMedicineCostSelfTotal
194
-              this.info['chinese_traditional_medicine_cost_part_self_total'] = response.data.data.chineseTraditionalMedicineCostPartSelfTotal
193
+              that.info['chinese_traditional_medicine_cost_total'] = response.data.data.chineseTraditionalMedicineCostTotal
194
+              that.info['chinese_traditional_medicine_cost_self_total'] = response.data.data.chineseTraditionalMedicineCostSelfTotal
195
+              that.info['chinese_traditional_medicine_cost_part_self_total'] = response.data.data.chineseTraditionalMedicineCostPartSelfTotal
195 196
 
196 197
 
197
-              this.info['check_cost_total'] = response.data.data.checkCostTotal
198
-              this.info['check_cost_self_total'] = response.data.data.checkCostSelfTotal
199
-              this.info['check_cost_part_self_total'] = response.data.data.checkCostPartSelfTotal
198
+              that.info['check_cost_total'] = response.data.data.checkCostTotal
199
+              that.info['check_cost_self_total'] = response.data.data.checkCostSelfTotal
200
+              that.info['check_cost_part_self_total'] = response.data.data.checkCostPartSelfTotal
200 201
 
201 202
 
202
-              this.info['laboratory_cost_total'] = response.data.data.laboratoryCostTotal
203
-              this.info['laboratory_cost_self_total'] = response.data.data.laboratoryCostSelfTotal
204
-              this.info['laboratory_cost_part_self_total'] = response.data.data.laboratoryCostPartSelfTotal
203
+              that.info['laboratory_cost_total'] = response.data.data.laboratoryCostTotal
204
+              that.info['laboratory_cost_self_total'] = response.data.data.laboratoryCostSelfTotal
205
+              that.info['laboratory_cost_part_self_total'] = response.data.data.laboratoryCostPartSelfTotal
205 206
 
206
-              this.info['treat_cost_total'] = response.data.data.treatCostTotal
207
-              this.info['treat_cost_self_total'] = response.data.data.treatCostSelfTotal
208
-              this.info['treat_cost_part_self_total'] = response.data.data.treatCostPartSelfTotal
207
+              that.info['treat_cost_total'] = response.data.data.treatCostTotal
208
+              that.info['treat_cost_self_total'] = response.data.data.treatCostSelfTotal
209
+              that.info['treat_cost_part_self_total'] = response.data.data.treatCostPartSelfTotal
209 210
               console.log(this.info)
210 211
             }
211 212
           })

+ 30 - 28
src/xt_pages/outpatientCharges/statementTemplate/printOne.vue View File

@@ -16,10 +16,12 @@
16 16
             </tr>
17 17
             <tr>
18 18
                 <td width="80">姓名</td>
19
-                <td width="80">{{info.name}}</td>
19
+                <td width="80">{{info.psn_name}}</td>
20 20
                 <td width="80">性别</td>
21
-                <td width="50">{{info.gend}}</td>
22
-                <td width="80">出生日期</td>
21
+                <td width="50" v-if="info.gend == '1'">男</td>
22
+              <td width="50" v-if="info.gend == '2'">女</td>
23
+
24
+              <td width="80">出生日期</td>
23 25
                 <td width="100">{{info.brdy}}</td>
24 26
                 <td width="90">个人电脑号</td>
25 27
                 <td width="110"></td>
@@ -72,7 +74,7 @@
72 74
             </tr>
73 75
             <tr>
74 76
                 <td colspan="12" style="text-align:left;padding-left:10px;">
75
-                    本次就医:总费用{{info.medfee_sumamt}}元,基金支付{{info.fund_pay_sumamt}}元,个人支付{{info.fulamt_ownpay_amt}}元。
77
+                    本次就医:总费用{{info.medfee_sumamt}}元,基金支付{{info.fund_pay_sumamt}}元,个人支付{{info.psn_pay}}元。
76 78
                 </td>
77 79
             </tr>
78 80
             <tr>
@@ -97,9 +99,9 @@
97 99
             </tr>
98 100
             <tr>
99 101
                 <td>中药费</td>
100
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
101
-                <td style="text-align:right;padding-right:10px;">0.00</td>
102
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
102
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
103
+                <td style="text-align:right;padding-right:10px;">0</td>
104
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
103 105
                 <td>中成药</td>
104 106
                 <td colspan="2" style="text-align:right;padding-right:10px;">{{info.chinese_traditional_medicine_cost_total}}</td>
105 107
                 <td style="text-align:right;padding-right:10px;">{{info.chinese_traditional_medicine_cost_self_total}}</td>
@@ -107,9 +109,9 @@
107 109
             </tr>
108 110
             <tr>
109 111
                 <td>中草药</td>
110
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
111
-                <td style="text-align:right;padding-right:10px;">0.00</td>
112
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
112
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
113
+                <td style="text-align:right;padding-right:10px;">0</td>
114
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
113 115
                 <td>检查费</td>
114 116
                 <td colspan="2" style="text-align:right;padding-right:10px;">{{info.check_cost_total}}</td>
115 117
                 <td style="text-align:right;padding-right:10px;">{{info.check_cost_self_total}}</td>
@@ -121,9 +123,9 @@
121 123
               <td style="text-align:right;padding-right:10px;">{{info.treat_cost_self_total}}</td>
122 124
               <td colspan="2" style="text-align:right;padding-right:10px;">{{info.treat_cost_part_self_total}}</td>
123 125
                 <td>放射费</td>
124
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
125
-                <td style="text-align:right;padding-right:10px;">0.00</td>
126
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
126
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
127
+                <td style="text-align:right;padding-right:10px;">0</td>
128
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
127 129
             </tr>
128 130
             <tr>
129 131
                 <td>手术费</td>
@@ -137,13 +139,13 @@
137 139
             </tr>
138 140
             <tr>
139 141
                 <td>输血费</td>
140
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
141
-                <td style="text-align:right;padding-right:10px;">0.00</td>
142
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
142
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
143
+                <td style="text-align:right;padding-right:10px;">0</td>
144
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
143 145
                 <td>输氧费</td>
144
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
145
-                <td style="text-align:right;padding-right:10px;">0.00</td>
146
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
146
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
147
+                <td style="text-align:right;padding-right:10px;">0</td>
148
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
147 149
             </tr>
148 150
             <tr>
149 151
                 <td>其他</td>
@@ -151,9 +153,9 @@
151 153
               <td style="text-align:right;padding-right:10px;">{{info.other_cost_self_total}}</td>
152 154
               <td colspan="2" style="text-align:right;padding-right:10px;">{{info.other_cost_part_self_total}}</td>
153 155
                 <td>麻醉费</td>
154
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
155
-                <td style="text-align:right;padding-right:10px;">0.00</td>
156
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
156
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
157
+                <td style="text-align:right;padding-right:10px;">0</td>
158
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
157 159
             </tr>
158 160
             <tr>
159 161
                 <td>材料费</td>
@@ -161,15 +163,15 @@
161 163
               <td style="text-align:right;padding-right:10px;">{{info.material_cost_self_total}}</td>
162 164
               <td colspan="2" style="text-align:right;padding-right:10px;">{{info.material_cost_part_self_total}}</td>
163 165
                 <td>特殊检查费</td>
164
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
165
-                <td style="text-align:right;padding-right:10px;">0.00</td>
166
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
166
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
167
+                <td style="text-align:right;padding-right:10px;">0</td>
168
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
167 169
             </tr>
168 170
             <tr>
169 171
                 <td>特殊治疗费</td>
170
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
171
-                <td style="text-align:right;padding-right:10px;">0.00</td>
172
-                <td colspan="2" style="text-align:right;padding-right:10px;">0.00</td>
172
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
173
+                <td style="text-align:right;padding-right:10px;">0</td>
174
+                <td colspan="2" style="text-align:right;padding-right:10px;">0</td>
173 175
                 <td style="text-align:right;padding-right:10px;"></td>
174 176
                 <td colspan="2" style="text-align:right;padding-right:10px;"></td>
175 177
                 <td style="text-align:right;padding-right:10px;"></td>

+ 5 - 4
src/xt_pages/outpatientCharges/summaryDetail.vue View File

@@ -27,6 +27,7 @@
27 27
                         </el-table-column>
28 28
                         <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
29 29
                           <template slot-scope="scope">{{scope.row.single_dose}}&nbsp;&nbsp;{{scope.row.single_dose_unit}}</template>
30
+
30 31
                         </el-table-column>
31 32
                         <el-table-column align="center" prop="delivery_way" width="90" label="用法">
32 33
                           <template slot-scope="scope">
@@ -41,7 +42,7 @@
41 42
                         <el-table-column align="center" prop="number_days" width="60" label="天数">
42 43
                           <template slot-scope="scope">
43 44
                             <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
44
-                            {{scope.row.day}}
45
+                            {{scope.row.day}}
45 46
 
46 47
                           </template>
47 48
                         </el-table-column>
@@ -51,7 +52,7 @@
51 52
                         <el-table-column align="center" prop="name" width="60" label="单价">
52 53
                           <template slot-scope="scope">
53 54
                             <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
54
-                            {{scope.row.price}}
55
+                            {{scope.row.price}}
55 56
 
56 57
                           </template>
57 58
                         </el-table-column>
@@ -273,8 +274,8 @@ export default {
273 274
                 day: prescription.project[b].day,
274 275
                 count: prescription.project[b].count.toString(),
275 276
                 remark: prescription.project[b].remark,
276
-                single_dose_unit:"",
277
-                prescribing_number_unit:"",
277
+                single_dose_unit:prescription.project[b].project.unit,
278
+                prescribing_number_unit:prescription.project[b].project.unit,
278 279
                 type:2,
279 280
               }
280 281
               this.tableData.push(obj)

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

@@ -80,6 +80,14 @@
80 80
               :label="item.name"
81 81
               :name="item.name"
82 82
             >
83
+              <el-date-picker
84
+                v-model="item.pre_time"
85
+                type="datetime"
86
+                :clearable="false"
87
+                format="yyyy-MM-dd hh:mm"
88
+                value-format="yyyy-MM-dd hh:mm"
89
+                placeholder="选择日期">
90
+              </el-date-picker>
83 91
 
84 92
             </el-tab-pane>
85 93
             <el-tab-pane name="more" closable><span slot="label"><i class="el-icon-plus" @click="addTab"></i></span>
@@ -837,6 +845,7 @@
837 845
 
838 846
       },
839 847
       setData(data, info, admin_info, doctors, department, hisPatientInfo) {
848
+        console.log(data)
840 849
         this.prescription_id = data[0].id
841 850
         this.editableTabsValue = "处方1"
842 851
         this.$emit('event1', this.prescription_id)
@@ -896,7 +905,7 @@
896 905
 
897 906
         if (info.id > 0) {
898 907
           this.doctorValue = info.doctor_id
899
-          this.departmentValue = info.department
908
+          this.departmentValue = info.departments
900 909
         } else {
901 910
           if (hisPatientInfo.doctor != 0 && hisPatientInfo.department != 0) {
902 911
             this.doctorValue = hisPatientInfo.doctor
@@ -1011,8 +1020,10 @@
1011 1020
             }
1012 1021
 
1013 1022
             for (let b = 0; b < this.prescriptions[i].project.length; b++) {
1014
-              this.prescriptions[i].project[b].price = parseFloat(this.prescriptions[i].project[b].price)
1023
+              this.prescriptions[i].project[b].price = this.prescriptions[i].project[b].price.toString()
1015 1024
               this.prescriptions[i].project[b].total = this.prescriptions[i].project[b].total.toString()
1025
+              this.prescriptions[i].project[b].delivery_way = this.prescriptions[i].project[b].delivery_way.toString()
1026
+
1016 1027
             }
1017 1028
 
1018 1029
             for (let b = 0; b < this.prescriptions[i].addition.length; b++) {
@@ -1056,13 +1067,31 @@
1056 1067
 
1057 1068
         ++this.tabIndex
1058 1069
         let newTabName = '处方' + this.tabIndex
1070
+
1071
+        var nowDate = new Date()
1072
+        var nowYear = nowDate.getFullYear()
1073
+        var nowMonth = nowDate.getMonth() + 1
1074
+        var nowDay = nowDate.getDate()
1075
+
1076
+        var hours = nowDate.getHours()
1077
+        var min = nowDate.getMinutes()
1078
+
1079
+        var nowTime =
1080
+          nowYear +
1081
+          '-' +
1082
+          (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
1083
+          '-' +
1084
+          (nowDay < 10 ? '0' + nowDay : nowDay) + " "+(hours < 10 ? '0' + hours : hours) +
1085
+          ':' + (min < 10 ? '0' + min : min)
1086
+
1059 1087
         this.prescriptions.push({
1060 1088
           id: 0,
1061 1089
           name: newTabName,
1062 1090
           order_status: 0,
1063 1091
           advices: [],
1064 1092
           project: [],
1065
-          addition: []
1093
+          addition: [],
1094
+          pre_time:nowTime,
1066 1095
 
1067 1096
         })
1068 1097
         this.editableTabsValue = newTabName

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

@@ -269,6 +269,7 @@
269 269
                   execution_frequency: prescription.advices[b].execution_frequency,
270 270
                   retail_price: prescription.advices[b].price.toString(),
271 271
                   remark: prescription.advices[b].remark,
272
+                  day: prescription.advices[b].day,
272 273
                   prescribing_number: prescription.advices[b].prescribing_number.toString(),
273 274
                   single_dose_unit: prescription.advices[b].single_dose_unit,
274 275
                   prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
@@ -291,7 +292,8 @@
291 292
                   total: prescription.project[b].count.toString(),
292 293
                   price: prescription.project[b].price,
293 294
                   remark: prescription.project[b].remark,
294
-                  medical_code: prescription.project[b].project.medical_code
295
+                  medical_code: prescription.project[b].project.medical_code,
296
+                  unit:prescription.project[b].project.unit,
295 297
                 }
296 298
                 tempProject.push(obj)
297 299
               }

+ 6 - 6
src/xt_pages/outpatientDoctorStation/components/newPrescriptionTable.vue View File

@@ -30,7 +30,7 @@
30 30
       </el-table-column>
31 31
       <el-table-column align="center" prop="day" width="50" label="天数">
32 32
         <template slot-scope="scope">
33
-          <div>{{ scope.row.day }}</div>
33
+          <div>{{ scope.row.day }}</div>
34 34
         </template>
35 35
       </el-table-column>
36 36
 
@@ -41,7 +41,7 @@
41 41
       </el-table-column>
42 42
       <el-table-column align="center" prop="name" width="80" label="单价">
43 43
         <template slot-scope="scope">
44
-          <div> {{scope.row.retail_price}}</div>
44
+          <div> {{scope.row.retail_price}}</div>
45 45
 
46 46
           <!--<el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>-->
47 47
         </template>
@@ -69,7 +69,7 @@
69 69
       <el-table-column align="center" prop="single_dose" width="100" label="单次用量">
70 70
         <template slot-scope="scope">
71 71
           <!--<el-input v-model="scope.row.single_dose" placeholder="" readonly></el-input>-->
72
-          <div> {{scope.row.single_dose}}</div>
72
+          <div> {{scope.row.single_dose}}{{scope.row.unit}}</div>
73 73
 
74 74
         </template>
75 75
       </el-table-column>
@@ -90,19 +90,19 @@
90 90
       <el-table-column align="center" prop="number_days" width="100" label="天数">
91 91
         <template slot-scope="scope">
92 92
           <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
93
-          <div> {{scope.row.number_days}}</div>
93
+          <div> {{scope.row.number_days}}</div>
94 94
 
95 95
         </template>
96 96
       </el-table-column>
97 97
       <el-table-column align="center" prop="total" width="80" label="总量">
98 98
         <template slot-scope="scope">
99
-            <div> {{scope.row.total}}</div>
99
+            <div> {{scope.row.total}}{{scope.row.unit}}</div>
100 100
         </template>
101 101
       </el-table-column>
102 102
       <el-table-column align="center" prop="name" width="70" label="单价">
103 103
         <template slot-scope="scope">
104 104
           <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
105
-          <div> {{scope.row.price}}</div>
105
+          <div> {{scope.row.price}}</div>
106 106
 
107 107
         </template>
108 108
       </el-table-column>

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

@@ -44,6 +44,8 @@
44 44
       <el-table-column align="center" prop="day" width="50" label="天数">
45 45
         <template slot-scope="scope">
46 46
           <el-input v-model="scope.row.day" placeholder=""></el-input>
47
+          <div>{{'天'}}</div>
48
+
47 49
         </template>
48 50
       </el-table-column>
49 51
 
@@ -58,6 +60,8 @@
58 60
       <el-table-column align="center" prop="retail_price" width="60" label="单价">
59 61
         <template slot-scope="scope">
60 62
           <el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>
63
+          <div>{{'元'}}</div>
64
+
61 65
         </template>
62 66
       </el-table-column>
63 67
       <el-table-column align="center" prop="remark" width="50" label="备注">
@@ -84,11 +88,19 @@
84 88
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
85 89
         <template slot-scope="scope">
86 90
           <el-input v-model="scope.row.single_dose" placeholder=""></el-input>
91
+          <div>{{scope.row.unit}}</div>
92
+
87 93
         </template>
88 94
       </el-table-column>
89 95
       <el-table-column align="center" prop="delivery_way" width="80" label="用法">
90 96
         <template slot-scope="scope">
91
-          <el-input v-model="scope.row.delivery_way" placeholder=""></el-input>
97
+          <el-autocomplete
98
+            style="width:100%;"
99
+            class="inline-input"
100
+            v-model="scope.row.delivery_way"
101
+            :fetch-suggestions="querySearch2"
102
+            placeholder="请输入内容"
103
+          ></el-autocomplete>
92 104
         </template>
93 105
       </el-table-column>
94 106
       <el-table-column align="center" prop="execution_frequency" width="80" label="频率">
@@ -99,6 +111,7 @@
99 111
       <el-table-column align="center" prop="number_days" width="50" label="天数">
100 112
         <template slot-scope="scope">
101 113
           <el-input v-model="scope.row.number_days" placeholder=""></el-input>
114
+          <div>{{'天'}}</div>
102 115
         </template>
103 116
       </el-table-column>
104 117
       <el-table-column align="center" prop="total" width="70" label="总量">
@@ -113,6 +126,8 @@
113 126
       <el-table-column align="center" prop="name" width="50" label="单价">
114 127
         <template slot-scope="scope">
115 128
           <el-input v-model="scope.row.price" placeholder="" readonly></el-input>
129
+          <div>{{'元'}}</div>
130
+
116 131
         </template>
117 132
       </el-table-column>
118 133
       <el-table-column align="center" prop="name" width="50" label="备注">
@@ -190,6 +205,20 @@
190 205
       }
191 206
     },
192 207
    methods:{
208
+     createFilter(queryString) {
209
+       return (restaurant) => {
210
+         return (restaurant.name.toLowerCase().indexOf(queryString.toLowerCase()) === 0)
211
+       }
212
+     },
213
+     querySearch2(queryString, cb) {
214
+       var restaurants = this.getDictionaryDataConfig("system","project_use")
215
+       restaurants.map(item => {
216
+         item.value = item.name
217
+       })
218
+       var results = queryString ? restaurants.filter(this.createFilter(queryString)) : restaurants
219
+       // 调用 callback 返回建议列表的数据
220
+       cb(results)
221
+     },
193 222
      delAddition(index, addition){
194 223
        if(this.prescription.order_status == 2){
195 224
          this.$message.error('该处方已经结算或者退费,无法删除')

+ 86 - 6
src/xt_pages/outpatientDoctorStation/doctorDesk.vue View File

@@ -152,6 +152,7 @@
152 152
   import print from './print'
153 153
   import treatPrint from './treatPrint'
154 154
   import recordPrint from './recordPrint'
155
+
155 156
   export default {
156 157
     components: {
157 158
       BreadCrumb,
@@ -311,6 +312,23 @@
311 312
         })
312 313
       },
313 314
       getPatientInfo(val){
315
+        var nowDate = new Date()
316
+        var nowYear = nowDate.getFullYear()
317
+        var nowMonth = nowDate.getMonth() + 1
318
+        var nowDay = nowDate.getDate()
319
+
320
+        var hours = nowDate.getHours()
321
+        var min = nowDate.getMinutes()
322
+
323
+        var nowTime =
324
+          nowYear +
325
+          '-' +
326
+          (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
327
+          '-' +
328
+          (nowDay < 10 ? '0' + nowDay : nowDay) + " "+(hours < 10 ? '0' + hours : hours) +
329
+          ':' + (min < 10 ? '0' + min : min)
330
+
331
+
314 332
         this.patientid = val.patients.id
315 333
         let params = {
316 334
           'record_date': this.record_date,
@@ -404,8 +422,6 @@
404 422
 
405 423
 
406 424
                 for (let b = 0; b < prescription.project.length; b++) {
407
-                  console.log(prescription.project[b])
408
-                  console.log(prescription.project[b].project)
409 425
                   let obj = {
410 426
                     id: prescription.project[b].id,
411 427
                     project_id: prescription.project[b].project_id,
@@ -419,6 +435,7 @@
419 435
                     price:prescription.project[b].price,
420 436
                     remark:prescription.project[b].remark,
421 437
                     medical_code:prescription.project[b].project.medical_code,
438
+                    unit:prescription.project[b].project.unit,
422 439
                   }
423 440
                   tempProject.push(obj)
424 441
                 }
@@ -435,7 +452,13 @@
435 452
                   tempAddition.push(obj)
436 453
                 }
437 454
 
455
+                var preTime = ""
438 456
 
457
+                if(prescription.pre_time == 0){
458
+                  preTime = nowTime
459
+                }else{
460
+                  preTime = this.getTime(prescription.pre_time,"{y}-{m}-{d} {h}:{i}")
461
+                }
439 462
 
440 463
                 let index = i + 1
441 464
                 let obj = {
@@ -444,7 +467,8 @@
444 467
                   advices: tempAdvice,
445 468
                   project: tempProject,
446 469
                   addition:tempAddition,
447
-                  order_status:prescription.order_status
470
+                  order_status:prescription.order_status,
471
+                  pre_time: preTime
448 472
                 }
449 473
                 this.prescriptions.push(obj)
450 474
               }
@@ -456,10 +480,12 @@
456 480
                 project: [],
457 481
                 addition:[],
458 482
                 orderStatus:0,
483
+                pre_time:nowTime,
484
+
459 485
               }
460 486
               this.prescriptions.push(obj)
461 487
             }
462
-
488
+            console.log(this.prescriptions)
463 489
 
464 490
 
465 491
             this.$refs.prescriptions.setData(this.prescriptions,this.info,this.admin_info,this.doctors,this.department,this.hisPatientInfo)
@@ -471,6 +497,25 @@
471 497
       },
472 498
 
473 499
       choosePatient(val) {
500
+        console.log("~~~~")
501
+        var nowDate = new Date()
502
+        var nowYear = nowDate.getFullYear()
503
+        var nowMonth = nowDate.getMonth() + 1
504
+        var nowDay = nowDate.getDate()
505
+
506
+        var hours = nowDate.getHours()
507
+        var min = nowDate.getMinutes()
508
+
509
+        var nowTime =
510
+          nowYear +
511
+          '-' +
512
+          (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
513
+          '-' +
514
+          (nowDay < 10 ? '0' + nowDay : nowDay) + " "+(hours < 10 ? '0' + hours : hours) +
515
+          ':' + (min < 10 ? '0' + min : min)
516
+        console.log("999999999")
517
+
518
+
474 519
         let isShowDailog = false
475 520
         for (let i = 0; i < this.prescriptions.length; i++){
476 521
           if((this.prescriptions[i].id == 0 && this.prescriptions[i].advices.length > 0) || (this.prescriptions[i].id == 0 && this.prescriptions[i].project.length > 0)){
@@ -506,6 +551,7 @@
506 551
                 this.$message.error(response.data.msg)
507 552
                 return false
508 553
               } else {
554
+
509 555
                 this.prescriptions = []
510 556
                 this.patientInfo = response.data.data.xt_info
511 557
                 this.hisPatientInfo = response.data.data.his_info
@@ -559,6 +605,7 @@
559 605
                 if (response.data.data.prescription.length > 0) {
560 606
                   for (let i = 0; i < response.data.data.prescription.length; i++) {
561 607
                     var prescription = response.data.data.prescription[i]
608
+
562 609
                     let tempAdvice = []
563 610
                     let tempProject = []
564 611
                     let tempAddition = []
@@ -610,6 +657,19 @@
610 657
                       }
611 658
                       tempAddition.push(obj)
612 659
                     }
660
+
661
+
662
+
663
+                    var preTime = ""
664
+
665
+                    if(prescription.pre_time == 0){
666
+                      preTime = nowTime
667
+                    }else{
668
+                      preTime = this.getTime(prescription.pre_time,"{y}-{m}-{d} {h}:{i}")
669
+                    }
670
+                    console.log(preTime)
671
+
672
+
613 673
                     let index = i + 1
614 674
                     let obj = {
615 675
                       id: prescription.id,
@@ -617,7 +677,8 @@
617 677
                       advices: tempAdvice,
618 678
                       project: tempProject,
619 679
                       addition:tempAddition,
620
-                      order_status:prescription.order_status
680
+                      order_status:prescription.order_status,
681
+                      pre_time:preTime
621 682
                     }
622 683
                     this.prescriptions.push(obj)
623 684
                   }
@@ -629,6 +690,8 @@
629 690
                     project: [],
630 691
                     addition:[],
631 692
                     orderStatus:0,
693
+                    pre_time:nowTime
694
+
632 695
                   }
633 696
                   this.prescriptions.push(obj)
634 697
                 }
@@ -758,6 +821,15 @@
758 821
                     }
759 822
                     tempAddition.push(obj)
760 823
                   }
824
+
825
+                  var preTime = ""
826
+
827
+                  if(prescription.pre_time == 0){
828
+                    preTime = nowTime
829
+                  }else{
830
+                    preTime = this.getTime(prescription.pre_time,"{y}-{m}-{d} {h}:{i}")
831
+                  }
832
+
761 833
                   let index = i + 1
762 834
                   let obj = {
763 835
                     id: prescription.id,
@@ -765,7 +837,8 @@
765 837
                     advices: tempAdvice,
766 838
                     project: tempProject,
767 839
                     addition:tempAddition,
768
-                    order_status:prescription.order_status
840
+                    order_status:prescription.order_status,
841
+                    pre_time:preTime
769 842
                   }
770 843
                   this.prescriptions.push(obj)
771 844
                 }
@@ -777,6 +850,7 @@
777 850
                   project: [],
778 851
                   addition:[],
779 852
                   orderStatus:0,
853
+                  pre_time:nowTime,
780 854
                 }
781 855
                 this.prescriptions.push(obj)
782 856
               }
@@ -924,6 +998,12 @@
924 998
           this.innerVisible = true
925 999
           // this.$router.push("/outpatientDoctorStation/treatPrint?record="+this.record_date+"&prescription_id="+this.prescription_id+"&ids="+ids+"&patient_id="+this.patientid)
926 1000
          }
1001
+      }, getTime(val, temp) {
1002
+        if (val != 0) {
1003
+          return uParseTime(val, temp)
1004
+        } else {
1005
+          return ''
1006
+        }
927 1007
       }
928 1008
     },
929 1009
     created() {

+ 11 - 4
src/xt_pages/stock/detail/print.vue View File

@@ -27,8 +27,8 @@
27 27
               <td style="line-height: 50px" width="250">规格型号</td>
28 28
               <td style="line-height: 50px" width="50">单位</td>
29 29
               <!-- <td style="line-height: 50px" width="250">耗材类型</td> -->
30
-            
31
-              
30
+
31
+
32 32
               <td style="line-height: 50px" width="80">数量</td>
33 33
               <td style="line-height:50px" width="80" v-if="type == 1">进货价</td>
34 34
              <td style="line-height:50px" width="80" v-if="type == 3">出货价</td>
@@ -150,7 +150,7 @@
150 150
           style: style,
151 151
           scanStyles: false
152 152
         })
153
-      }, 
153
+      },
154 154
       getDialysisRecord() {
155 155
         this.loading = true
156 156
         getPrintStockGood(this.queryParams).then(response => {
@@ -225,6 +225,8 @@
225 225
 
226 226
       }, calTotal(stock) {
227 227
 
228
+        console.log(stock)
229
+
228 230
         var array = []
229 231
         if (this.type == 1) {
230 232
           array = stock.query_warehousing_info
@@ -234,7 +236,12 @@
234 236
 
235 237
         let total_price = 0.0
236 238
         for (let i = 0; i < array.length; i++) {
237
-          total_price = total_price + array[i].total_price
239
+          if(this.type == 1) {
240
+            total_price = total_price + array[i].warehousing_count * array[i].price
241
+          }else if(this.type == 3){
242
+            total_price = total_price + array[i].count * array[i].price
243
+
244
+          }
238 245
         }
239 246
         return  Math.floor(total_price * 100) / 100
240 247
       }, calTotalPrice() {