|
@@ -270,7 +270,7 @@ export default {
|
270
|
270
|
var scheduals = [];
|
271
|
271
|
for (let index = 0; index < this.scheduals.length; index++) {
|
272
|
272
|
const schedual = this.scheduals[index];
|
273
|
|
- if (schedual.prescription == null || schedual.prescription.prescription_doctor == 0) {
|
|
273
|
+ if (schedual.prescription == null || schedual.prescription.creater == 0) {
|
274
|
274
|
if(this.cur_zone_selected > 0 && schedual.device_number.zone.id != this.cur_zone_selected) {
|
275
|
275
|
continue
|
276
|
276
|
}
|
|
@@ -316,7 +316,7 @@ export default {
|
316
|
316
|
var scheduals = [];
|
317
|
317
|
for (let index = 0; index < this.scheduals.length; index++) {
|
318
|
318
|
const schedual = this.scheduals[index];
|
319
|
|
- if (schedual.prescription == null || schedual.prescription.prescription_doctor == 0) {
|
|
319
|
+ if (schedual.prescription == null || schedual.prescription.creater == 0) {
|
320
|
320
|
scheduals.push(schedual);
|
321
|
321
|
}
|
322
|
322
|
}
|
|
@@ -381,7 +381,7 @@ export default {
|
381
|
381
|
schedualMap[schedual.device_number.zone.id] = [];
|
382
|
382
|
}
|
383
|
383
|
if (this.select_index == 1) {
|
384
|
|
- if(schedual.prescription == null || schedual.prescription.prescription_doctor == 0){
|
|
384
|
+ if(schedual.prescription == null || schedual.prescription.creater == 0){
|
385
|
385
|
schedualMap[schedual.device_number.zone.id].push(schedual);
|
386
|
386
|
prescription_count++
|
387
|
387
|
}
|