|
@@ -34,6 +34,15 @@
|
34
|
34
|
</el-radio>
|
35
|
35
|
</el-radio-group>
|
36
|
36
|
</div>
|
|
37
|
+
|
|
38
|
+ <div class="mainCell" v-if="this.org_id == 10191">
|
|
39
|
+ <el-radio-group v-model="sch_type" @change="changeScheduleType">
|
|
40
|
+ <el-radio :label="1">上午</el-radio>
|
|
41
|
+ <el-radio :label="2">下午</el-radio>
|
|
42
|
+ <el-radio :label="3">晚上</el-radio>
|
|
43
|
+ <el-radio :label="0">全部</el-radio>
|
|
44
|
+ </el-radio-group>
|
|
45
|
+ </div>
|
37
|
46
|
<div class="mainCell" style="margin-bottom:10px;">
|
38
|
47
|
<el-input size="small" @keyup.enter.native='searchAction' v-model.trim="search_input"
|
39
|
48
|
class="filter-item"/>
|
|
@@ -45,7 +54,6 @@
|
45
|
54
|
<div>
|
46
|
55
|
<el-table :data="patientTableData" :height="tableHeight" border style="width: 100%;"
|
47
|
56
|
:row-style="{ color: '#303133' }"
|
48
|
|
-
|
49
|
57
|
:header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
|
50
|
58
|
highlight-current-row ref="tab"
|
51
|
59
|
@current-change="handleCurrentChange">
|
|
@@ -850,7 +858,6 @@
|
850
|
858
|
</div>
|
851
|
859
|
|
852
|
860
|
</el-tab-pane>
|
853
|
|
-
|
854
|
861
|
</el-tabs>
|
855
|
862
|
</div>
|
856
|
863
|
</div>
|
|
@@ -3946,6 +3953,463 @@ export default {
|
3946
|
3953
|
})
|
3947
|
3954
|
},changeSchtype(){
|
3948
|
3955
|
this.getPatientList()
|
|
3956
|
+ },changeScheduleType(val){
|
|
3957
|
+ this.sch_type = val
|
|
3958
|
+ let params = {
|
|
3959
|
+ 'record_date': this.record_date,
|
|
3960
|
+ 'type': 2,
|
|
3961
|
+ 'sch_type':this.sch_type,
|
|
3962
|
+ }
|
|
3963
|
+ getChargeHisPatientList(params).then(response => {
|
|
3964
|
+ if (response.data.state == 0) {
|
|
3965
|
+ this.$message.error(response.data.msg)
|
|
3966
|
+ return false
|
|
3967
|
+ } else {
|
|
3968
|
+ this.patientTableData = []
|
|
3969
|
+ this.all_table_data = []
|
|
3970
|
+ this.hisPatientDatas = []
|
|
3971
|
+
|
|
3972
|
+ let one_count = 0
|
|
3973
|
+ let two_count = 0
|
|
3974
|
+ let three_count = 0
|
|
3975
|
+ for (let i = 0; i < response.data.data.list.length; i++) {
|
|
3976
|
+ if (response.data.data.list[i].his_patient.length == 0) { //没挂号
|
|
3977
|
+ if (response.data.data.list[i].prescription.length > 0) {
|
|
3978
|
+ let obj = {
|
|
3979
|
+ id: response.data.data.list[i].id,
|
|
3980
|
+ name: response.data.data.list[i].name,
|
|
3981
|
+ number: '',
|
|
3982
|
+ order_status: 0,
|
|
3983
|
+ order_number: '',
|
|
3984
|
+ his_patient_id: 0,
|
|
3985
|
+ prescription: response.data.data.list[i].prescription,
|
|
3986
|
+ schedle: response.data.data.list[i].schedule
|
|
3987
|
+
|
|
3988
|
+ }
|
|
3989
|
+
|
|
3990
|
+ this.all_table_data.push(obj)
|
|
3991
|
+ }
|
|
3992
|
+
|
|
3993
|
+ } else { //挂号
|
|
3994
|
+ if (response.data.data.list[i].his_patient.length == 1) {
|
|
3995
|
+ if (response.data.data.list[i].his_patient[0].orders.length > 0) {
|
|
3996
|
+ for (let b = 0; b < response.data.data.list[i].his_patient[0].orders.length; b++) {
|
|
3997
|
+ let obj = {
|
|
3998
|
+ id: response.data.data.list[i].id,
|
|
3999
|
+ name: response.data.data.list[i].name,
|
|
4000
|
+ number: response.data.data.list[i].his_patient[0].number,
|
|
4001
|
+ order_status: response.data.data.list[i].his_patient[0].orders[b].order_status,
|
|
4002
|
+ his_patient_id: response.data.data.list[i].his_patient[0].id,
|
|
4003
|
+ order_number: response.data.data.list[i].his_patient[0].orders[b].order_number,
|
|
4004
|
+ order_id: response.data.data.list[i].his_patient[0].orders[b].id,
|
|
4005
|
+ prescription: response.data.data.list[i].prescription,
|
|
4006
|
+ schedle: response.data.data.list[i].schedule
|
|
4007
|
+
|
|
4008
|
+
|
|
4009
|
+ }
|
|
4010
|
+ this.all_table_data.push(obj)
|
|
4011
|
+
|
|
4012
|
+ }
|
|
4013
|
+ } else {
|
|
4014
|
+ let obj = {
|
|
4015
|
+ id: response.data.data.list[i].id,
|
|
4016
|
+ name: response.data.data.list[i].name,
|
|
4017
|
+ number: response.data.data.list[i].his_patient[0].number,
|
|
4018
|
+ order_status: 0,
|
|
4019
|
+ his_patient_id: response.data.data.list[i].his_patient[0].id,
|
|
4020
|
+ order_number: '',
|
|
4021
|
+ order_id: 0,
|
|
4022
|
+ prescription: response.data.data.list[i].prescription,
|
|
4023
|
+ schedle: response.data.data.list[i].schedule
|
|
4024
|
+
|
|
4025
|
+
|
|
4026
|
+ }
|
|
4027
|
+ this.all_table_data.push(obj)
|
|
4028
|
+
|
|
4029
|
+ }
|
|
4030
|
+ }
|
|
4031
|
+
|
|
4032
|
+ if (response.data.data.list[i].his_patient.length > 1) {
|
|
4033
|
+ for (let b = 0; b < response.data.data.list[i].his_patient.length; b++) {
|
|
4034
|
+ if (response.data.data.list[i].his_patient[b].orders.length == 0) {
|
|
4035
|
+ let obj = {
|
|
4036
|
+ id: response.data.data.list[i].id,
|
|
4037
|
+ name: response.data.data.list[i].name,
|
|
4038
|
+ number: response.data.data.list[i].his_patient[b].number,
|
|
4039
|
+ order_status: 0,
|
|
4040
|
+ his_patient_id: response.data.data.list[i].his_patient[b].id,
|
|
4041
|
+ order_number: '',
|
|
4042
|
+ order_id: 0,
|
|
4043
|
+ prescription: response.data.data.list[i].prescription,
|
|
4044
|
+ schedle: response.data.data.list[i].schedule
|
|
4045
|
+ }
|
|
4046
|
+ this.all_table_data.push(obj)
|
|
4047
|
+ } else {
|
|
4048
|
+
|
|
4049
|
+ for (let c = 0; c < response.data.data.list[i].his_patient[b].orders.length; c++) {
|
|
4050
|
+ let obj = {
|
|
4051
|
+ id: response.data.data.list[i].id,
|
|
4052
|
+ name: response.data.data.list[i].name,
|
|
4053
|
+ number: response.data.data.list[i].his_patient[b].number,
|
|
4054
|
+ order_status: response.data.data.list[i].his_patient[b].orders[c].order_status,
|
|
4055
|
+ his_patient_id: response.data.data.list[i].his_patient[b].id,
|
|
4056
|
+ order_number: response.data.data.list[i].his_patient[b].orders[c].number,
|
|
4057
|
+ order_id: response.data.data.list[i].his_patient[b].orders[c].id,
|
|
4058
|
+ prescription: response.data.data.list[i].prescription,
|
|
4059
|
+ schedle: response.data.data.list[i].schedule
|
|
4060
|
+
|
|
4061
|
+
|
|
4062
|
+ }
|
|
4063
|
+ this.all_table_data.push(obj)
|
|
4064
|
+ }
|
|
4065
|
+
|
|
4066
|
+ }
|
|
4067
|
+
|
|
4068
|
+ }
|
|
4069
|
+ }
|
|
4070
|
+ }
|
|
4071
|
+ }
|
|
4072
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4073
|
+ if (this.all_table_data[i].his_patient_id > 0) {
|
|
4074
|
+ this.hisPatientDatas.push(this.all_table_data[i])
|
|
4075
|
+ }
|
|
4076
|
+ }
|
|
4077
|
+
|
|
4078
|
+ let unChargePatient = []
|
|
4079
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4080
|
+ let isHasUnCharge = false
|
|
4081
|
+ for (let b = 0; b < this.all_table_data[i].prescription.length; b++) {
|
|
4082
|
+ if (this.all_table_data[i].order_status != 2 && this.all_table_data[i].order_status != 3) {
|
|
4083
|
+ isHasUnCharge = true
|
|
4084
|
+ } else {
|
|
4085
|
+ if (this.all_table_data[i].his_patient_id > 0) {
|
|
4086
|
+ if (this.all_table_data[i].his_patient_id == this.all_table_data[i].prescription[0].his_patient_id) {
|
|
4087
|
+ isHasUnCharge = true
|
|
4088
|
+ }
|
|
4089
|
+ }
|
|
4090
|
+
|
|
4091
|
+ }
|
|
4092
|
+ }
|
|
4093
|
+ if (this.all_table_data[i].his_patient_id > 0 && this.all_table_data[i].order_status != 2 && this.all_table_data[i].order_status != 3) {
|
|
4094
|
+ isHasUnCharge = true
|
|
4095
|
+
|
|
4096
|
+ }
|
|
4097
|
+
|
|
4098
|
+ if (isHasUnCharge) {
|
|
4099
|
+ unChargePatient.push(this.all_table_data[i])
|
|
4100
|
+ }
|
|
4101
|
+
|
|
4102
|
+ }
|
|
4103
|
+ unChargePatient = this.unique_four(unChargePatient)
|
|
4104
|
+ // for(let i = 0; i < unChargePatient.length; i++){
|
|
4105
|
+ //
|
|
4106
|
+ // }
|
|
4107
|
+ var cal_list = []
|
|
4108
|
+
|
|
4109
|
+ for(let i = 0;i < unChargePatient.length; i++){
|
|
4110
|
+
|
|
4111
|
+
|
|
4112
|
+ }
|
|
4113
|
+
|
|
4114
|
+
|
|
4115
|
+ one_count = one_count + unChargePatient.length
|
|
4116
|
+
|
|
4117
|
+ let ChargePatient = []
|
|
4118
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4119
|
+ if (this.all_table_data[i].order_status == 2) {
|
|
4120
|
+ ChargePatient.push(this.all_table_data[i])
|
|
4121
|
+ }
|
|
4122
|
+
|
|
4123
|
+ }
|
|
4124
|
+
|
|
4125
|
+ two_count = two_count + ChargePatient.length
|
|
4126
|
+
|
|
4127
|
+ if (this.radio == 1) {
|
|
4128
|
+ this.all_table_data = this.unique_four(this.all_table_data)
|
|
4129
|
+ }
|
|
4130
|
+
|
|
4131
|
+
|
|
4132
|
+ switch (this.radio) {
|
|
4133
|
+ case 1:
|
|
4134
|
+ this.patientTableData = []
|
|
4135
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4136
|
+ let isHasUnCharge = false
|
|
4137
|
+ for (let b = 0; b < this.all_table_data[i].prescription.length; b++) {
|
|
4138
|
+ if (this.all_table_data[i].order_status != 2 && this.all_table_data[i].order_status != 3) {
|
|
4139
|
+ isHasUnCharge = true
|
|
4140
|
+ } else {
|
|
4141
|
+ if (this.all_table_data[i].his_patient_id > 0) {
|
|
4142
|
+ if (this.all_table_data[i].his_patient_id == this.all_table_data[i].prescription[0].his_patient_id) {
|
|
4143
|
+ isHasUnCharge = true
|
|
4144
|
+ }
|
|
4145
|
+ }
|
|
4146
|
+
|
|
4147
|
+ }
|
|
4148
|
+
|
|
4149
|
+ }
|
|
4150
|
+ if (this.all_table_data[i].his_patient_id > 0 && this.all_table_data[i].order_status != 2 && this.all_table_data[i].order_status != 3) {
|
|
4151
|
+ isHasUnCharge = true
|
|
4152
|
+ }
|
|
4153
|
+ if (isHasUnCharge) {
|
|
4154
|
+ this.patientTableData.push(this.all_table_data[i])
|
|
4155
|
+ }
|
|
4156
|
+ }
|
|
4157
|
+ this.all_patient = this.patientTableData
|
|
4158
|
+ break
|
|
4159
|
+ case 2:
|
|
4160
|
+ this.patientTableData = []
|
|
4161
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4162
|
+ if (this.all_table_data[i].order_status == 2) {
|
|
4163
|
+ this.patientTableData.push(this.all_table_data[i])
|
|
4164
|
+ }
|
|
4165
|
+ }
|
|
4166
|
+ this.all_patient = this.patientTableData
|
|
4167
|
+ break
|
|
4168
|
+ case 4:
|
|
4169
|
+ this.patientTableData = []
|
|
4170
|
+ this.patientTableData = this.all_table_data
|
|
4171
|
+ this.all_patient = this.patientTableData
|
|
4172
|
+ break
|
|
4173
|
+ }
|
|
4174
|
+
|
|
4175
|
+ // this.cal_one = one_count
|
|
4176
|
+ this.cal_two = two_count
|
|
4177
|
+ this.cal_three = one_count + two_count
|
|
4178
|
+ this.current_index = 0
|
|
4179
|
+ this.$refs.tab.setCurrentRow(this.patientTableData[0])
|
|
4180
|
+ // this.getPatientInformation(this.patientTableData[0].id, this.patientTableData[0].order_number, this.patientTableData[0].his_patient_id, this.patientTableData[0].order_id)
|
|
4181
|
+ }
|
|
4182
|
+ })
|
|
4183
|
+
|
|
4184
|
+
|
|
4185
|
+
|
|
4186
|
+ let params2 = {
|
|
4187
|
+ 'record_date': this.record_date,
|
|
4188
|
+ 'type': 1,
|
|
4189
|
+ 'sch_type':this.sch_type,
|
|
4190
|
+ }
|
|
4191
|
+ getChargeHisPatientList(params2).then(response => {
|
|
4192
|
+ if (response.data.state == 0) {
|
|
4193
|
+ this.$message.error(response.data.msg)
|
|
4194
|
+ return false
|
|
4195
|
+ } else {
|
|
4196
|
+ this.patientTableData = []
|
|
4197
|
+ this.all_table_data = []
|
|
4198
|
+ this.hisPatientDatas = []
|
|
4199
|
+
|
|
4200
|
+ let one_count = 0
|
|
4201
|
+ let two_count = 0
|
|
4202
|
+
|
|
4203
|
+ for (let i = 0; i < response.data.data.list.length; i++) {
|
|
4204
|
+ if (response.data.data.list[i].his_patient.length == 0) { //没挂号
|
|
4205
|
+ if (response.data.data.list[i].prescription.length > 0) {
|
|
4206
|
+ let obj = {
|
|
4207
|
+ id: response.data.data.list[i].id,
|
|
4208
|
+ name: response.data.data.list[i].name,
|
|
4209
|
+ number: '',
|
|
4210
|
+ order_status: 0,
|
|
4211
|
+ order_number: '',
|
|
4212
|
+ his_patient_id: 0,
|
|
4213
|
+ prescription: response.data.data.list[i].prescription,
|
|
4214
|
+ schedle: response.data.data.list[i].schedule
|
|
4215
|
+
|
|
4216
|
+ }
|
|
4217
|
+
|
|
4218
|
+ this.all_table_data.push(obj)
|
|
4219
|
+ }
|
|
4220
|
+
|
|
4221
|
+ } else { //挂号
|
|
4222
|
+ if (response.data.data.list[i].his_patient.length == 1) {
|
|
4223
|
+ if (response.data.data.list[i].his_patient[0].orders.length > 0) {
|
|
4224
|
+ for (let b = 0; b < response.data.data.list[i].his_patient[0].orders.length; b++) {
|
|
4225
|
+ let obj = {
|
|
4226
|
+ id: response.data.data.list[i].id,
|
|
4227
|
+ name: response.data.data.list[i].name,
|
|
4228
|
+ number: response.data.data.list[i].his_patient[0].number,
|
|
4229
|
+ order_status: response.data.data.list[i].his_patient[0].orders[b].order_status,
|
|
4230
|
+ his_patient_id: response.data.data.list[i].his_patient[0].id,
|
|
4231
|
+ order_number: response.data.data.list[i].his_patient[0].orders[b].order_number,
|
|
4232
|
+ order_id: response.data.data.list[i].his_patient[0].orders[b].id,
|
|
4233
|
+ prescription: response.data.data.list[i].prescription,
|
|
4234
|
+ schedle: response.data.data.list[i].schedule
|
|
4235
|
+
|
|
4236
|
+
|
|
4237
|
+ }
|
|
4238
|
+ this.all_table_data.push(obj)
|
|
4239
|
+
|
|
4240
|
+ }
|
|
4241
|
+ } else {
|
|
4242
|
+ let obj = {
|
|
4243
|
+ id: response.data.data.list[i].id,
|
|
4244
|
+ name: response.data.data.list[i].name,
|
|
4245
|
+ number: response.data.data.list[i].his_patient[0].number,
|
|
4246
|
+ order_status: 0,
|
|
4247
|
+ his_patient_id: response.data.data.list[i].his_patient[0].id,
|
|
4248
|
+ order_number: '',
|
|
4249
|
+ order_id: 0,
|
|
4250
|
+ prescription: response.data.data.list[i].prescription,
|
|
4251
|
+ schedle: response.data.data.list[i].schedule
|
|
4252
|
+
|
|
4253
|
+
|
|
4254
|
+ }
|
|
4255
|
+ this.all_table_data.push(obj)
|
|
4256
|
+
|
|
4257
|
+ }
|
|
4258
|
+ }
|
|
4259
|
+
|
|
4260
|
+ if (response.data.data.list[i].his_patient.length > 1) {
|
|
4261
|
+ for (let b = 0; b < response.data.data.list[i].his_patient.length; b++) {
|
|
4262
|
+ if (response.data.data.list[i].his_patient[b].orders.length == 0) {
|
|
4263
|
+ let obj = {
|
|
4264
|
+ id: response.data.data.list[i].id,
|
|
4265
|
+ name: response.data.data.list[i].name,
|
|
4266
|
+ number: response.data.data.list[i].his_patient[b].number,
|
|
4267
|
+ order_status: 0,
|
|
4268
|
+ his_patient_id: response.data.data.list[i].his_patient[b].id,
|
|
4269
|
+ order_number: '',
|
|
4270
|
+ order_id: 0,
|
|
4271
|
+ prescription: response.data.data.list[i].prescription,
|
|
4272
|
+ schedle: response.data.data.list[i].schedule
|
|
4273
|
+ }
|
|
4274
|
+ this.all_table_data.push(obj)
|
|
4275
|
+ } else {
|
|
4276
|
+
|
|
4277
|
+ for (let c = 0; c < response.data.data.list[i].his_patient[b].orders.length; c++) {
|
|
4278
|
+ let obj = {
|
|
4279
|
+ id: response.data.data.list[i].id,
|
|
4280
|
+ name: response.data.data.list[i].name,
|
|
4281
|
+ number: response.data.data.list[i].his_patient[b].number,
|
|
4282
|
+ order_status: response.data.data.list[i].his_patient[b].orders[c].order_status,
|
|
4283
|
+ his_patient_id: response.data.data.list[i].his_patient[b].id,
|
|
4284
|
+ order_number: response.data.data.list[i].his_patient[b].orders[c].number,
|
|
4285
|
+ order_id: response.data.data.list[i].his_patient[b].orders[c].id,
|
|
4286
|
+ prescription: response.data.data.list[i].prescription,
|
|
4287
|
+ schedle: response.data.data.list[i].schedule
|
|
4288
|
+
|
|
4289
|
+
|
|
4290
|
+ }
|
|
4291
|
+ this.all_table_data.push(obj)
|
|
4292
|
+ }
|
|
4293
|
+
|
|
4294
|
+ }
|
|
4295
|
+
|
|
4296
|
+ }
|
|
4297
|
+ }
|
|
4298
|
+ }
|
|
4299
|
+ }
|
|
4300
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4301
|
+ if (this.all_table_data[i].his_patient_id > 0) {
|
|
4302
|
+ this.hisPatientDatas.push(this.all_table_data[i])
|
|
4303
|
+ }
|
|
4304
|
+ }
|
|
4305
|
+
|
|
4306
|
+ let unChargePatient = []
|
|
4307
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4308
|
+ let isHasUnCharge = false
|
|
4309
|
+ for (let b = 0; b < this.all_table_data[i].prescription.length; b++) {
|
|
4310
|
+ if (this.all_table_data[i].order_status != 2 && this.all_table_data[i].order_status != 3) {
|
|
4311
|
+ isHasUnCharge = true
|
|
4312
|
+ } else {
|
|
4313
|
+ if (this.all_table_data[i].his_patient_id > 0) {
|
|
4314
|
+ if (this.all_table_data[i].his_patient_id == this.all_table_data[i].prescription[0].his_patient_id) {
|
|
4315
|
+ isHasUnCharge = true
|
|
4316
|
+ }
|
|
4317
|
+ }
|
|
4318
|
+
|
|
4319
|
+ }
|
|
4320
|
+ }
|
|
4321
|
+ if (this.all_table_data[i].his_patient_id > 0 && this.all_table_data[i].order_status != 2 && this.all_table_data[i].order_status != 3) {
|
|
4322
|
+ isHasUnCharge = true
|
|
4323
|
+
|
|
4324
|
+ }
|
|
4325
|
+
|
|
4326
|
+ if (isHasUnCharge) {
|
|
4327
|
+ unChargePatient.push(this.all_table_data[i])
|
|
4328
|
+ }
|
|
4329
|
+
|
|
4330
|
+ }
|
|
4331
|
+ unChargePatient = this.unique_four(unChargePatient)
|
|
4332
|
+ // for(let i = 0; i < unChargePatient.length; i++){
|
|
4333
|
+ //
|
|
4334
|
+ // }
|
|
4335
|
+ var cal_list = []
|
|
4336
|
+
|
|
4337
|
+ for(let i = 0;i < unChargePatient.length; i++){
|
|
4338
|
+
|
|
4339
|
+
|
|
4340
|
+ }
|
|
4341
|
+
|
|
4342
|
+
|
|
4343
|
+ one_count = one_count + unChargePatient.length
|
|
4344
|
+
|
|
4345
|
+ let ChargePatient = []
|
|
4346
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4347
|
+ if (this.all_table_data[i].order_status == 2) {
|
|
4348
|
+ ChargePatient.push(this.all_table_data[i])
|
|
4349
|
+ }
|
|
4350
|
+
|
|
4351
|
+ }
|
|
4352
|
+
|
|
4353
|
+
|
|
4354
|
+
|
|
4355
|
+ if (this.radio == 1) {
|
|
4356
|
+ this.all_table_data = this.unique_four(this.all_table_data)
|
|
4357
|
+ }
|
|
4358
|
+
|
|
4359
|
+
|
|
4360
|
+ switch (this.radio) {
|
|
4361
|
+ case 1:
|
|
4362
|
+ this.patientTableData = []
|
|
4363
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4364
|
+ let isHasUnCharge = false
|
|
4365
|
+ for (let b = 0; b < this.all_table_data[i].prescription.length; b++) {
|
|
4366
|
+ if (this.all_table_data[i].order_status != 2 && this.all_table_data[i].order_status != 3) {
|
|
4367
|
+ isHasUnCharge = true
|
|
4368
|
+ } else {
|
|
4369
|
+ if (this.all_table_data[i].his_patient_id > 0) {
|
|
4370
|
+ if (this.all_table_data[i].his_patient_id == this.all_table_data[i].prescription[0].his_patient_id) {
|
|
4371
|
+ isHasUnCharge = true
|
|
4372
|
+ }
|
|
4373
|
+ }
|
|
4374
|
+
|
|
4375
|
+ }
|
|
4376
|
+
|
|
4377
|
+ }
|
|
4378
|
+ if (this.all_table_data[i].his_patient_id > 0 && this.all_table_data[i].order_status != 2 && this.all_table_data[i].order_status != 3) {
|
|
4379
|
+ isHasUnCharge = true
|
|
4380
|
+ }
|
|
4381
|
+ if (isHasUnCharge) {
|
|
4382
|
+ this.patientTableData.push(this.all_table_data[i])
|
|
4383
|
+ }
|
|
4384
|
+ }
|
|
4385
|
+ this.all_patient = this.patientTableData
|
|
4386
|
+ break
|
|
4387
|
+ case 2:
|
|
4388
|
+ this.patientTableData = []
|
|
4389
|
+ for (let i = 0; i < this.all_table_data.length; i++) {
|
|
4390
|
+ if (this.all_table_data[i].order_status == 2) {
|
|
4391
|
+ this.patientTableData.push(this.all_table_data[i])
|
|
4392
|
+ }
|
|
4393
|
+ }
|
|
4394
|
+ this.all_patient = this.patientTableData
|
|
4395
|
+ break
|
|
4396
|
+ case 4:
|
|
4397
|
+ this.patientTableData = []
|
|
4398
|
+ this.patientTableData = this.all_table_data
|
|
4399
|
+ this.all_patient = this.patientTableData
|
|
4400
|
+ break
|
|
4401
|
+ }
|
|
4402
|
+
|
|
4403
|
+ this.cal_one = one_count
|
|
4404
|
+ // this.cal_two = two_count
|
|
4405
|
+ // this.cal_three = one_count + two_count
|
|
4406
|
+ this.current_index = 0
|
|
4407
|
+ this.$refs.tab.setCurrentRow(this.patientTableData[0])
|
|
4408
|
+ // this.getPatientInformation(this.patientTableData[0].id, this.patientTableData[0].order_number, this.patientTableData[0].his_patient_id, this.patientTableData[0].order_id)
|
|
4409
|
+ }
|
|
4410
|
+ })
|
|
4411
|
+
|
|
4412
|
+
|
3949
|
4413
|
},
|
3950
|
4414
|
changeRadio(id) {
|
3951
|
4415
|
if(this.activeName == 'first') {
|