safecheck-client 3.0.39-28 → 3.0.39-30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -518,13 +518,13 @@
518
518
  }
519
519
  }
520
520
  if(this.f_safe_start && this.f_safe_end){
521
- args.condition += `and ch.f_offsite_time >= '${this.f_safe_start}' and ch.f_offsite_time <= '${this.f_safe_end}' `
521
+ args.condition += `and f_offsite_time >= '${this.f_safe_start}' and f_offsite_time <= '${this.f_safe_end}' `
522
522
  } else {
523
523
  if(this.f_safe_start){
524
- args.condition += ` and ch.f_offsite_time >='${this.f_safe_start}'`
524
+ args.condition += ` and f_offsite_time >='${this.f_safe_start}'`
525
525
  }
526
526
  if(this.f_safe_end){
527
- args.condition += ` and ch.f_offsite_time <='${this.f_safe_end}'`
527
+ args.condition += ` and f_offsite_time <='${this.f_safe_end}'`
528
528
  }
529
529
  }
530
530
  this.$refs.paged.$refs.grid.$el.scrollTop = 0