- [ORDER] 기름 양 입력 후 예상량 리셋 + 픽업날짜 업데이트 fixed
This commit is contained in:
Hyojin Ahn 2026-04-06 09:44:38 -04:00
parent be9a6fc156
commit 97fbbf9f66
2 changed files with 3 additions and 2 deletions

View File

@ -920,7 +920,8 @@ class DailyService extends CONF {
UPDATE tbl_customer UPDATE tbl_customer
SET SET
c_fullquantity = 0, c_fullquantity = 0,
c_lastpickupdate = '{$orderdate}' c_lastpickupdate = '{$orderdate}',
c_lastpickupquantity = '{$afterQty}'
WHERE c_uid = '{$customerUid}' WHERE c_uid = '{$customerUid}'
"; ";

View File

@ -1,7 +1,7 @@
<?php <?php
$destination = isset($_GET['destination']) ? $_GET['destination'] : ''; $destination = isset($_GET['destination']) ? $_GET['destination'] : '';
$mode = isset($_GET['mode']) ? $_GET['mode'] : ''; $mode = isset($_GET['mode']) ? $_GET['mode'] : '';
$appVersion = 'v1.1.6'; $appVersion = 'v1.1.7';
?> ?>
<? <?