mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-13 14:09:20 +08:00
165 lines
3.7 KiB
Go
165 lines
3.7 KiB
Go
|
/***************************************************
|
||
|
** @Desc : This file for 首页
|
||
|
** @Time : 19.11.30 11:49
|
||
|
** @Author : Joker
|
||
|
** @File : index
|
||
|
** @Last Modified by : Joker
|
||
|
** @Last Modified time: 19.11.30 11:49
|
||
|
** @Software: GoLand
|
||
|
****************************************************/
|
||
|
package controllers
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"juhe/jhagent/sys/enum"
|
||
|
"juhe/service/models"
|
||
|
)
|
||
|
|
||
|
type Index struct {
|
||
|
KeepSession
|
||
|
}
|
||
|
|
||
|
// 首页
|
||
|
// @router /index/ui/ [get,post]
|
||
|
func (c *Index) ShowUI() {
|
||
|
us := c.GetSession(enum.UserSession)
|
||
|
u := us.(models.AgentInfo)
|
||
|
|
||
|
c.Data["userName"] = u.AgentName
|
||
|
c.TplName = "index.html"
|
||
|
}
|
||
|
|
||
|
// 加载用户账户金额信息
|
||
|
// @router /index/loadInfo/
|
||
|
func (c *Index) LoadUserAccountInfo() {
|
||
|
us := c.GetSession(enum.UserSession)
|
||
|
u := us.(models.AgentInfo)
|
||
|
|
||
|
ac := models.GetAccountByUid(u.AgentUid)
|
||
|
|
||
|
info := make(map[string]interface{})
|
||
|
// 账户余额
|
||
|
info["balanceAmt"] = pubMethod.FormatFloat64ToString(ac.Balance)
|
||
|
|
||
|
// 可用余额
|
||
|
info["settAmount"] = pubMethod.FormatFloat64ToString(ac.WaitAmount)
|
||
|
|
||
|
// 冻结金额
|
||
|
info["freezeAmt"] = pubMethod.FormatFloat64ToString(ac.FreezeAmount)
|
||
|
|
||
|
// 押款金额
|
||
|
info["amountFrozen"] = pubMethod.FormatFloat64ToString(ac.LoanAmount)
|
||
|
|
||
|
c.Data["json"] = info
|
||
|
c.ServeJSON()
|
||
|
c.StopRun()
|
||
|
}
|
||
|
|
||
|
// 加载总订单信息
|
||
|
// @router /index/load_count_order
|
||
|
func (c *Index) LoadCountOrder() {
|
||
|
us := c.GetSession(enum.UserSession)
|
||
|
u := us.(models.AgentInfo)
|
||
|
|
||
|
md := models.GetMerchantDeployByUid(u.AgentUid)
|
||
|
|
||
|
type orderInPayWay struct {
|
||
|
PayWayName string // 支付方式名
|
||
|
OrderCount int // 订单数
|
||
|
SucOrderCount int // 成功订单数
|
||
|
SucRate string // 成功率
|
||
|
}
|
||
|
|
||
|
ways := make([]orderInPayWay, len(md))
|
||
|
|
||
|
for k, v := range md {
|
||
|
in := make(map[string]string)
|
||
|
in["agent_uid"] = u.AgentUid
|
||
|
|
||
|
ways[k].PayWayName = models.GetRoadInfoByRoadUid(v.SingleRoadUid).ProductName
|
||
|
|
||
|
in["road_uid"] = v.SingleRoadUid
|
||
|
ways[k].OrderCount = models.GetOrderLenByMap(in)
|
||
|
|
||
|
in["status"] = enum.SUCCESS
|
||
|
ways[k].SucOrderCount = models.GetOrderLenByMap(in)
|
||
|
|
||
|
if ways[k].OrderCount == 0 {
|
||
|
ways[k].SucRate = "0"
|
||
|
continue
|
||
|
}
|
||
|
ways[k].SucRate = fmt.Sprintf("%0.4f", float64(ways[k].SucOrderCount)/float64(ways[k].OrderCount))
|
||
|
}
|
||
|
|
||
|
c.Data["json"] = ways
|
||
|
c.ServeJSON()
|
||
|
c.StopRun()
|
||
|
}
|
||
|
|
||
|
// 加载总订单数
|
||
|
// @router /index/loadOrders
|
||
|
func (c *Index) LoadOrderCount() {
|
||
|
us := c.GetSession(enum.UserSession)
|
||
|
u := us.(models.AgentInfo)
|
||
|
|
||
|
out := make(map[string]interface{})
|
||
|
|
||
|
in := make(map[string]string)
|
||
|
in["agent_uid"] = u.AgentUid
|
||
|
out["orders"] = models.GetOrderLenByMap(in)
|
||
|
|
||
|
in["status"] = enum.SUCCESS
|
||
|
out["suc_orders"] = models.GetOrderLenByMap(in)
|
||
|
|
||
|
if out["orders"].(int) == 0 {
|
||
|
out["suc_rate"] = 0
|
||
|
} else {
|
||
|
out["suc_rate"] = fmt.Sprintf("%0.4f", float64(out["suc_orders"].(int))/float64(out["orders"].(int)))
|
||
|
}
|
||
|
|
||
|
c.Data["json"] = out
|
||
|
c.ServeJSON()
|
||
|
c.StopRun()
|
||
|
}
|
||
|
|
||
|
// 加载用户支付配置
|
||
|
// @router /index/show_pay_way_ui
|
||
|
func (c *Index) LoadUserPayWayUI() {
|
||
|
us := c.GetSession(enum.UserSession)
|
||
|
u := us.(models.AgentInfo)
|
||
|
|
||
|
c.Data["userName"] = u.AgentName
|
||
|
c.TplName = "pay_way.html"
|
||
|
}
|
||
|
|
||
|
// @router /index/pay_way
|
||
|
func (c *Index) LoadUserPayWay() {
|
||
|
us := c.GetSession(enum.UserSession)
|
||
|
u := us.(models.AgentInfo)
|
||
|
|
||
|
md := models.GetMerchantDeployByUid(u.AgentUid)
|
||
|
|
||
|
type payConfig struct {
|
||
|
No string // 通道编号
|
||
|
Name string // 产品名
|
||
|
PlatRate float64 // 通道费率
|
||
|
AgentRate float64 // 通道费率
|
||
|
}
|
||
|
|
||
|
ways := make([]payConfig, len(md))
|
||
|
|
||
|
for k, v := range md {
|
||
|
road := models.GetRoadInfoByRoadUid(v.SingleRoadUid)
|
||
|
ways[k].No = road.RoadUid
|
||
|
|
||
|
ways[k].Name = road.ProductName
|
||
|
|
||
|
ways[k].PlatRate = road.BasicFee + v.SingleRoadPlatformRate + v.SingleRoadAgentRate
|
||
|
ways[k].AgentRate = v.SingleRoadAgentRate
|
||
|
}
|
||
|
|
||
|
c.Data["json"] = ways
|
||
|
c.ServeJSON()
|
||
|
c.StopRun()
|
||
|
}
|