mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
92 lines
2.8 KiB
PHP
92 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
$db['order_platformsplit'] = array (
|
|
'columns' => array(
|
|
'id' => array(
|
|
'type' => 'int unsigned',
|
|
'required' => true,
|
|
'pkey' => true,
|
|
'editable' => false,
|
|
'extra' => 'auto_increment',
|
|
),
|
|
'order_id' => array(
|
|
'type' => 'table:orders@ome',
|
|
'required' => true,
|
|
'default' => 0,
|
|
'editable' => false,
|
|
'label' => '订单ID',
|
|
'width' => 120,
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'order' => 1,
|
|
),
|
|
'obj_id' => array (
|
|
'type' => 'table:order_objects@ome',
|
|
'required' => true,
|
|
'default' => 0,
|
|
'editable' => false,
|
|
'label' => '子单ID',
|
|
'width' => 90,
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'order' => 10,
|
|
),
|
|
'split_oid' => array (
|
|
'type' => 'varchar(30)',
|
|
'editable' => false,
|
|
'label' => '拆分子单号',
|
|
'width' => 120,
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'order' => 12,
|
|
),
|
|
'bn' => array (
|
|
'type' => 'varchar(40)',
|
|
'editable' => false,
|
|
'label' => '销售物料编码',
|
|
'width' => 120,
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'order' => 12,
|
|
),
|
|
'num' => array (
|
|
'type' => 'number',
|
|
'editable' => false,
|
|
'label' => '拆分数量',
|
|
'width' => 120,
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'order' => 12,
|
|
),
|
|
'create_time' => array(
|
|
'type' => 'time',
|
|
'label' => '创建时间',
|
|
'width' => 130,
|
|
'editable' => false,
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'order' => 98,
|
|
),
|
|
),
|
|
'index' => array(
|
|
|
|
),
|
|
'comment' => '订单平台拆分表',
|
|
'engine' => 'innodb',
|
|
'version' => '$Rev: $',
|
|
); |