mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
55 lines
1.7 KiB
PHP
55 lines
1.7 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['wms_delivery_items'] = array(
|
||
'columns' => array(
|
||
'id' => array(
|
||
'type' => 'int unsigned',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'extra' => 'auto_increment',
|
||
'label' => 'ID',
|
||
'width' => 110,
|
||
'hidden' => true,
|
||
'editable' => false,
|
||
),
|
||
'wd_id' => array(
|
||
'type' => 'table:wms_delivery@console',
|
||
'label' => '第三方退货单',
|
||
),
|
||
'product_bn' => array(
|
||
'type' => 'varchar(255)',
|
||
'default' => '',
|
||
'label' => '货品编码',
|
||
),
|
||
'num' => array(
|
||
'type' => 'number',
|
||
'default' => 0,
|
||
'label' => '出库数',
|
||
),
|
||
'sn_list' => array(
|
||
'type' => 'text',
|
||
'label' => '唯一码',
|
||
),
|
||
'batch' => array(
|
||
'type' => 'text',
|
||
'label' => '批次号',
|
||
),
|
||
'wms_item_id' => array(
|
||
'type' => 'varchar(255)',
|
||
'default' => '',
|
||
'label' => '第三方货品编码',
|
||
),
|
||
),
|
||
'index' => array(
|
||
'idx_product_bn' => array('columns' => array('product_bn')),
|
||
'idx_wms_item_id' => array('columns' => array('wms_item_id')),
|
||
),
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
'comment' => '第三方发货单明细',
|
||
);
|