32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
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' => 'commande',
|
|
'order_product_id' => 'commander le produit',
|
|
'customer_id' => 'client',
|
|
'quantity' => 'quantité',
|
|
'opened' => 'déballé',
|
|
'rma_reason_id' => 'raison de retour',
|
|
'type' => 'Type de service après-vente',
|
|
|
|
'status_pending' => 'à traiter',
|
|
'status_rejected' => 'rejeté',
|
|
'status_approved' => 'Approuvé (à retourner par le client)',
|
|
'status_shipped' => 'expédié (marchandises retournées)',
|
|
'status_completed' => 'terminé',
|
|
'type_return' => 'retour',
|
|
'type_exchange' => 'Échange',
|
|
'type_repair' => 'réparer',
|
|
'type_reissue' => 'Réédition du produit',
|
|
'type_refund' => 'Remboursement uniquement',
|
|
];
|