mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2026-02-07 21:45:37 +08:00
66 lines
1.5 KiB
Go
66 lines
1.5 KiB
Go
package bills
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
type IndexAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *IndexAction) Init() {
|
|
this.Nav("", "", "index")
|
|
}
|
|
|
|
func (this *IndexAction) RunGet(params struct {
|
|
PaidFlag int32 `default:"-1"`
|
|
UserId int64
|
|
Month string
|
|
}) {
|
|
countResp, err := this.RPC().UserBillRPC().CountAllUserBills(this.AdminContext(), &pb.CountAllUserBillsRequest{})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
page := this.NewPage(countResp.Count)
|
|
this.Data["page"] = page.AsHTML()
|
|
|
|
billsResp, err := this.RPC().UserBillRPC().ListUserBills(this.AdminContext(), &pb.ListUserBillsRequest{
|
|
PaidFlag: params.PaidFlag,
|
|
UserId: params.UserId,
|
|
Month: params.Month,
|
|
Offset: page.Offset,
|
|
Size: page.Size,
|
|
})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
billMaps := []maps.Map{}
|
|
for _, bill := range billsResp.UserBills {
|
|
var userMap maps.Map = nil
|
|
if bill.User != nil {
|
|
userMap = maps.Map{
|
|
"id": bill.User.Id,
|
|
"fullname": bill.User.Fullname,
|
|
}
|
|
}
|
|
billMaps = append(billMaps, maps.Map{
|
|
"id": bill.Id,
|
|
"isPaid": bill.IsPaid,
|
|
"month": bill.Month,
|
|
"amount": fmt.Sprintf("%.2f", bill.Amount),
|
|
"typeName": bill.TypeName,
|
|
"user": userMap,
|
|
"description": bill.Description,
|
|
})
|
|
}
|
|
this.Data["bills"] = billMaps
|
|
|
|
this.Show()
|
|
}
|