55 lines
1.9 KiB
PHP
55 lines
1.9 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' => 'numéro de commande',
|
|
'customer_name' => 'nom du client',
|
|
'payment_method' => 'mode de paiement',
|
|
'email' => 'Email',
|
|
'telephone' => 'numéro de contact',
|
|
'created_at' => 'temps de creation',
|
|
'updated_at' => 'temps de mise à jour',
|
|
'status' => 'Etat',
|
|
'status_format' => 'Etat',
|
|
'total' => 'commande totale',
|
|
'express_number' => 'numéro de commande express',
|
|
'express_company' => 'entreprise de messagerie',
|
|
'order_shipments' => 'informations sur l\'expédition',
|
|
|
|
'address_info' => 'Informations d\'adresse',
|
|
'shipping_address' => 'adresse de livraison',
|
|
'payment_address' => 'Adresse de facturation',
|
|
'order_status' => 'Statut de la commande',
|
|
'current_status' => 'état actuel',
|
|
'change_to_status' => 'Modifier le statut',
|
|
'comment' => 'Remarques',
|
|
'submit_status' => 'état de mise à jour',
|
|
|
|
'product_info' => 'Information produit',
|
|
'product_name' => 'Nom',
|
|
'product_price' => 'le prix',
|
|
'product_sub_price' => 'Total',
|
|
'product_quantity' => 'quantité',
|
|
'product_sku' => 'SKU',
|
|
|
|
'action_history' => 'Journal des opérations',
|
|
'history_status' => 'Etat',
|
|
'history_comment' => 'Remarque',
|
|
'history_created_at' => 'Actualisé',
|
|
|
|
'unpaid' => 'Être payé',
|
|
'paid' => 'Payé',
|
|
'shipped' => 'Expédié',
|
|
'completed' => 'complété',
|
|
'cancelled' => 'Annulé',
|
|
];
|