27 lines
709 B
PHP
27 lines
709 B
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 [
|
|
'index' => '税率设置',
|
|
'tax_classes_index' => '税类设置',
|
|
'tax' => '税种',
|
|
'tax_rate' => '税率',
|
|
'type' => '类型',
|
|
'area' => '区域',
|
|
'percentage' => '百分比',
|
|
'fixed_tax_rate' => '固定税率',
|
|
'tax_rates_index' => '税率列表',
|
|
'tax_rates_create' => '创建税率',
|
|
'tax_rates_show' => '税率详情',
|
|
'tax_rates_update' => '更新税率',
|
|
'tax_rates_delete' => '删除税率',
|
|
];
|