From be9a6fc15602e9f6975591699514cba6214f6f41 Mon Sep 17 00:00:00 2001 From: Hyojin Ahn Date: Mon, 6 Apr 2026 09:41:09 -0400 Subject: [PATCH] =?UTF-8?q?v1.1.6=20-=20[ORDER]=20=EA=B8=B0=EB=A6=84=20?= =?UTF-8?q?=EC=96=91=20=EC=9E=85=EB=A0=A5=20=ED=9B=84=20=EC=98=88=EC=83=81?= =?UTF-8?q?=EB=9F=89=20=EB=A6=AC=EC=85=8B=20+=20=ED=94=BD=EC=97=85?= =?UTF-8?q?=EB=82=A0=EC=A7=9C=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public_html/assets/api/daily.php | 6 ++++-- public_html/login_intranet.php | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/public_html/assets/api/daily.php b/public_html/assets/api/daily.php index 7f3a0e4..f1db470 100644 --- a/public_html/assets/api/daily.php +++ b/public_html/assets/api/daily.php @@ -914,17 +914,19 @@ class DailyService extends CONF { if ($status !== 'F' || $visit !== 'Y') return; $customerUid = mysqli_real_escape_string($connect, $after['d_customeruid']); + $orderdate = mysqli_real_escape_string($connect, $after['d_orderdate']); $sql = " UPDATE tbl_customer SET - c_fullquantity = 0 + c_fullquantity = 0, + c_lastpickupdate = '{$orderdate}' WHERE c_uid = '{$customerUid}' "; mysqli_query($connect, $sql); - error_log("[PickupReset] customer={$customerUid} reset fullquantity"); + error_log("[PickupReset] customer={$customerUid} reset fullquantity + lastpickupdate={$orderdate}"); } public function deleteDaily(string $orderdate, string $accountno, string $jobtype, array $opt = []) diff --git a/public_html/login_intranet.php b/public_html/login_intranet.php index 63b1aec..9f6486b 100644 --- a/public_html/login_intranet.php +++ b/public_html/login_intranet.php @@ -1,7 +1,7 @@