1. 【新增】售后单售后原因类型支持搜索

2. 【新增】手工创建订单折扣可输入正数

3. 【优化】盘点申请单确认

4. 【修复】采购退货单模拟出库失败问题

5. 【新增】订单金额客户实付与结算金额

6. 【优化】仓库发货统计报表物料名称显示

7. 【优化】自有仓储虚拟发货逻辑

8. 【修复】基础物料分类管理问题
This commit is contained in:
chenping
2026-04-01 11:59:17 +08:00
parent 9341122827
commit 61783b7d01
754 changed files with 46179 additions and 5700 deletions

View File

@@ -0,0 +1,80 @@
<?php
$db['platform_set'] = array(
'columns' => array(
'id' => array(
'type' => 'int unsigned',
'extra' => 'auto_increment',
'pkey' => true,
'editable' => false,
'label' => '自增ID',
),
'shop_type' => array(
'type' => 'varchar(32)',
'label' => '平台编码',
'default' => '',
'is_title' => true,
'in_list' => true,
'default_in_list' => true,
'order' => 10,
),
'scene' => array(
'type' => 'varchar(32)',
'label' => '场景',
'default' => 'delivery',
'in_list' => true,
'default_in_list' => true,
'order' => 20,
'comment' => '可选值delivery发货时效、tmyp_commission天猫优品佣金、tmsd_commission天猫喵速达佣金',
),
'kname' => array(
'type' => 'varchar(255)',
'label' => '配置键名',
'default' => '',
'in_list' => true,
'default_in_list' => true,
'order' => 30,
),
'kvalue' => array(
'type' => 'varchar(255)',
'label' => '配置值',
'default' => '',
'in_list' => true,
'default_in_list' => true,
'order' => 40,
),
'memo' => array(
'type' => 'longtext',
'label' => '备注',
'in_list' => true,
'default_in_list' => true,
'order' => 50,
),
'at_time' => array(
'type' => 'TIMESTAMP',
'label' => '创建时间',
'default' => 'CURRENT_TIMESTAMP',
'in_list' => true,
'default_in_list' => true,
'order' => 1000,
),
'up_time' => array(
'type' => 'TIMESTAMP',
'label' => '更新时间',
'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
'in_list' => true,
'default_in_list' => true,
'order' => 1010,
),
),
'index' => array(
'idx_shop_type_scene' => array('columns' => array('shop_type', 'scene', 'kname'), 'prefix' => 'UNIQUE'),
'idx_scene' => array('columns' => array('scene')),
'idx_at_time' => array('columns' => array('at_time')),
'idx_up_time' => array('columns' => array('up_time')),
),
'engine' => 'innodb',
'commit' => '',
'version' => 'Rev: 41996 $',
);