-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathres_lang.go
129 lines (113 loc) · 4.09 KB
/
res_lang.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
package odoo
import (
"fmt"
)
// ResLang represents res.lang model.
type ResLang struct {
LastUpdate *Time `xmlrpc:"__last_update,omptempty"`
Active *Bool `xmlrpc:"active,omptempty"`
Code *String `xmlrpc:"code,omptempty"`
CreateDate *Time `xmlrpc:"create_date,omptempty"`
CreateUid *Many2One `xmlrpc:"create_uid,omptempty"`
DateFormat *String `xmlrpc:"date_format,omptempty"`
DecimalPoint *String `xmlrpc:"decimal_point,omptempty"`
Direction *Selection `xmlrpc:"direction,omptempty"`
DisplayName *String `xmlrpc:"display_name,omptempty"`
Grouping *String `xmlrpc:"grouping,omptempty"`
Id *Int `xmlrpc:"id,omptempty"`
IsoCode *String `xmlrpc:"iso_code,omptempty"`
Name *String `xmlrpc:"name,omptempty"`
ThousandsSep *String `xmlrpc:"thousands_sep,omptempty"`
TimeFormat *String `xmlrpc:"time_format,omptempty"`
Translatable *Bool `xmlrpc:"translatable,omptempty"`
WriteDate *Time `xmlrpc:"write_date,omptempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omptempty"`
}
// ResLangs represents array of res.lang model.
type ResLangs []ResLang
// ResLangModel is the odoo model name.
const ResLangModel = "res.lang"
// Many2One convert ResLang to *Many2One.
func (rl *ResLang) Many2One() *Many2One {
return NewMany2One(rl.Id.Get(), "")
}
// CreateResLang creates a new res.lang model and returns its id.
func (c *Client) CreateResLang(rl *ResLang) (int64, error) {
return c.Create(ResLangModel, rl)
}
// UpdateResLang updates an existing res.lang record.
func (c *Client) UpdateResLang(rl *ResLang) error {
return c.UpdateResLangs([]int64{rl.Id.Get()}, rl)
}
// UpdateResLangs updates existing res.lang records.
// All records (represented by ids) will be updated by rl values.
func (c *Client) UpdateResLangs(ids []int64, rl *ResLang) error {
return c.Update(ResLangModel, ids, rl)
}
// DeleteResLang deletes an existing res.lang record.
func (c *Client) DeleteResLang(id int64) error {
return c.DeleteResLangs([]int64{id})
}
// DeleteResLangs deletes existing res.lang records.
func (c *Client) DeleteResLangs(ids []int64) error {
return c.Delete(ResLangModel, ids)
}
// GetResLang gets res.lang existing record.
func (c *Client) GetResLang(id int64) (*ResLang, error) {
rls, err := c.GetResLangs([]int64{id})
if err != nil {
return nil, err
}
if rls != nil && len(*rls) > 0 {
return &((*rls)[0]), nil
}
return nil, fmt.Errorf("id %v of res.lang not found", id)
}
// GetResLangs gets res.lang existing records.
func (c *Client) GetResLangs(ids []int64) (*ResLangs, error) {
rls := &ResLangs{}
if err := c.Read(ResLangModel, ids, nil, rls); err != nil {
return nil, err
}
return rls, nil
}
// FindResLang finds res.lang record by querying it with criteria.
func (c *Client) FindResLang(criteria *Criteria) (*ResLang, error) {
rls := &ResLangs{}
if err := c.SearchRead(ResLangModel, criteria, NewOptions().Limit(1), rls); err != nil {
return nil, err
}
if rls != nil && len(*rls) > 0 {
return &((*rls)[0]), nil
}
return nil, fmt.Errorf("no res.lang was found with criteria %v", criteria)
}
// FindResLangs finds res.lang records by querying it
// and filtering it with criteria and options.
func (c *Client) FindResLangs(criteria *Criteria, options *Options) (*ResLangs, error) {
rls := &ResLangs{}
if err := c.SearchRead(ResLangModel, criteria, options, rls); err != nil {
return nil, err
}
return rls, nil
}
// FindResLangIds finds records ids by querying it
// and filtering it with criteria and options.
func (c *Client) FindResLangIds(criteria *Criteria, options *Options) ([]int64, error) {
ids, err := c.Search(ResLangModel, criteria, options)
if err != nil {
return []int64{}, err
}
return ids, nil
}
// FindResLangId finds record id by querying it with criteria.
func (c *Client) FindResLangId(criteria *Criteria, options *Options) (int64, error) {
ids, err := c.Search(ResLangModel, criteria, options)
if err != nil {
return -1, err
}
if len(ids) > 0 {
return ids[0], nil
}
return -1, fmt.Errorf("no res.lang was found with criteria %v and options %v", criteria, options)
}