-
Notifications
You must be signed in to change notification settings - Fork 1
/
product.go
150 lines (138 loc) · 4.46 KB
/
product.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package agent
import (
"time"
"github.com/webx-top/db"
"github.com/webx-top/echo"
"github.com/webx-top/echo/code"
"github.com/webx-top/echo/formfilter"
"github.com/admpub/nging/v5/application/handler"
"github.com/admpub/nging/v5/application/library/common"
modelAgent "github.com/admpub/webx/application/model/official/agent"
modelCustomer "github.com/admpub/webx/application/model/official/customer"
)
func productFormFilter() echo.FormDataFilter {
return formfilter.Build(
formfilter.Exclude(`sold`, `performance`, `created`, `updated`),
formfilter.DateToTimestamp(`expired`),
)
}
func ProductIndex(ctx echo.Context) error {
if operation := ctx.Form(`operation`); operation == `selectProduct` {
return selectPageProduct(ctx)
}
m := modelAgent.NewAgentProduct(ctx)
cond := db.Cond{}
list := []*modelAgent.AgentAndProduct{}
_, err := handler.PagingWithLister(ctx, handler.NewLister(m, &list, func(r db.Result) db.Result {
return r.Relation(`Agent`, modelCustomer.CusomterSafeFieldsSelector).OrderBy(`-id`)
}, cond))
if err == nil {
err = modelAgent.WithProductInfo(ctx, list)
}
ctx.Set(`listData`, list)
ctx.Set(`productTableList`, modelAgent.Source.Slice())
ctx.SetFunc(`getProductTableName`, modelAgent.Source.Get)
return ctx.Render(`official/agent/product_index`, handler.Err(ctx, err))
}
func selectPageProduct(ctx echo.Context) error {
productTable := ctx.Form(`productTable`)
h := modelAgent.Source.GetSelectPageHandler(productTable)
if h != nil {
return h(ctx)
}
return nil
}
func ProductAdd(ctx echo.Context) error {
if operation := ctx.Form(`operation`); operation == `selectProduct` {
return selectPageProduct(ctx)
}
var err error
m := modelAgent.NewAgentProduct(ctx)
if ctx.IsPost() {
err = ctx.MustBind(m.OfficialCustomerAgentProduct, productFormFilter())
if err == nil {
_, err = m.Add()
}
if err == nil {
handler.SendOk(ctx, ctx.T(`操作成功`))
return ctx.Redirect(handler.URLFor(`/official/agent/product_index`))
}
} else {
id := ctx.Formx(`copyId`).Uint()
if id > 0 {
err = m.Get(nil, `id`, id)
if err == nil {
echo.StructToForm(ctx, m.OfficialCustomerAgentProduct, ``, echo.LowerCaseFirstLetter)
ctx.Request().Form().Set(`id`, `0`)
if m.Expired > 0 {
ctx.Request().Form().Set(`expired`, time.Unix(int64(m.Expired), 0).Format(`2006-01-02`))
}
}
}
}
ctx.Set(`activeURL`, `/official/agent/product_index`)
ctx.Set(`productTableList`, modelAgent.Source.Slice())
ctx.Set(`title`, ctx.T(`添加代理产品`))
return ctx.Render(`official/agent/product_edit`, handler.Err(ctx, err))
}
func ProductEdit(ctx echo.Context) error {
if operation := ctx.Form(`operation`); operation == `selectProduct` {
return selectPageProduct(ctx)
}
var err error
id := ctx.Formx(`id`).Uint64()
m := modelAgent.NewAgentProduct(ctx)
err = m.Get(nil, db.Cond{`id`: id})
if err != nil {
return err
}
if ctx.IsPost() {
err = ctx.MustBind(m.OfficialCustomerAgentProduct, productFormFilter())
if err == nil {
m.Id = id
err = m.Edit(nil, db.Cond{`id`: id})
}
if err == nil {
handler.SendOk(ctx, ctx.T(`操作成功`))
return ctx.Redirect(handler.URLFor(`/official/agent/product_index`))
}
} else if ctx.IsAjax() {
disabled := ctx.Query(`disabled`)
if len(disabled) > 0 {
if !common.IsBoolFlag(disabled) {
return ctx.NewError(code.InvalidParameter, ``).SetZone(`disabled`)
}
m.Disabled = disabled
data := ctx.Data()
err = m.UpdateField(nil, `disabled`, disabled, db.Cond{`id`: id})
if err != nil {
data.SetError(err)
return ctx.JSON(data)
}
data.SetInfo(ctx.T(`操作成功`))
return ctx.JSON(data)
}
} else if err == nil {
echo.StructToForm(ctx, m.OfficialCustomerAgentProduct, ``, func(topName, fieldName string) string {
return echo.LowerCaseFirstLetter(topName, fieldName)
})
if m.Expired > 0 {
ctx.Request().Form().Set(`expired`, time.Unix(int64(m.Expired), 0).Format(`2006-01-02`))
}
}
ctx.Set(`activeURL`, `/official/agent/product_index`)
ctx.Set(`productTableList`, modelAgent.Source.Slice())
ctx.Set(`title`, ctx.T(`修改代理产品`))
return ctx.Render(`official/agent/product_edit`, handler.Err(ctx, err))
}
func ProductDelete(ctx echo.Context) error {
id := ctx.Formx(`id`).Uint()
m := modelAgent.NewAgentProduct(ctx)
err := m.Delete(nil, db.Cond{`id`: id})
if err == nil {
handler.SendOk(ctx, ctx.T(`操作成功`))
} else {
handler.SendFail(ctx, err.Error())
}
return ctx.Redirect(handler.URLFor(`/official/agent/product_index`))
}