32 lines
990 B
PHP
32 lines
990 B
PHP
<?php
|
|
/**
|
|
* rma.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-22 19:27:35
|
|
* @modified 2022-08-22 19:27:35
|
|
*/
|
|
|
|
return [
|
|
'order_id' => '주문',
|
|
'order_product_id' => '주문상품',
|
|
'customer_id' => '고객님',
|
|
'quantity' => '수량',
|
|
'opened' => '포장 뜯음',
|
|
'rma_reason_id' => '반품사유',
|
|
'type' => 'A/S 유형',
|
|
|
|
'status_pending' => '처리 대기 중',
|
|
'status_rejected' => '거부됨',
|
|
'status_approved' => '승인 완료(고객님이 상품을 보내주시면)',
|
|
'status_shipped' => '발송(반송)되었습니다',
|
|
'status_completed' => '완료됨',
|
|
'type_return' => '반품',
|
|
'type_exchange' => '교환',
|
|
'type_repair' => '수리',
|
|
'type_reissue' => '재발급 상품',
|
|
'type_refund' => '환불',
|
|
];
|