32 lines
890 B
PHP
32 lines
890 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',
|
|
'order_product_id' => 'Order Product',
|
|
'customer_id' => 'Customer',
|
|
'quantity' => 'Quantity',
|
|
'opened' => 'Opened',
|
|
'rma_reason_id' => 'Reason ID',
|
|
'type' => 'Type',
|
|
|
|
'status_pending' => 'Pending',
|
|
'status_rejected' => 'Rejected',
|
|
'status_approved' => 'Approved',
|
|
'status_shipped' => 'Shipped',
|
|
'status_completed' => 'Completed',
|
|
'type_return' => 'Return',
|
|
'type_exchange' => 'Exchange',
|
|
'type_repair' => 'Repair',
|
|
'type_reissue' => 'Reissue',
|
|
'type_refund' => 'Refund',
|
|
];
|