From ff926d8ff79f05ea2329e6edd378496496dec1f7 Mon Sep 17 00:00:00 2001 From: "sas.fajri" Date: Thu, 28 May 2026 14:52:16 +0700 Subject: [PATCH] FDQPV5 - update sample only time format --- .../mockup/patientlistbarcode-vv-7-cpone-promise/Patient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/mockup/patientlistbarcode-vv-7-cpone-promise/Patient.php b/application/controllers/mockup/patientlistbarcode-vv-7-cpone-promise/Patient.php index 10dd75c..2f3322d 100644 --- a/application/controllers/mockup/patientlistbarcode-vv-7-cpone-promise/Patient.php +++ b/application/controllers/mockup/patientlistbarcode-vv-7-cpone-promise/Patient.php @@ -252,7 +252,7 @@ class Patient extends MY_Controller '' as date_coming_ina, '' as order_datetime, IFNULL(T_OrderHeaderAddOnReceiveSample, 'N') as flagSampleOnly, - IFNULL(DATE_FORMAT(T_OrderHeaderAddOnReceiveSampleTime, '%d-%m-%Y'), '') as sampleOnlyTime + IFNULL(DATE_FORMAT(T_OrderHeaderAddOnReceiveSampleTime, '%d-%m-%Y %H:%i'), '') as sampleOnlyTime FROM t_orderheader JOIN m_patient ON T_OrderHeaderM_PatientID = M_PatientID @@ -356,7 +356,7 @@ class Patient extends MY_Controller IFNULL(M_OrderTypeName, '-') as order_type_name, IFNULL(M_OrderTypeCode, '-') as order_type_code, IFNULL(T_OrderHeaderAddOnReceiveSample, 'N') as flagSampleOnly, - IFNULL(DATE_FORMAT(T_OrderHeaderAddOnReceiveSampleTime, '%d-%m-%Y'), '') as sampleOnlyTime + IFNULL(DATE_FORMAT(T_OrderHeaderAddOnReceiveSampleTime, '%d-%m-%Y %H:%i'), '') as sampleOnlyTime FROM t_orderheader JOIN m_patient ON T_OrderHeaderM_PatientID = M_PatientID JOIN corporate ON T_OrderHeaderCorporateID = CorporateID