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' => 'numero d\'ordine',
|
|
'customer_name' => 'Nome del cliente',
|
|
'payment_method' => 'metodo di pagamento',
|
|
'email' => 'Email',
|
|
'telephone' => 'numero di contatto',
|
|
'created_at' => 'tempo di creazione',
|
|
'updated_at' => 'tempo di aggiornamento',
|
|
'status' => 'stato',
|
|
'status_format' => 'stato',
|
|
'total' => 'ordine totale',
|
|
'express_number' => 'numero ordine espresso',
|
|
'express_company' => 'azienda espressa',
|
|
'order_shipments' => 'informazioni sulla spedizione',
|
|
|
|
'address_info' => 'Informazioni sull\'indirizzo',
|
|
'shipping_address' => 'indirizzo di consegna',
|
|
'payment_address' => 'Indirizzo Di Fatturazione',
|
|
'order_status' => 'Lo stato dell\'ordine',
|
|
'current_status' => 'stato Osservazioni',
|
|
'change_to_status' => 'Modifica stato',
|
|
'comment' => 'Osservazioni',
|
|
'submit_status' => 'aggiorna stato',
|
|
|
|
'product_info' => 'Informazioni sul prodotto',
|
|
'product_name' => 'nome',
|
|
'product_price' => 'prezzo',
|
|
'product_sub_price' => 'totale parziale',
|
|
'product_quantity' => 'quantità',
|
|
'product_sku' => 'SKU',
|
|
|
|
'action_history' => 'Registro delle operazioni',
|
|
'history_status' => 'stato',
|
|
'history_comment' => 'Nota',
|
|
'history_created_at' => 'Aggiornato',
|
|
|
|
'unpaid' => 'Essere pagato',
|
|
'paid' => 'Pagato',
|
|
'shipped' => 'Spedito',
|
|
'completed' => 'completato',
|
|
'cancelled' => 'Annullato',
|
|
];
|