| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /**
- * '菜单ID' => [
- * '字段英文名' =》 '字段中文名'
- * ]
- */
- return [
- [
- 'key' =>'order_number',
- 'value' => '催单号',
- ],
- [
- 'key' =>'order_no',
- 'value' => '订单号',
- ],
- [
- 'key' =>'product_code',
- 'value' => '物料编码',
- ],
- [
- 'key' =>'product_title',
- 'value' => '物料名称',
- ],
- [
- 'key' =>'product_size',
- 'value' => '物料规格',
- ],
- [
- 'key' =>'product_unit',
- 'value' => '物料单位',
- ],
- [
- 'key' =>'tl_quantity',
- 'value' => '提拉到货数量',
- ],
- [
- 'key' =>'supply_title',
- 'value' => '人员',
- ],
- [
- 'key' =>'organization_title',
- 'value' => '组织',
- ],
- [
- 'key' =>'tl_arrived_time',
- 'value' => '提拉到货日期',
- ],
- [
- 'key' =>'tl_time',
- 'value' => '提拉应答日期',
- ],
- [
- 'key' =>'days',
- 'value' => '相差天数',
- ],
- [
- 'key' =>'tl_result_title',
- 'value' => '提拉结果',
- ],
- [
- 'key' =>'tl_ways_title',
- 'value' => '提拉方式',
- ],
- [
- 'key' =>'result_quantity',
- 'value' => '提拉应答数量',
- ],
- [
- 'key' =>'status_title',
- 'value' => '催单状态',
- ]
- ];
|