-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathresource_calendar_leaves.go
126 lines (110 loc) · 4.92 KB
/
resource_calendar_leaves.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"
)
// ResourceCalendarLeaves represents resource.calendar.leaves model.
type ResourceCalendarLeaves struct {
LastUpdate *Time `xmlrpc:"__last_update,omptempty"`
CalendarId *Many2One `xmlrpc:"calendar_id,omptempty"`
CompanyId *Many2One `xmlrpc:"company_id,omptempty"`
CreateDate *Time `xmlrpc:"create_date,omptempty"`
CreateUid *Many2One `xmlrpc:"create_uid,omptempty"`
DateFrom *Time `xmlrpc:"date_from,omptempty"`
DateTo *Time `xmlrpc:"date_to,omptempty"`
DisplayName *String `xmlrpc:"display_name,omptempty"`
HolidayId *Many2One `xmlrpc:"holiday_id,omptempty"`
Id *Int `xmlrpc:"id,omptempty"`
Name *String `xmlrpc:"name,omptempty"`
ResourceId *Many2One `xmlrpc:"resource_id,omptempty"`
Tz *Selection `xmlrpc:"tz,omptempty"`
WriteDate *Time `xmlrpc:"write_date,omptempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omptempty"`
}
// ResourceCalendarLeavess represents array of resource.calendar.leaves model.
type ResourceCalendarLeavess []ResourceCalendarLeaves
// ResourceCalendarLeavesModel is the odoo model name.
const ResourceCalendarLeavesModel = "resource.calendar.leaves"
// Many2One convert ResourceCalendarLeaves to *Many2One.
func (rcl *ResourceCalendarLeaves) Many2One() *Many2One {
return NewMany2One(rcl.Id.Get(), "")
}
// CreateResourceCalendarLeaves creates a new resource.calendar.leaves model and returns its id.
func (c *Client) CreateResourceCalendarLeaves(rcl *ResourceCalendarLeaves) (int64, error) {
return c.Create(ResourceCalendarLeavesModel, rcl)
}
// UpdateResourceCalendarLeaves updates an existing resource.calendar.leaves record.
func (c *Client) UpdateResourceCalendarLeaves(rcl *ResourceCalendarLeaves) error {
return c.UpdateResourceCalendarLeavess([]int64{rcl.Id.Get()}, rcl)
}
// UpdateResourceCalendarLeavess updates existing resource.calendar.leaves records.
// All records (represented by ids) will be updated by rcl values.
func (c *Client) UpdateResourceCalendarLeavess(ids []int64, rcl *ResourceCalendarLeaves) error {
return c.Update(ResourceCalendarLeavesModel, ids, rcl)
}
// DeleteResourceCalendarLeaves deletes an existing resource.calendar.leaves record.
func (c *Client) DeleteResourceCalendarLeaves(id int64) error {
return c.DeleteResourceCalendarLeavess([]int64{id})
}
// DeleteResourceCalendarLeavess deletes existing resource.calendar.leaves records.
func (c *Client) DeleteResourceCalendarLeavess(ids []int64) error {
return c.Delete(ResourceCalendarLeavesModel, ids)
}
// GetResourceCalendarLeaves gets resource.calendar.leaves existing record.
func (c *Client) GetResourceCalendarLeaves(id int64) (*ResourceCalendarLeaves, error) {
rcls, err := c.GetResourceCalendarLeavess([]int64{id})
if err != nil {
return nil, err
}
if rcls != nil && len(*rcls) > 0 {
return &((*rcls)[0]), nil
}
return nil, fmt.Errorf("id %v of resource.calendar.leaves not found", id)
}
// GetResourceCalendarLeavess gets resource.calendar.leaves existing records.
func (c *Client) GetResourceCalendarLeavess(ids []int64) (*ResourceCalendarLeavess, error) {
rcls := &ResourceCalendarLeavess{}
if err := c.Read(ResourceCalendarLeavesModel, ids, nil, rcls); err != nil {
return nil, err
}
return rcls, nil
}
// FindResourceCalendarLeaves finds resource.calendar.leaves record by querying it with criteria.
func (c *Client) FindResourceCalendarLeaves(criteria *Criteria) (*ResourceCalendarLeaves, error) {
rcls := &ResourceCalendarLeavess{}
if err := c.SearchRead(ResourceCalendarLeavesModel, criteria, NewOptions().Limit(1), rcls); err != nil {
return nil, err
}
if rcls != nil && len(*rcls) > 0 {
return &((*rcls)[0]), nil
}
return nil, fmt.Errorf("no resource.calendar.leaves was found with criteria %v", criteria)
}
// FindResourceCalendarLeavess finds resource.calendar.leaves records by querying it
// and filtering it with criteria and options.
func (c *Client) FindResourceCalendarLeavess(criteria *Criteria, options *Options) (*ResourceCalendarLeavess, error) {
rcls := &ResourceCalendarLeavess{}
if err := c.SearchRead(ResourceCalendarLeavesModel, criteria, options, rcls); err != nil {
return nil, err
}
return rcls, nil
}
// FindResourceCalendarLeavesIds finds records ids by querying it
// and filtering it with criteria and options.
func (c *Client) FindResourceCalendarLeavesIds(criteria *Criteria, options *Options) ([]int64, error) {
ids, err := c.Search(ResourceCalendarLeavesModel, criteria, options)
if err != nil {
return []int64{}, err
}
return ids, nil
}
// FindResourceCalendarLeavesId finds record id by querying it with criteria.
func (c *Client) FindResourceCalendarLeavesId(criteria *Criteria, options *Options) (int64, error) {
ids, err := c.Search(ResourceCalendarLeavesModel, criteria, options)
if err != nil {
return -1, err
}
if len(ids) > 0 {
return ids[0], nil
}
return -1, fmt.Errorf("no resource.calendar.leaves was found with criteria %v and options %v", criteria, options)
}