mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
165 lines
4.8 KiB
PHP
165 lines
4.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.
|
|
*/
|
|
|
|
/**
|
|
* 订单福袋数据表
|
|
*
|
|
* @author wangbiao@shopex.cn
|
|
* @version 2024.12.26
|
|
*/
|
|
|
|
$db['order_luckybag'] = array (
|
|
'columns' => array(
|
|
'lid' => array(
|
|
'type' => 'int unsigned',
|
|
'required' => true,
|
|
'pkey' => true,
|
|
'editable' => false,
|
|
'extra' => 'auto_increment',
|
|
'order' => 1,
|
|
),
|
|
'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' => 10,
|
|
),
|
|
'obj_id' => array(
|
|
'type' => 'table:order_objects@ome',
|
|
'required' => true,
|
|
'default' => 0,
|
|
'editable' => false,
|
|
'comment' => '订单子单ID,order_objects.obj_id'
|
|
),
|
|
'item_id' => array(
|
|
'type' => 'table:order_items@ome',
|
|
'required' => true,
|
|
'default' => 0,
|
|
'editable' => false,
|
|
'comment' => '订单item层明细ID'
|
|
),
|
|
'combine_id' => array(
|
|
'type' => 'int unsigned',
|
|
'label' => '福袋组合ID',
|
|
'required' => true,
|
|
'order' => 50,
|
|
),
|
|
'combine_bn' => array(
|
|
'type' => 'varchar(32)',
|
|
'label' => '福袋组合编码',
|
|
'editable' => true,
|
|
'searchtype' => 'nequal',
|
|
'filtertype' => 'normal',
|
|
'filterdefault' => 'true',
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'width' => 180,
|
|
'order' => 52,
|
|
),
|
|
'bm_id' => array(
|
|
'type' => 'int unsigned',
|
|
'required' => true,
|
|
'hidden' => true,
|
|
'editable' => false,
|
|
'comment' => '基础物料ID,关联material_basic_material.bm_id'
|
|
),
|
|
'selected_number' => array(
|
|
'type' => 'int unsigned',
|
|
'required' => true,
|
|
'hidden' => true,
|
|
'editable' => false,
|
|
'label' => '选中个数',
|
|
'comment' => '选中个数',
|
|
),
|
|
'include_number' => array(
|
|
'type' => 'int unsigned',
|
|
'required' => true,
|
|
'hidden' => true,
|
|
'editable' => false,
|
|
'label' => '分配货品数量',
|
|
'comment' => '分配货品数量',
|
|
),
|
|
'real_ratio' => array(
|
|
'type' => 'tinyint(3)',
|
|
'editable' => false,
|
|
'label' => '选中比例',
|
|
'default' => 100,
|
|
'hidden' => true,
|
|
),
|
|
'price_rate' => array(
|
|
'type' => 'decimal(5,2)',
|
|
'editable' => false,
|
|
'label' => '金额贡献占比',
|
|
'default' => 100,
|
|
'hidden' => true,
|
|
),
|
|
'at_time' => array(
|
|
'type' => 'TIMESTAMP',
|
|
'label' > '创建时间',
|
|
'default' => 'CURRENT_TIMESTAMP',
|
|
'width' => 120,
|
|
),
|
|
'up_time' => array(
|
|
'type' => 'TIMESTAMP',
|
|
'label' => '更新时间',
|
|
'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
|
|
'width' => 120,
|
|
),
|
|
),
|
|
'index' => array(
|
|
'ind_combine_id' => array(
|
|
'columns' => array(
|
|
0 => 'combine_id',
|
|
),
|
|
),
|
|
'ind_bm_id' => array(
|
|
'columns' => array(
|
|
0 => 'bm_id',
|
|
),
|
|
),
|
|
'ind_order_object' => array(
|
|
'columns' => array(
|
|
0 => 'order_id',
|
|
1 => 'obj_id',
|
|
),
|
|
),
|
|
'ind_order_item' => array(
|
|
'columns' => array(
|
|
0 => 'order_id',
|
|
1 => 'item_id',
|
|
),
|
|
),
|
|
'ind_at_time' => array(
|
|
'columns' => array(
|
|
0 => 'at_time',
|
|
),
|
|
),
|
|
'ind_up_time' => array(
|
|
'columns' => array(
|
|
0 => 'up_time',
|
|
),
|
|
),
|
|
),
|
|
'comment' => '订单福袋表',
|
|
'engine' => 'innodb',
|
|
'version' => '$Rev: $',
|
|
); |