mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-16 02:25:34 +08:00
1. 【新增】售后单售后原因类型支持搜索
2. 【新增】手工创建订单折扣可输入正数 3. 【优化】盘点申请单确认 4. 【修复】采购退货单模拟出库失败问题 5. 【新增】订单金额客户实付与结算金额 6. 【优化】仓库发货统计报表物料名称显示 7. 【优化】自有仓储虚拟发货逻辑 8. 【修复】基础物料分类管理问题
This commit is contained in:
@@ -180,10 +180,14 @@ $db['bill']=array (
|
||||
'order'=>16,
|
||||
),
|
||||
'disabled' => array(
|
||||
'label' => '匹配状态',
|
||||
'comment' => '匹配状态,true为失败,false为成功',
|
||||
'type' => 'bool',
|
||||
'required' => true,
|
||||
'default' => 'false',
|
||||
'editable' => false,
|
||||
'in_list' => true,
|
||||
'default_in_list' => true,
|
||||
),
|
||||
'confirm_status' => array(
|
||||
'type' => array(
|
||||
@@ -239,6 +243,34 @@ $db['bill']=array (
|
||||
'in_list' => true,
|
||||
'default_in_list' => true,
|
||||
),
|
||||
'ar_verify_status' => array(
|
||||
'type' => 'tinyint(1)',
|
||||
'default' => '2',
|
||||
'label' => '核对状态',
|
||||
'comment' => '核对状态:1-已核对AR,2-需核对AR,3-无需核对AR',
|
||||
'editable' => false,
|
||||
'in_list' => true,
|
||||
'default_in_list' => true,
|
||||
'order' => 80,
|
||||
),
|
||||
'at_time' => array(
|
||||
'type' => 'TIMESTAMP',
|
||||
'label' => '创建时间',
|
||||
'default' => 'CURRENT_TIMESTAMP',
|
||||
'width' => 150,
|
||||
'in_list' => true,
|
||||
'default_in_list' => true,
|
||||
'order' => 90,
|
||||
),
|
||||
'up_time' => array(
|
||||
'type' => 'TIMESTAMP',
|
||||
'label' => '更新时间',
|
||||
'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
|
||||
'width' => 150,
|
||||
'in_list' => true,
|
||||
'default_in_list' => true,
|
||||
'order' => 100,
|
||||
),
|
||||
),
|
||||
'index' => array(
|
||||
'ind_shop_id' => array('columns' => array(0 => 'shop_id')),
|
||||
@@ -252,6 +284,9 @@ $db['bill']=array (
|
||||
'ind_bill_category' => array('columns' => array(0 => 'bill_category')),
|
||||
'ind_split_status' => array('columns' => array(0 => 'split_status')),
|
||||
'ind_split_time' => array('columns' => array(0 => 'split_time')),
|
||||
'ind_ar_verify_status' => array('columns' => array(0 => 'ar_verify_status')),
|
||||
'ind_at_time' => array('columns' => array(0 => 'at_time')),
|
||||
'ind_up_time' => array('columns' => array(0 => 'up_time')),
|
||||
),
|
||||
'comment' => '流水快速表',
|
||||
'engine' => 'innodb',
|
||||
|
||||
Reference in New Issue
Block a user