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

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

357
         form['record_time'] = this.record_date
357
         form['record_time'] = this.record_date
358
         this.loadingtwo = true
358
         this.loadingtwo = true
359
         if (this.$store.getters.xt_user.org_id == 4) {
359
         if (this.$store.getters.xt_user.org_id == 4) {
360
+         var  that = this
360
           axios.get('http://127.0.0.1:9532/api/upload/get', {
361
           axios.get('http://127.0.0.1:9532/api/upload/get', {
361
             params: form
362
             params: form
362
           })
363
           })
363
             .then(function (response) {
364
             .then(function (response) {
364
               if (response.data.state == 0) {
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
                 return false
369
                 return false
369
               } else {
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
             .catch(function (error) {
381
             .catch(function (error) {
411
           this.loadingone = true
412
           this.loadingone = true
412
 
413
 
413
         if (this.$store.getters.xt_user.org_id == 4) {
414
         if (this.$store.getters.xt_user.org_id == 4) {
415
+          var  that = this
416
+
414
           axios.get('http://127.0.0.1:9532/api/register/get', {
417
           axios.get('http://127.0.0.1:9532/api/register/get', {
415
             params: forms
418
             params: forms
416
           })
419
           })
417
             .then(function (response) {
420
             .then(function (response) {
418
               if (response.data.state == 0) {
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
                 return false
425
                 return false
423
               } else {
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
                 var his_info = response.data.data.his_info
431
                 var his_info = response.data.data.his_info
429
-                this.hisPatientInfo = his_info
432
+                that.hisPatientInfo = his_info
430
               }
433
               }
431
             })
434
             })
432
             .catch(function (error) {
435
             .catch(function (error) {
461
           this.$message.error('请先选择患者')
464
           this.$message.error('请先选择患者')
462
           return
465
           return
463
         }
466
         }
467
+        this.prescriptions = []
468
+        this.curPrescriptions = []
469
+
464
         let params = {
470
         let params = {
465
           'record_date': val,
471
           'record_date': val,
466
           'patient_id': this.patientInfo.id
472
           'patient_id': this.patientInfo.id
656
 
662
 
657
         } else if (index == 5) {
663
         } else if (index == 5) {
658
           if (this.$store.getters.xt_user.org_id == 4) {
664
           if (this.$store.getters.xt_user.org_id == 4) {
665
+            var that = this
659
             this.$confirm('是否退费', '退费', {
666
             this.$confirm('是否退费', '退费', {
660
               confirmButtonText: '确 定',
667
               confirmButtonText: '确 定',
661
               cancelButtonText: '取 消',
668
               cancelButtonText: '取 消',
673
               })
680
               })
674
                 .then(function (response) {
681
                 .then(function (response) {
675
                   if (response.data.state == 0) {
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
                     return false
685
                     return false
679
                   } else {
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
             clr_type:"11",
749
             clr_type:"11",
743
           }
750
           }
744
 
751
 
752
+          var that = this
753
+
745
           if (this.$store.getters.xt_user.org_id == 4) {
754
           if (this.$store.getters.xt_user.org_id == 4) {
746
             axios.get('http://127.0.0.1:9532/api/checkaccount/get', {
755
             axios.get('http://127.0.0.1:9532/api/checkaccount/get', {
747
               params: params
756
               params: params
748
             })
757
             })
749
               .then(function (response) {
758
               .then(function (response) {
750
                 if (response.data.state == 0) {
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
                   return false
762
                   return false
754
                 } else {
763
                 } else {
755
 
764
 
768
             start_time:"2020-12-28",
777
             start_time:"2020-12-28",
769
             end_time:"2020-12-30",
778
             end_time:"2020-12-30",
770
           }
779
           }
780
+          var that = this
771
           axios.get('http://127.0.0.1:9532/api/checkdetailaccount/get', {
781
           axios.get('http://127.0.0.1:9532/api/checkdetailaccount/get', {
772
             params: params
782
             params: params
773
           })
783
           })
774
             .then(function (response) {
784
             .then(function (response) {
775
               if (response.data.state == 0) {
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
                 return false
788
                 return false
779
               } else {
789
               } else {
780
 
790
 
1043
                   total: prescription.project[b].count.toString(),
1053
                   total: prescription.project[b].count.toString(),
1044
                   price: prescription.project[b].price,
1054
                   price: prescription.project[b].price,
1045
                   remark: prescription.project[b].remark,
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
                 tempProject.push(obj)
1059
                 tempProject.push(obj)
1049
               }
1060
               }

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

152
     getInfo(order_id) {
152
     getInfo(order_id) {
153
       if (this.$store.getters.xt_user.org_id == 4) {
153
       if (this.$store.getters.xt_user.org_id == 4) {
154
 
154
 
155
+        var that = this
156
+
155
         axios.get('http://127.0.0.1:9532/api/settle/query', {
157
         axios.get('http://127.0.0.1:9532/api/settle/query', {
156
           params: {
158
           params: {
157
             order_id: order_id,
159
             order_id: order_id,
165
               console.log("logloglog")
167
               console.log("logloglog")
166
 
168
 
167
               console.log(response.data.data.info)
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
               console.log(this.info)
210
               console.log(this.info)
210
             }
211
             }
211
           })
212
           })

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

16
             </tr>
16
             </tr>
17
             <tr>
17
             <tr>
18
                 <td width="80">姓名</td>
18
                 <td width="80">姓名</td>
19
-                <td width="80">{{info.name}}</td>
19
+                <td width="80">{{info.psn_name}}</td>
20
                 <td width="80">性别</td>
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
                 <td width="100">{{info.brdy}}</td>
25
                 <td width="100">{{info.brdy}}</td>
24
                 <td width="90">个人电脑号</td>
26
                 <td width="90">个人电脑号</td>
25
                 <td width="110"></td>
27
                 <td width="110"></td>
72
             </tr>
74
             </tr>
73
             <tr>
75
             <tr>
74
                 <td colspan="12" style="text-align:left;padding-left:10px;">
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
                 </td>
78
                 </td>
77
             </tr>
79
             </tr>
78
             <tr>
80
             <tr>
97
             </tr>
99
             </tr>
98
             <tr>
100
             <tr>
99
                 <td>中药费</td>
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
                 <td>中成药</td>
105
                 <td>中成药</td>
104
                 <td colspan="2" style="text-align:right;padding-right:10px;">{{info.chinese_traditional_medicine_cost_total}}</td>
106
                 <td colspan="2" style="text-align:right;padding-right:10px;">{{info.chinese_traditional_medicine_cost_total}}</td>
105
                 <td style="text-align:right;padding-right:10px;">{{info.chinese_traditional_medicine_cost_self_total}}</td>
107
                 <td style="text-align:right;padding-right:10px;">{{info.chinese_traditional_medicine_cost_self_total}}</td>
107
             </tr>
109
             </tr>
108
             <tr>
110
             <tr>
109
                 <td>中草药</td>
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
                 <td>检查费</td>
115
                 <td>检查费</td>
114
                 <td colspan="2" style="text-align:right;padding-right:10px;">{{info.check_cost_total}}</td>
116
                 <td colspan="2" style="text-align:right;padding-right:10px;">{{info.check_cost_total}}</td>
115
                 <td style="text-align:right;padding-right:10px;">{{info.check_cost_self_total}}</td>
117
                 <td style="text-align:right;padding-right:10px;">{{info.check_cost_self_total}}</td>
121
               <td style="text-align:right;padding-right:10px;">{{info.treat_cost_self_total}}</td>
123
               <td style="text-align:right;padding-right:10px;">{{info.treat_cost_self_total}}</td>
122
               <td colspan="2" style="text-align:right;padding-right:10px;">{{info.treat_cost_part_self_total}}</td>
124
               <td colspan="2" style="text-align:right;padding-right:10px;">{{info.treat_cost_part_self_total}}</td>
123
                 <td>放射费</td>
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
             </tr>
129
             </tr>
128
             <tr>
130
             <tr>
129
                 <td>手术费</td>
131
                 <td>手术费</td>
137
             </tr>
139
             </tr>
138
             <tr>
140
             <tr>
139
                 <td>输血费</td>
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
                 <td>输氧费</td>
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
             </tr>
149
             </tr>
148
             <tr>
150
             <tr>
149
                 <td>其他</td>
151
                 <td>其他</td>
151
               <td style="text-align:right;padding-right:10px;">{{info.other_cost_self_total}}</td>
153
               <td style="text-align:right;padding-right:10px;">{{info.other_cost_self_total}}</td>
152
               <td colspan="2" style="text-align:right;padding-right:10px;">{{info.other_cost_part_self_total}}</td>
154
               <td colspan="2" style="text-align:right;padding-right:10px;">{{info.other_cost_part_self_total}}</td>
153
                 <td>麻醉费</td>
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
             </tr>
159
             </tr>
158
             <tr>
160
             <tr>
159
                 <td>材料费</td>
161
                 <td>材料费</td>
161
               <td style="text-align:right;padding-right:10px;">{{info.material_cost_self_total}}</td>
163
               <td style="text-align:right;padding-right:10px;">{{info.material_cost_self_total}}</td>
162
               <td colspan="2" style="text-align:right;padding-right:10px;">{{info.material_cost_part_self_total}}</td>
164
               <td colspan="2" style="text-align:right;padding-right:10px;">{{info.material_cost_part_self_total}}</td>
163
                 <td>特殊检查费</td>
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
             </tr>
169
             </tr>
168
             <tr>
170
             <tr>
169
                 <td>特殊治疗费</td>
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
                 <td style="text-align:right;padding-right:10px;"></td>
175
                 <td style="text-align:right;padding-right:10px;"></td>
174
                 <td colspan="2" style="text-align:right;padding-right:10px;"></td>
176
                 <td colspan="2" style="text-align:right;padding-right:10px;"></td>
175
                 <td style="text-align:right;padding-right:10px;"></td>
177
                 <td style="text-align:right;padding-right:10px;"></td>

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

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

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

80
               :label="item.name"
80
               :label="item.name"
81
               :name="item.name"
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
             </el-tab-pane>
92
             </el-tab-pane>
85
             <el-tab-pane name="more" closable><span slot="label"><i class="el-icon-plus" @click="addTab"></i></span>
93
             <el-tab-pane name="more" closable><span slot="label"><i class="el-icon-plus" @click="addTab"></i></span>
837
 
845
 
838
       },
846
       },
839
       setData(data, info, admin_info, doctors, department, hisPatientInfo) {
847
       setData(data, info, admin_info, doctors, department, hisPatientInfo) {
848
+        console.log(data)
840
         this.prescription_id = data[0].id
849
         this.prescription_id = data[0].id
841
         this.editableTabsValue = "处方1"
850
         this.editableTabsValue = "处方1"
842
         this.$emit('event1', this.prescription_id)
851
         this.$emit('event1', this.prescription_id)
896
 
905
 
897
         if (info.id > 0) {
906
         if (info.id > 0) {
898
           this.doctorValue = info.doctor_id
907
           this.doctorValue = info.doctor_id
899
-          this.departmentValue = info.department
908
+          this.departmentValue = info.departments
900
         } else {
909
         } else {
901
           if (hisPatientInfo.doctor != 0 && hisPatientInfo.department != 0) {
910
           if (hisPatientInfo.doctor != 0 && hisPatientInfo.department != 0) {
902
             this.doctorValue = hisPatientInfo.doctor
911
             this.doctorValue = hisPatientInfo.doctor
1011
             }
1020
             }
1012
 
1021
 
1013
             for (let b = 0; b < this.prescriptions[i].project.length; b++) {
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
               this.prescriptions[i].project[b].total = this.prescriptions[i].project[b].total.toString()
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
             for (let b = 0; b < this.prescriptions[i].addition.length; b++) {
1029
             for (let b = 0; b < this.prescriptions[i].addition.length; b++) {
1056
 
1067
 
1057
         ++this.tabIndex
1068
         ++this.tabIndex
1058
         let newTabName = '处方' + this.tabIndex
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
         this.prescriptions.push({
1087
         this.prescriptions.push({
1060
           id: 0,
1088
           id: 0,
1061
           name: newTabName,
1089
           name: newTabName,
1062
           order_status: 0,
1090
           order_status: 0,
1063
           advices: [],
1091
           advices: [],
1064
           project: [],
1092
           project: [],
1065
-          addition: []
1093
+          addition: [],
1094
+          pre_time:nowTime,
1066
 
1095
 
1067
         })
1096
         })
1068
         this.editableTabsValue = newTabName
1097
         this.editableTabsValue = newTabName

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

269
                   execution_frequency: prescription.advices[b].execution_frequency,
269
                   execution_frequency: prescription.advices[b].execution_frequency,
270
                   retail_price: prescription.advices[b].price.toString(),
270
                   retail_price: prescription.advices[b].price.toString(),
271
                   remark: prescription.advices[b].remark,
271
                   remark: prescription.advices[b].remark,
272
+                  day: prescription.advices[b].day,
272
                   prescribing_number: prescription.advices[b].prescribing_number.toString(),
273
                   prescribing_number: prescription.advices[b].prescribing_number.toString(),
273
                   single_dose_unit: prescription.advices[b].single_dose_unit,
274
                   single_dose_unit: prescription.advices[b].single_dose_unit,
274
                   prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
275
                   prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
291
                   total: prescription.project[b].count.toString(),
292
                   total: prescription.project[b].count.toString(),
292
                   price: prescription.project[b].price,
293
                   price: prescription.project[b].price,
293
                   remark: prescription.project[b].remark,
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
                 tempProject.push(obj)
298
                 tempProject.push(obj)
297
               }
299
               }

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

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

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

44
       <el-table-column align="center" prop="day" width="50" label="天数">
44
       <el-table-column align="center" prop="day" width="50" label="天数">
45
         <template slot-scope="scope">
45
         <template slot-scope="scope">
46
           <el-input v-model="scope.row.day" placeholder=""></el-input>
46
           <el-input v-model="scope.row.day" placeholder=""></el-input>
47
+          <div>{{'天'}}</div>
48
+
47
         </template>
49
         </template>
48
       </el-table-column>
50
       </el-table-column>
49
 
51
 
58
       <el-table-column align="center" prop="retail_price" width="60" label="单价">
60
       <el-table-column align="center" prop="retail_price" width="60" label="单价">
59
         <template slot-scope="scope">
61
         <template slot-scope="scope">
60
           <el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>
62
           <el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>
63
+          <div>{{'元'}}</div>
64
+
61
         </template>
65
         </template>
62
       </el-table-column>
66
       </el-table-column>
63
       <el-table-column align="center" prop="remark" width="50" label="备注">
67
       <el-table-column align="center" prop="remark" width="50" label="备注">
84
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
88
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
85
         <template slot-scope="scope">
89
         <template slot-scope="scope">
86
           <el-input v-model="scope.row.single_dose" placeholder=""></el-input>
90
           <el-input v-model="scope.row.single_dose" placeholder=""></el-input>
91
+          <div>{{scope.row.unit}}</div>
92
+
87
         </template>
93
         </template>
88
       </el-table-column>
94
       </el-table-column>
89
       <el-table-column align="center" prop="delivery_way" width="80" label="用法">
95
       <el-table-column align="center" prop="delivery_way" width="80" label="用法">
90
         <template slot-scope="scope">
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
         </template>
104
         </template>
93
       </el-table-column>
105
       </el-table-column>
94
       <el-table-column align="center" prop="execution_frequency" width="80" label="频率">
106
       <el-table-column align="center" prop="execution_frequency" width="80" label="频率">
99
       <el-table-column align="center" prop="number_days" width="50" label="天数">
111
       <el-table-column align="center" prop="number_days" width="50" label="天数">
100
         <template slot-scope="scope">
112
         <template slot-scope="scope">
101
           <el-input v-model="scope.row.number_days" placeholder=""></el-input>
113
           <el-input v-model="scope.row.number_days" placeholder=""></el-input>
114
+          <div>{{'天'}}</div>
102
         </template>
115
         </template>
103
       </el-table-column>
116
       </el-table-column>
104
       <el-table-column align="center" prop="total" width="70" label="总量">
117
       <el-table-column align="center" prop="total" width="70" label="总量">
113
       <el-table-column align="center" prop="name" width="50" label="单价">
126
       <el-table-column align="center" prop="name" width="50" label="单价">
114
         <template slot-scope="scope">
127
         <template slot-scope="scope">
115
           <el-input v-model="scope.row.price" placeholder="" readonly></el-input>
128
           <el-input v-model="scope.row.price" placeholder="" readonly></el-input>
129
+          <div>{{'元'}}</div>
130
+
116
         </template>
131
         </template>
117
       </el-table-column>
132
       </el-table-column>
118
       <el-table-column align="center" prop="name" width="50" label="备注">
133
       <el-table-column align="center" prop="name" width="50" label="备注">
190
       }
205
       }
191
     },
206
     },
192
    methods:{
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
      delAddition(index, addition){
222
      delAddition(index, addition){
194
        if(this.prescription.order_status == 2){
223
        if(this.prescription.order_status == 2){
195
          this.$message.error('该处方已经结算或者退费,无法删除')
224
          this.$message.error('该处方已经结算或者退费,无法删除')

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

152
   import print from './print'
152
   import print from './print'
153
   import treatPrint from './treatPrint'
153
   import treatPrint from './treatPrint'
154
   import recordPrint from './recordPrint'
154
   import recordPrint from './recordPrint'
155
+
155
   export default {
156
   export default {
156
     components: {
157
     components: {
157
       BreadCrumb,
158
       BreadCrumb,
311
         })
312
         })
312
       },
313
       },
313
       getPatientInfo(val){
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
         this.patientid = val.patients.id
332
         this.patientid = val.patients.id
315
         let params = {
333
         let params = {
316
           'record_date': this.record_date,
334
           'record_date': this.record_date,
404
 
422
 
405
 
423
 
406
                 for (let b = 0; b < prescription.project.length; b++) {
424
                 for (let b = 0; b < prescription.project.length; b++) {
407
-                  console.log(prescription.project[b])
408
-                  console.log(prescription.project[b].project)
409
                   let obj = {
425
                   let obj = {
410
                     id: prescription.project[b].id,
426
                     id: prescription.project[b].id,
411
                     project_id: prescription.project[b].project_id,
427
                     project_id: prescription.project[b].project_id,
419
                     price:prescription.project[b].price,
435
                     price:prescription.project[b].price,
420
                     remark:prescription.project[b].remark,
436
                     remark:prescription.project[b].remark,
421
                     medical_code:prescription.project[b].project.medical_code,
437
                     medical_code:prescription.project[b].project.medical_code,
438
+                    unit:prescription.project[b].project.unit,
422
                   }
439
                   }
423
                   tempProject.push(obj)
440
                   tempProject.push(obj)
424
                 }
441
                 }
435
                   tempAddition.push(obj)
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
                 let index = i + 1
463
                 let index = i + 1
441
                 let obj = {
464
                 let obj = {
444
                   advices: tempAdvice,
467
                   advices: tempAdvice,
445
                   project: tempProject,
468
                   project: tempProject,
446
                   addition:tempAddition,
469
                   addition:tempAddition,
447
-                  order_status:prescription.order_status
470
+                  order_status:prescription.order_status,
471
+                  pre_time: preTime
448
                 }
472
                 }
449
                 this.prescriptions.push(obj)
473
                 this.prescriptions.push(obj)
450
               }
474
               }
456
                 project: [],
480
                 project: [],
457
                 addition:[],
481
                 addition:[],
458
                 orderStatus:0,
482
                 orderStatus:0,
483
+                pre_time:nowTime,
484
+
459
               }
485
               }
460
               this.prescriptions.push(obj)
486
               this.prescriptions.push(obj)
461
             }
487
             }
462
-
488
+            console.log(this.prescriptions)
463
 
489
 
464
 
490
 
465
             this.$refs.prescriptions.setData(this.prescriptions,this.info,this.admin_info,this.doctors,this.department,this.hisPatientInfo)
491
             this.$refs.prescriptions.setData(this.prescriptions,this.info,this.admin_info,this.doctors,this.department,this.hisPatientInfo)
471
       },
497
       },
472
 
498
 
473
       choosePatient(val) {
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
         let isShowDailog = false
519
         let isShowDailog = false
475
         for (let i = 0; i < this.prescriptions.length; i++){
520
         for (let i = 0; i < this.prescriptions.length; i++){
476
           if((this.prescriptions[i].id == 0 && this.prescriptions[i].advices.length > 0) || (this.prescriptions[i].id == 0 && this.prescriptions[i].project.length > 0)){
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
                 this.$message.error(response.data.msg)
551
                 this.$message.error(response.data.msg)
507
                 return false
552
                 return false
508
               } else {
553
               } else {
554
+
509
                 this.prescriptions = []
555
                 this.prescriptions = []
510
                 this.patientInfo = response.data.data.xt_info
556
                 this.patientInfo = response.data.data.xt_info
511
                 this.hisPatientInfo = response.data.data.his_info
557
                 this.hisPatientInfo = response.data.data.his_info
559
                 if (response.data.data.prescription.length > 0) {
605
                 if (response.data.data.prescription.length > 0) {
560
                   for (let i = 0; i < response.data.data.prescription.length; i++) {
606
                   for (let i = 0; i < response.data.data.prescription.length; i++) {
561
                     var prescription = response.data.data.prescription[i]
607
                     var prescription = response.data.data.prescription[i]
608
+
562
                     let tempAdvice = []
609
                     let tempAdvice = []
563
                     let tempProject = []
610
                     let tempProject = []
564
                     let tempAddition = []
611
                     let tempAddition = []
610
                       }
657
                       }
611
                       tempAddition.push(obj)
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
                     let index = i + 1
673
                     let index = i + 1
614
                     let obj = {
674
                     let obj = {
615
                       id: prescription.id,
675
                       id: prescription.id,
617
                       advices: tempAdvice,
677
                       advices: tempAdvice,
618
                       project: tempProject,
678
                       project: tempProject,
619
                       addition:tempAddition,
679
                       addition:tempAddition,
620
-                      order_status:prescription.order_status
680
+                      order_status:prescription.order_status,
681
+                      pre_time:preTime
621
                     }
682
                     }
622
                     this.prescriptions.push(obj)
683
                     this.prescriptions.push(obj)
623
                   }
684
                   }
629
                     project: [],
690
                     project: [],
630
                     addition:[],
691
                     addition:[],
631
                     orderStatus:0,
692
                     orderStatus:0,
693
+                    pre_time:nowTime
694
+
632
                   }
695
                   }
633
                   this.prescriptions.push(obj)
696
                   this.prescriptions.push(obj)
634
                 }
697
                 }
758
                     }
821
                     }
759
                     tempAddition.push(obj)
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
                   let index = i + 1
833
                   let index = i + 1
762
                   let obj = {
834
                   let obj = {
763
                     id: prescription.id,
835
                     id: prescription.id,
765
                     advices: tempAdvice,
837
                     advices: tempAdvice,
766
                     project: tempProject,
838
                     project: tempProject,
767
                     addition:tempAddition,
839
                     addition:tempAddition,
768
-                    order_status:prescription.order_status
840
+                    order_status:prescription.order_status,
841
+                    pre_time:preTime
769
                   }
842
                   }
770
                   this.prescriptions.push(obj)
843
                   this.prescriptions.push(obj)
771
                 }
844
                 }
777
                   project: [],
850
                   project: [],
778
                   addition:[],
851
                   addition:[],
779
                   orderStatus:0,
852
                   orderStatus:0,
853
+                  pre_time:nowTime,
780
                 }
854
                 }
781
                 this.prescriptions.push(obj)
855
                 this.prescriptions.push(obj)
782
               }
856
               }
924
           this.innerVisible = true
998
           this.innerVisible = true
925
           // this.$router.push("/outpatientDoctorStation/treatPrint?record="+this.record_date+"&prescription_id="+this.prescription_id+"&ids="+ids+"&patient_id="+this.patientid)
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
     created() {
1009
     created() {

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

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