陈少旭 пре 9 месеци
родитељ
комит
aecbfea751
1 измењених фајлова са 4 додато и 2 уклоњено
  1. 4 2
      src/xt_pages/outpatientCharges/outpatientChargesManagement.vue

+ 4 - 2
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue Прегледај датотеку

@@ -223,7 +223,7 @@
223 223
                                 </el-button>
224 224
 
225 225
                                 <el-button
226
-                                  v-if="(hisPatientInfo.id_card_type != 3  && hisPatientInfo.id > 0 &&  items.prescriptions[0].order.id == 0 && org_id != 10340)"
226
+                                  v-if="(hisPatientInfo.id_card_type != 3  && hisPatientInfo.balance_accounts_type != 2 && hisPatientInfo.id > 0 &&  items.prescriptions[0].order.id == 0 && org_id != 10340)"
227 227
                                   size="small"
228 228
                                   @click="open(8,items.med_type,items.prescriptions[0].order,items.prescriptions)"
229 229
                                   type="primary"
@@ -3404,7 +3404,9 @@ export default {
3404 3404
         form['record_time'] = this.record_date
3405 3405
         form['ids'] = this.temp_ids
3406 3406
         var time_arr = this.form.diagnosis_time.split(" ")
3407
-        let hh = new Date().getHours();
3407
+        let hh =  new Date().getHours() < 10
3408
+          ? "0" + new Date().getHours()
3409
+          : new Date().getHours();
3408 3410
         let mf =
3409 3411
           new Date().getMinutes() < 10
3410 3412
             ? "0" + new Date().getMinutes()