mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
98 lines
2.8 KiB
PHP
98 lines
2.8 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['refund_apply_luban'] = array(
|
||
'columns' => array(
|
||
'apply_id' => array(
|
||
'type' => 'number',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
),
|
||
'refund_apply_bn' => array(
|
||
'type' => 'varchar(32)',
|
||
'required' => true,
|
||
'default' => '',
|
||
'label' => '退款申请单号',
|
||
'width' => 140,
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'is_title' => true,
|
||
),
|
||
'shop_id' => array(
|
||
'type' => 'table:shop@ome',
|
||
'label' => '来源店铺',
|
||
'width' => 75,
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'filtertype' => 'normal',
|
||
'filterdefault' => true,
|
||
),
|
||
'refuse_message' => array(
|
||
'type' => 'longtext',
|
||
'label' => '拒绝退款原因留言',
|
||
),
|
||
'refuse_proof' => array(
|
||
'type' => 'varchar(255)',
|
||
'label' => '拒绝退款举证上传',
|
||
),
|
||
'outer_lastmodify' => array(
|
||
'label' => '数据推送的修改时间',
|
||
'type' => 'time',
|
||
'width' => 130,
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
),
|
||
'trade_status' => array(
|
||
'type' => 'varchar(64)',
|
||
),
|
||
'refund_type' => array(
|
||
'type' => array(
|
||
'refund' => '退款单',
|
||
'return' => '退货单',
|
||
),
|
||
'default' => 'refund',
|
||
),
|
||
'bill_type' => array(
|
||
'type' => array(
|
||
'refund_bill' => '退款单',
|
||
'return_bill' => '退货单',
|
||
),
|
||
'default' => 'refund_bill',
|
||
),
|
||
'oid' => array(
|
||
'type' => 'varchar(50)',
|
||
'default' => 0,
|
||
'editable' => false,
|
||
'label' => '子订单号',
|
||
),
|
||
'refund_fee' => array(
|
||
'type' => 'money',
|
||
'label' => '需退金额',
|
||
),
|
||
'message_text' =>
|
||
array(
|
||
'type' => 'longtext',
|
||
'label' => '留言凭证',
|
||
'editable' => false,
|
||
),
|
||
),
|
||
'index' =>
|
||
array(
|
||
'ind_refund_apply_bn_shop' => array(
|
||
'columns' => array(
|
||
0 => 'refund_apply_bn',
|
||
1 => 'shop_id',
|
||
2 => 'apply_id',
|
||
),
|
||
'prefix' => 'unique',
|
||
),
|
||
|
||
),
|
||
'comment' => '抖音退款申请附加信息表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |