-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathweb_planner.go
125 lines (109 loc) · 4.16 KB
/
web_planner.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
package odoo
// WebPlanner represents web.planner model.
type WebPlanner struct {
LastUpdate *Time `xmlrpc:"__last_update,omitempty"`
Active *Bool `xmlrpc:"active,omitempty"`
CreateDate *Time `xmlrpc:"create_date,omitempty"`
CreateUid *Many2One `xmlrpc:"create_uid,omitempty"`
Data *String `xmlrpc:"data,omitempty"`
DisplayName *String `xmlrpc:"display_name,omitempty"`
Id *Int `xmlrpc:"id,omitempty"`
MenuId *Many2One `xmlrpc:"menu_id,omitempty"`
Name *String `xmlrpc:"name,omitempty"`
PlannerApplication *Selection `xmlrpc:"planner_application,omitempty"`
Progress *Int `xmlrpc:"progress,omitempty"`
TooltipPlanner *String `xmlrpc:"tooltip_planner,omitempty"`
ViewId *Many2One `xmlrpc:"view_id,omitempty"`
WriteDate *Time `xmlrpc:"write_date,omitempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omitempty"`
}
// WebPlanners represents array of web.planner model.
type WebPlanners []WebPlanner
// WebPlannerModel is the odoo model name.
const WebPlannerModel = "web.planner"
// Many2One convert WebPlanner to *Many2One.
func (wp *WebPlanner) Many2One() *Many2One {
return NewMany2One(wp.Id.Get(), "")
}
// CreateWebPlanner creates a new web.planner model and returns its id.
func (c *Client) CreateWebPlanner(wp *WebPlanner) (int64, error) {
ids, err := c.CreateWebPlanners([]*WebPlanner{wp})
if err != nil {
return -1, err
}
if len(ids) == 0 {
return -1, nil
}
return ids[0], nil
}
// CreateWebPlanners creates a new web.planner model and returns its id.
func (c *Client) CreateWebPlanners(wps []*WebPlanner) ([]int64, error) {
var vv []interface{}
for _, v := range wps {
vv = append(vv, v)
}
return c.Create(WebPlannerModel, vv, nil)
}
// UpdateWebPlanner updates an existing web.planner record.
func (c *Client) UpdateWebPlanner(wp *WebPlanner) error {
return c.UpdateWebPlanners([]int64{wp.Id.Get()}, wp)
}
// UpdateWebPlanners updates existing web.planner records.
// All records (represented by ids) will be updated by wp values.
func (c *Client) UpdateWebPlanners(ids []int64, wp *WebPlanner) error {
return c.Update(WebPlannerModel, ids, wp, nil)
}
// DeleteWebPlanner deletes an existing web.planner record.
func (c *Client) DeleteWebPlanner(id int64) error {
return c.DeleteWebPlanners([]int64{id})
}
// DeleteWebPlanners deletes existing web.planner records.
func (c *Client) DeleteWebPlanners(ids []int64) error {
return c.Delete(WebPlannerModel, ids)
}
// GetWebPlanner gets web.planner existing record.
func (c *Client) GetWebPlanner(id int64) (*WebPlanner, error) {
wps, err := c.GetWebPlanners([]int64{id})
if err != nil {
return nil, err
}
return &((*wps)[0]), nil
}
// GetWebPlanners gets web.planner existing records.
func (c *Client) GetWebPlanners(ids []int64) (*WebPlanners, error) {
wps := &WebPlanners{}
if err := c.Read(WebPlannerModel, ids, nil, wps); err != nil {
return nil, err
}
return wps, nil
}
// FindWebPlanner finds web.planner record by querying it with criteria.
func (c *Client) FindWebPlanner(criteria *Criteria) (*WebPlanner, error) {
wps := &WebPlanners{}
if err := c.SearchRead(WebPlannerModel, criteria, NewOptions().Limit(1), wps); err != nil {
return nil, err
}
return &((*wps)[0]), nil
}
// FindWebPlanners finds web.planner records by querying it
// and filtering it with criteria and options.
func (c *Client) FindWebPlanners(criteria *Criteria, options *Options) (*WebPlanners, error) {
wps := &WebPlanners{}
if err := c.SearchRead(WebPlannerModel, criteria, options, wps); err != nil {
return nil, err
}
return wps, nil
}
// FindWebPlannerIds finds records ids by querying it
// and filtering it with criteria and options.
func (c *Client) FindWebPlannerIds(criteria *Criteria, options *Options) ([]int64, error) {
return c.Search(WebPlannerModel, criteria, options)
}
// FindWebPlannerId finds record id by querying it with criteria.
func (c *Client) FindWebPlannerId(criteria *Criteria, options *Options) (int64, error) {
ids, err := c.Search(WebPlannerModel, criteria, options)
if err != nil {
return -1, err
}
return ids[0], nil
}