1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * '菜单ID' => [
- * '字段英文名' =》 '字段中文名'
- * ]
- */
- return [
- [
- 'key' => 'plat_order',
- 'value' => '* 原始单号(平台单号)',
- ],
- [
- 'key' => 'sales_order_type',
- 'value' => '* 产品类型',
- ],
- [
- 'key' => 'customer_detail',
- 'value' => '* 客户简称',
- ],
- [
- 'key' => 'plat_type',
- 'value' => '* 店铺(平台类型)',
- ],
- [
- 'key' => 'code',
- 'value' => '* 货品编码(产品编码)',
- ],
- [
- 'key' => 'title',
- 'value' => '* 货品名称(产品名称)',
- ],
- [
- 'key' => 'num',
- 'value' => '* 货品数量',
- ],
- [
- 'key' => 'final_amount',
- 'value' => '* 产品合同金额',
- ],
- [
- 'key' => 'customer',
- 'value' => '客户名称',
- ],
- [
- 'key' => 'discount_fee',
- 'value' => '订单优惠金额',
- ],
- [
- 'key' => 'install_way',
- 'value' => '安装方式',
- ],
- [
- 'key' => 'install_position',
- 'value' => '安装地点',
- ],
- [
- 'key' => 'construction_time',
- 'value' => '施工日期',
- ],
- [
- 'key' => 'handover_time',
- 'value' => '交车日期',
- ],
- ];
|