56 lines
1.8 KiB
PHP
56 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 tuikehome.com - All Rights Reserved
|
|
* @link https://www.tuikehome.com
|
|
* @author Edward Yang <service@tuikehome.com>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'id' => 'ID',
|
|
'number' => 'Nomor pesanan',
|
|
'customer_name' => 'Nama Pelanggan',
|
|
'payment_method' => 'Metode Pembayaran',
|
|
'email' => 'Surel',
|
|
'telephone' => 'Nomor kontak',
|
|
'created_at' => 'waktu penciptaan',
|
|
'updated_at' => 'Perbarui waktu',
|
|
'status' => 'Status',
|
|
'status_format' => 'Status',
|
|
'total' => 'Total pesanan',
|
|
'express_number' => 'nomor pelacakan',
|
|
'express_company' => 'kurir',
|
|
|
|
'order_shipments' => 'Informasi Pengiriman',
|
|
|
|
'address_info' => 'Informasi Alamat',
|
|
'shipping_address' => 'Alamat pengiriman',
|
|
'payment_address' => 'alamat penagihan',
|
|
'order_status' => 'Status Pesanan',
|
|
'current_status' => 'keadaan saat ini',
|
|
'change_to_status' => 'ubah status',
|
|
'comment' => 'Informasi Keterangan',
|
|
'submit_status' => 'Perbarui Status',
|
|
|
|
'product_info' => 'Informasi Produk',
|
|
'product_name' => 'Nama',
|
|
'product_price' => 'Harga',
|
|
'product_sub_price' => 'Subtotal',
|
|
'product_quantity' => 'kuantitas',
|
|
'product_sku' => 'SKU',
|
|
|
|
'action_history' => 'log operasi',
|
|
'history_status' => 'Status',
|
|
'history_comment' => 'Keterangan',
|
|
'history_created_at' => 'Tanggal Pembaruan',
|
|
|
|
'unpaid' => 'Dibayar',
|
|
'paid' => 'dibayar',
|
|
'shipped' => 'dikirim',
|
|
'completed' => 'Selesai',
|
|
'cancelled' => 'dibatalkan',
|
|
];
|