-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathweb_planner.go
126 lines (110 loc) · 4.21 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
126
package odoo
import (
"fmt"
)
// WebPlanner represents web.planner model.
type WebPlanner struct {
LastUpdate *Time `xmlrpc:"__last_update,omptempty"`
Active *Bool `xmlrpc:"active,omptempty"`
CreateDate *Time `xmlrpc:"create_date,omptempty"`
CreateUid *Many2One `xmlrpc:"create_uid,omptempty"`
Data *String `xmlrpc:"data,omptempty"`
DisplayName *String `xmlrpc:"display_name,omptempty"`
Id *Int `xmlrpc:"id,omptempty"`
MenuId *Many2One `xmlrpc:"menu_id,omptempty"`
Name *String `xmlrpc:"name,omptempty"`
PlannerApplication *Selection `xmlrpc:"planner_application,omptempty"`
Progress *Int `xmlrpc:"progress,omptempty"`
TooltipPlanner *String `xmlrpc:"tooltip_planner,omptempty"`
ViewId *Many2One `xmlrpc:"view_id,omptempty"`
WriteDate *Time `xmlrpc:"write_date,omptempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omptempty"`
}
// 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) {
return c.Create(WebPlannerModel, wp)
}
// 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)
}
// 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
}
if wps != nil && len(*wps) > 0 {
return &((*wps)[0]), nil
}
return nil, fmt.Errorf("id %v of web.planner not found", id)
}
// 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
}
if wps != nil && len(*wps) > 0 {
return &((*wps)[0]), nil
}
return nil, fmt.Errorf("no web.planner was found with criteria %v", criteria)
}
// 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) {
ids, err := c.Search(WebPlannerModel, criteria, options)
if err != nil {
return []int64{}, err
}
return ids, nil
}
// 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
}
if len(ids) > 0 {
return ids[0], nil
}
return -1, fmt.Errorf("no web.planner was found with criteria %v and options %v", criteria, options)
}