Files
OMS/app/ome/dbschema/order_preprocess.php
2025-12-28 23:13:25 +08:00

57 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
#订单预处理表,记录预处理的一些状态 wangkezheng 2014-08-12
$db['order_preprocess']=array (
'columns' =>
array (
'preprocess_order_id' =>
array (
'type' => 'table:orders@ome',
'required' => true,
'pkey' => true,
'editable' => false,
),
'preprocess_type' =>
array (
'type' =>
array (
'pay' => 'pay',
'flag' =>'flag',
'logi' =>'logi',
'member' => 'member',
'ordermulti' => 'ordermulti',
'ordersingle' => 'ordersingle',
'branch' => 'branch',
'store' => 'store',
'abnormal' => 'abnormal',
'oversold' => 'oversold',
'tbgift' => 'tbgift',
'shopcombine' => 'shopcombine',
'crm' => 'crm',
'tax' =>'tax'
),
'default' => 'crm',
'required' => true,
'label' => '预处理类型',
'editable' => false,
),
'preprocess_status' =>
array (
'type' =>
array (
0 => '未完成',
1=>'已完成',
),
'default' => '0',
'required' => true,
'label' => '预处理状态',
),
),
'comment' => '订单预处理记录表',
'engine' => 'innodb',
'version' => '$Rev: $',
);