mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
232 lines
8.0 KiB
PHP
232 lines
8.0 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['shop_items'] = array(
|
|
'engine' => 'innodb',
|
|
'version' => '$Rev: $',
|
|
'comment' => app::get('inventorydepth')->_('店铺商品表'),
|
|
'columns' => array(
|
|
'id' => array(
|
|
'type' => 'varchar(32)',
|
|
'required' => true,
|
|
'pkey' => true,
|
|
//'extra' => 'auto_increment',
|
|
'label' => 'ID',
|
|
),
|
|
'shop_id' => array(
|
|
'type' => 'table:shop@ome',
|
|
'required' => true,
|
|
'comment' => app::get('inventorydepth')->_('店铺ID'),
|
|
'filterdefault' => true,
|
|
'filtertype' => true,
|
|
'label' => app::get('inventorydepth')->_('前端店铺'),
|
|
),
|
|
'shop_bn' => array(
|
|
'type' => 'bn',
|
|
'label' => app::get('inventorydepth')->_('店铺编码'),
|
|
'required' => true,
|
|
'in_list' => true,
|
|
'filterdefault' => true,
|
|
'filtertype' => true,
|
|
),
|
|
'shop_bn_crc32' => array(
|
|
'type' => 'bigint(20)',
|
|
'required' => true,
|
|
'default' => 0,
|
|
),
|
|
'shop_name' => array(
|
|
'type' => 'varchar(255)',
|
|
'label' => app::get('inventorydepth')->_('店铺名称'),
|
|
'required' => true,
|
|
//'in_list' => true,
|
|
//'default_in_list' => true,
|
|
//'filterdefault' => true,
|
|
//'filtertype' => true,
|
|
'order' => 20,
|
|
),
|
|
'shop_type' => array(
|
|
'type' => 'varchar(50)',
|
|
'label' => app::get('inventorydepth')->_('店铺类型'),
|
|
'required' => true,
|
|
'default' => '',
|
|
'hidden' => true,
|
|
),
|
|
'iid' => array(
|
|
'type' => 'varchar(50)',
|
|
'label' => app::get('inventorydepth')->_('店铺商品ID'),
|
|
'required' => false,
|
|
'comment' => app::get('inventorydepth')->_('店铺商品ID'),
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'filterdefault' => true,
|
|
'filtertype' => 'textarea',
|
|
),
|
|
'bn' => array(
|
|
'type' => 'bn',
|
|
'required' => true,
|
|
'label' => app::get('inventorydepth')->_('店铺商品编码'),
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'filtertype' => true,
|
|
'order' => 40,
|
|
'searchtype' => 'nequal',
|
|
),
|
|
'title' => array(
|
|
'type' => 'varchar(80)',
|
|
'label' => app::get('inventorydepth')->_('店铺商品名称'),
|
|
'searchtype' => 'has',
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'filterdefault' => true,
|
|
'filtertype' => true,
|
|
'additional' => true,
|
|
'order' => 50,
|
|
),
|
|
'detail_url' => array(
|
|
'type' => 'text',
|
|
'default' => '',
|
|
'label' => app::get('inventorydepth')->_('访问URL'),
|
|
'in_list' => true,
|
|
),
|
|
'approve_status' => array(
|
|
'type' => array(
|
|
'onsale' => app::get('inventorydepth')->_('上架'),
|
|
'instock' => app::get('inventorydepth')->_('下架'),
|
|
//'sale_on_time'=>app::get('inventorydepth')->_('定时上架'),
|
|
),
|
|
'default' => 'onsale',
|
|
'label' => app::get('inventorydepth')->_('商品在架状态'),
|
|
'panel_id' => 'frame_finder_top',
|
|
'filterdefault' => true,
|
|
//'in_list' => true,
|
|
//'default_in_list' => true,
|
|
'filtertype' => true,
|
|
'order' => 10
|
|
),
|
|
'default_img_url' => array(
|
|
'type' => 'text',
|
|
'default' => '',
|
|
'comment' => app::get('inventorydepth')->_('图片地址'),
|
|
),
|
|
'disabled' => array(
|
|
'type' => 'bool',
|
|
'default' => 'false',
|
|
),
|
|
'frame_set' => array(
|
|
'type' => 'bool',
|
|
'label' => app::get('inventorydepth')->_('上下架'),
|
|
'default' => 'true',
|
|
),
|
|
'download_time' => array(
|
|
'type' => 'time',
|
|
'label' => app::get('inventorydepth')->_('同步时间'),
|
|
'default' => 0,
|
|
'in_list' => true,
|
|
'default_in_list' => true,
|
|
'order' => 70
|
|
),
|
|
'price' => array(
|
|
'type' => 'varchar(20)',
|
|
'label' => app::get('inventorydepth')->_('销售价'),
|
|
'default' => 0,
|
|
'in_list' => true,
|
|
),
|
|
'sku_num' => array(
|
|
'type' => 'mediumint(8)',
|
|
'label' => app::get('inventorydepth')->_('SKU数'),
|
|
'default' => 0,
|
|
),
|
|
'store_info' => array(
|
|
'type' => 'varchar(30)',
|
|
'label' => app::get('inventorydepth')->_('前端可售预估数/总可售预估数'),
|
|
'default' => '',
|
|
//'in_list' => true,
|
|
//'width' => 200,
|
|
'hidden' => true,
|
|
),
|
|
'statistical_time' => array(
|
|
'type' => 'time',
|
|
'label' => app::get('inventorydepth')->_('库存信息统计时间'),
|
|
'default' => 0,
|
|
'hidden' => true,
|
|
),
|
|
'shop_store' => array(
|
|
'type' => 'varchar(10)',
|
|
'label' => app::get('inventorydepth')->_('店铺库存'),
|
|
'default' => 0,
|
|
'filtertype' => 'normal',
|
|
'panel_id' => 'frame_finder_top',
|
|
'filterdefault' => true,
|
|
'default_in_list' => true,
|
|
'in_list' => true,
|
|
),
|
|
'taog_store' => array(
|
|
'type' => 'number',
|
|
'label' => app::get('inventorydepth')->_('可售库存'),
|
|
'default' => 0,
|
|
'filtertype' => 'normal',
|
|
'panel_id' => 'frame_finder_top',
|
|
'filterdefault' => true,
|
|
'default_in_list' => true,
|
|
),
|
|
'outer_createtime' => array(
|
|
'type' => 'time',
|
|
'label' => '商品创建时间',
|
|
'default' => 0,
|
|
'in_list' => true,
|
|
'filtertype' => 'time',
|
|
),
|
|
'outer_lastmodify' => array(
|
|
'type' => 'time',
|
|
'label' => '商品更新时间',
|
|
'default' => 0,
|
|
'in_list' => true,
|
|
'filtertype' => 'time',
|
|
),
|
|
),
|
|
'index' => array(
|
|
/*
|
|
'ind_iid_shopid' => array(
|
|
'columns' => array('shop_id','iid'),
|
|
'prefix' => 'UNIQUE',
|
|
),*/
|
|
'idx_iid' => array(
|
|
'columns' => array('iid'),
|
|
),
|
|
|
|
'ind_bn' => array(
|
|
'columns' => array('bn'),
|
|
),
|
|
'ind_shop_bn_crc32' => array(
|
|
'columns' => array('shop_bn_crc32'),
|
|
),
|
|
'ind_outer_createtime' => array(
|
|
'columns' => array('outer_createtime'),
|
|
),
|
|
'ind_outer_lastmodify' => array(
|
|
'columns' => array('outer_lastmodify'),
|
|
),
|
|
'ind_shop_iid' => array(
|
|
'columns' => array(
|
|
0 => 'shop_id',
|
|
1 => 'iid',
|
|
),
|
|
),
|
|
),
|
|
);
|