|
@@ -27,7 +27,7 @@ namespace GxPress.Service.Implement.PlatformData
|
|
|
var nowTime = DateTime.Now.ToString("yyyy-MM-dd");
|
|
|
var sql = $@"SELECT
|
|
|
(SELECT
|
|
|
- SUM(Price)
|
|
|
+ IFNULL(SUM(Price),0)
|
|
|
FROM
|
|
|
tede_order where CreatedDate>'{nowTime}') AS Amount,
|
|
|
(SELECT
|
|
@@ -39,12 +39,12 @@ namespace GxPress.Service.Implement.PlatformData
|
|
|
FROM
|
|
|
tede_user where CreatedDate>'{nowTime}') AS VipUserCount,
|
|
|
(SELECT
|
|
|
- SUM(Price)
|
|
|
+ IFNULL(SUM(Price),0)
|
|
|
FROM
|
|
|
tede_order
|
|
|
WHERE
|
|
|
IsVip = 1 and CreatedDate>'{nowTime}') AS VipAmount";
|
|
|
- var connectionString = ConfigHelper.GetValue("Database: ConnectionString");
|
|
|
+ var connectionString = ConfigHelper.GetValue("Database:ConnectionString");
|
|
|
var database = new Database(DatabaseType.MySql, connectionString);
|
|
|
var connection = database.GetConnection();
|
|
|
return await connection.QueryFirstAsync<PlatformCommerceResult>(sql);
|