dbms_init...1

This commit is contained in:
choi.jh 2025-06-19 17:09:20 +09:00
parent d3c10dcba9
commit d9869afa24

View File

@ -19,7 +19,7 @@ class ClientHelper extends CustomerHelper
case 'account_balance':
$extras = ["class" => "btn btn-link", "target" => "_self", ...$extras];
$value = form_label(
number_format(intval($value)),
number_format(intval($value)) . "",
'index',
[
"data-src" => "/admin/customer/account?clientinfo_uid={$viewDatas['entity']->getPK()}&ActionTemplate=popup",
@ -32,7 +32,7 @@ class ClientHelper extends CustomerHelper
case 'coupon_balance':
$extras = ["class" => "btn btn-link", "target" => "_self", ...$extras];
$value = form_label(
number_format(intval($value)),
number_format(intval($value)) . "",
'index',
[
"data-src" => "/admin/customer/coupon?clientinfo_uid={$viewDatas['entity']->getPK()}&ActionTemplate=popup",
@ -45,7 +45,7 @@ class ClientHelper extends CustomerHelper
case 'point_balance':
$extras = ["class" => "btn btn-link", "target" => "_self", ...$extras];
$value = form_label(
number_format(intval($value)),
number_format(intval($value)) . "",
'index',
[
"data-src" => "/admin/customer/point?clientinfo_uid={$viewDatas['entity']->getPK()}&ActionTemplate=popup",