mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:23:26 +08:00
# 2022-01-22
### 开源社区版(会员专业版同步修改): --无修改 ### 0.1.1 会员专业版: 【新增】增加微信支付服务商配置,支付微信支付服务商及子商户功能。 【新增】增加根据不同下单类型,控制不同的下单送货模式的功能,如普通商品购买只需要【物流快递,同城配送】,团购秒杀只需要【同城配送,上门自提】,可后台自定义。 【新增】微信直播带货功能新增【上传图片】功能,可直接将本地图片上传至微信侧,获取cdn图片进行处理。 【更新】nuget更新组件。 【修复】修复首页商品组件图片高度被错写array的问题。 【修复】修复生成海报保存路径问题,调整开发版或者预览版小程序获取不到的二维码的报错问题。 【优化】调整订单详情商品tag未设置宽度,导致撑破容易的问题。 【修复】调整订单列表左侧图片大小,防止被遮挡。I4PP1F 【修复】修复微信自定义交易组件申请商品类目失败的问题。#I4QE17
This commit is contained in:
File diff suppressed because it is too large
Load Diff
BIN
数据库/MySql/20220122/完整数据库/coreshop.rar
Normal file
BIN
数据库/MySql/20220122/完整数据库/coreshop.rar
Normal file
Binary file not shown.
44
数据库/MySql/20220122/数据库升级脚本/1、创建表.sql
Normal file
44
数据库/MySql/20220122/数据库升级脚本/1、创建表.sql
Normal file
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server Type : MySQL
|
||||
Source Server Version : 50732
|
||||
Source Schema : coreshop
|
||||
|
||||
Target Server Type : MySQL
|
||||
Target Server Version : 50732
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 22/01/2022 02:20:16
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for CoreCmsOrderDistributionModel
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `CoreCmsOrderDistributionModel`;
|
||||
CREATE TABLE `CoreCmsOrderDistributionModel` (
|
||||
`id` int(11) NOT NULL COMMENT '序列',
|
||||
`orderType` int(11) NOT NULL COMMENT '订单类型',
|
||||
`description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
|
||||
`isOpenMailing` tinyint(4) NOT NULL COMMENT '物流快递',
|
||||
`isOpenHomeDelivery` tinyint(4) NOT NULL COMMENT '同城配送',
|
||||
`isOpenSelfDelivery` tinyint(4) NOT NULL COMMENT '上门自提',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '订单配送模式' ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of CoreCmsOrderDistributionModel
|
||||
-- ----------------------------
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (1, 1, '', 1, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (2, 2, '', 1, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (3, 3, '', 1, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (4, 4, '', 1, 1, 0);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (5, 6, '', 0, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (6, 7, '', 1, 1, 0);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (7, 8, '', 1, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (8, 10, '', 1, 0, 1);
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
4
数据库/MySql/20220122/数据库升级脚本/升级方法.txt
Normal file
4
数据库/MySql/20220122/数据库升级脚本/升级方法.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
1、使用20220118版本完整数据库执行sql。
|
||||
2、后台菜单管理中,针对【下单模式设置】导入按钮。(存在按钮可不需要导入)
|
||||
3、角色添加权限。
|
||||
4、注销登录再次进入。
|
||||
@@ -1,3 +1,6 @@
|
||||
2022-01-22
|
||||
【新增】新增【CoreCmsOrderDistributionModel】表
|
||||
|
||||
2022-01-18
|
||||
1、【新增】新增【WeChatTransactionComponentAuditCategory】【WeChatTransactionComponentAuditCategoryAuditLog】【WeChatTransactionComponentDeliveryCompany】【WeChatTransactionComponentGood】【WeChatTransactionComponentGoodAuditLog】【WeChatTransactionComponentGoodSKU】【WeChatTransactionComponentOrder】【WeChatTransactionComponentThirdCategory】8个自定义交易组件表。
|
||||
2、【新增】【CoreCmsOrder】表新增scene字段,增加场景值功能。
|
||||
|
||||
Reference in New Issue
Block a user