# 开发记录用


EMSHOP 1.1.03
发布时间：2025.10.27
- 系统更新
1. 修复游客查单报错的问题
2. 修复使用商品附加选项数据查单无效的问题




- 近期更新模板 (在后台模板管理中单独更新)
>>> 子鼠 更新至1.1.8
>>> 丑牛 更新至1.1.6
>>> 寅虎 更新至1.1.2

- 近期更新插件 (在后台插件管理中单独更新)
>>> 商品类型【独立卡密】 更新至1.0.1
>>> 商品类型【通用卡密】 更新至1.0.1
>>> 商品类型【虚拟服务】 更新至1.0.1

- 本次更新注意事项


- 数据库变动 (版本号要填更新前的版本号)














0 = 未支付
1 = 待发货
2 = 已发货



delete from table_name where id = 10

insert into table_name () value ()

update table_name set content = 1 where id = 58




-------------------- 异常处理
try {
    $db->beginTransaction();

//    throw new Exception('抛出异常');
    $db->commit();
} catch (Exception $e) {
    $db->rollback();
    output::error($e->getMessage());
}





















