See999 4 gadus atpakaļ
vecāks
revīzija
89c022c536

+ 8 - 2
src/xt_pages/dialysis/details/dialog/doubleCheckDialog.vue Parādīt failu

215
         let ParamsQuery = this.doubleReview
215
         let ParamsQuery = this.doubleReview
216
         ParamsQuery['patient'] = this.patient.id
216
         ParamsQuery['patient'] = this.patient.id
217
         ParamsQuery['record_date'] = this.record_date
217
         ParamsQuery['record_date'] = this.record_date
218
-        ParamsQuery['check_time'] = this.record_date + ' ' + this.check_time
219
-        ParamsQuery['first_check_time'] = this.record_date + ' ' + this.first_check_time
218
+        if(this.check_time){
219
+          ParamsQuery['check_time'] = this.record_date + ' ' + this.check_time
220
+        }
221
+        // ParamsQuery['check_time'] = this.record_date + ' ' + this.check_time
222
+        if(this.first_check_time){
223
+          ParamsQuery['first_check_time'] = this.record_date + ' ' + this.first_check_time
224
+        }
225
+        
220
         ParamsQuery['creater'] = this.doubleReview.creater
226
         ParamsQuery['creater'] = this.doubleReview.creater
221
         ParamsQuery['modifier'] = this.doubleReview.modifier
227
         ParamsQuery['modifier'] = this.doubleReview.modifier
222
 
228