shoppingmallv2 init...

This commit is contained in:
최준흠 2023-08-02 19:40:44 +09:00
parent b579e5a4db
commit 03f2e8ea3e
2 changed files with 3 additions and 3 deletions

View File

@ -50,9 +50,9 @@ function getFieldView_OrderHelper($field, $entity, array $fieldFilters, array $f
case 'name':
return sprintf(
"<div style=\"text-align:left;\">%s</div>",
anchor(current_url() . '/view/' . $entity->getPrimaryKey(), $fieldFormOptions[$field][$value], [...$attributes, "target" => "_self"])
anchor(current_url() . '/view/' . $entity->getPrimaryKey(), $value, [...$attributes, "target" => "_self"])
);
break;
break;
case 'quantity':
case 'price':
return number_format(!$value ? 0 : $value);

View File

@ -13,5 +13,5 @@ return [
'updated_at' => "수정일",
'created_at' => "작성일"
],
"STATUS" => ["use" => "주문신청", "unuse" => "주문취소", "confirm" => "주문완료",]
"STATUS" => ["use" => "장바구니", "unuse" => "주문취소", "confirm" => "주문완료",]
];