56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'id' => 'ID',
|
|
'number' => '주문번호',
|
|
'customer_name' => '고객 이름',
|
|
'payment_method' => '지불방식',
|
|
'email' => 'Email',
|
|
'telephone' => '연락처',
|
|
'created_at' => '만드는 시간',
|
|
'updated_at' => '업데이트 시간',
|
|
'status' => '상태',
|
|
'status_format' => '상태',
|
|
'total' => '주문 총액',
|
|
'express_number' => '송장번호',
|
|
'express_company' => '택배회사',
|
|
|
|
'order_shipments' => '배송정보',
|
|
|
|
'address_info' => '주소 정보',
|
|
'shipping_address' => '배송지 주소',
|
|
'payment_address' => '계산서 주소',
|
|
'order_status' => '주문상태',
|
|
'current_status' => '현재 상태',
|
|
'change_to_status' => '상태 수정',
|
|
'comment' => '메모 정보',
|
|
'submit_status' => '업데이트 상태',
|
|
|
|
'product_info' => '상품정보',
|
|
'product_name' => '이름',
|
|
'product_price' => '가격',
|
|
'product_sub_price' => '소계',
|
|
'product_quantity' => '수량',
|
|
'product_sku' => 'SKU',
|
|
|
|
'action_history' => '작업 로그',
|
|
'history_status' => '상태',
|
|
'history_comment' => '비고',
|
|
'history_created_at' => '업데이트 날짜',
|
|
|
|
'unpaid' => '지불대기',
|
|
'paid' => '지불완료',
|
|
'shipped' => '발송됨',
|
|
'completed' => '완료됨',
|
|
'cancelled' => '취소됨',
|
|
];
|