32 lines
964 B
PHP
32 lines
964 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' => 'Ordenar',
|
|
'order_product_id' => 'articulo ordenado',
|
|
'customer_id' => 'cliente',
|
|
'quantity' => 'cantidad',
|
|
'opened' => 'desempaquetado',
|
|
'rma_reason_id' => 'razón para regresar',
|
|
'type' => 'Tipo de servicio postventa',
|
|
|
|
'status_pending' => 'para ser procesado',
|
|
'status_rejected' => 'rechazado',
|
|
'status_approved' => 'Aprobado (para ser devuelto por el cliente)',
|
|
'status_shipped' => 'Enviado (artículo devuelto)',
|
|
'status_completed' => 'terminado',
|
|
'type_return' => 'devolver los bienes',
|
|
'type_exchange' => 'intercambio',
|
|
'type_repair' => 'reparar',
|
|
'type_reissue' => 'reeditar producto',
|
|
'type_refund' => 'solo reembolso'
|
|
];
|