forked from skilld-labs/go-odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
account_tax_report.go
139 lines (122 loc) · 4.78 KB
/
account_tax_report.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
package odoo
import (
"fmt"
)
// AccountTaxReport represents account.tax.report model.
type AccountTaxReport struct {
LastUpdate *Time `xmlrpc:"__last_update,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"`
Id *Int `xmlrpc:"id,omptempty"`
JournalIds *Relation `xmlrpc:"journal_ids,omptempty"`
TargetMove *Selection `xmlrpc:"target_move,omptempty"`
WriteDate *Time `xmlrpc:"write_date,omptempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omptempty"`
}
// AccountTaxReports represents array of account.tax.report model.
type AccountTaxReports []AccountTaxReport
// AccountTaxReportModel is the odoo model name.
const AccountTaxReportModel = "account.tax.report"
// Many2One convert AccountTaxReport to *Many2One.
func (atr *AccountTaxReport) Many2One() *Many2One {
return NewMany2One(atr.Id.Get(), "")
}
// CreateAccountTaxReport creates a new account.tax.report model and returns its id.
func (c *Client) CreateAccountTaxReport(atr *AccountTaxReport) (int64, error) {
ids, err := c.CreateAccountTaxReports([]*AccountTaxReport{atr})
if err != nil {
return -1, err
}
if len(ids) == 0 {
return -1, nil
}
return ids[0], nil
}
// CreateAccountTaxReport creates a new account.tax.report model and returns its id.
func (c *Client) CreateAccountTaxReports(atrs []*AccountTaxReport) ([]int64, error) {
var vv []interface{}
for _, v := range atrs {
vv = append(vv, v)
}
return c.Create(AccountTaxReportModel, vv)
}
// UpdateAccountTaxReport updates an existing account.tax.report record.
func (c *Client) UpdateAccountTaxReport(atr *AccountTaxReport) error {
return c.UpdateAccountTaxReports([]int64{atr.Id.Get()}, atr)
}
// UpdateAccountTaxReports updates existing account.tax.report records.
// All records (represented by ids) will be updated by atr values.
func (c *Client) UpdateAccountTaxReports(ids []int64, atr *AccountTaxReport) error {
return c.Update(AccountTaxReportModel, ids, atr)
}
// DeleteAccountTaxReport deletes an existing account.tax.report record.
func (c *Client) DeleteAccountTaxReport(id int64) error {
return c.DeleteAccountTaxReports([]int64{id})
}
// DeleteAccountTaxReports deletes existing account.tax.report records.
func (c *Client) DeleteAccountTaxReports(ids []int64) error {
return c.Delete(AccountTaxReportModel, ids)
}
// GetAccountTaxReport gets account.tax.report existing record.
func (c *Client) GetAccountTaxReport(id int64) (*AccountTaxReport, error) {
atrs, err := c.GetAccountTaxReports([]int64{id})
if err != nil {
return nil, err
}
if atrs != nil && len(*atrs) > 0 {
return &((*atrs)[0]), nil
}
return nil, fmt.Errorf("id %v of account.tax.report not found", id)
}
// GetAccountTaxReports gets account.tax.report existing records.
func (c *Client) GetAccountTaxReports(ids []int64) (*AccountTaxReports, error) {
atrs := &AccountTaxReports{}
if err := c.Read(AccountTaxReportModel, ids, nil, atrs); err != nil {
return nil, err
}
return atrs, nil
}
// FindAccountTaxReport finds account.tax.report record by querying it with criteria.
func (c *Client) FindAccountTaxReport(criteria *Criteria) (*AccountTaxReport, error) {
atrs := &AccountTaxReports{}
if err := c.SearchRead(AccountTaxReportModel, criteria, NewOptions().Limit(1), atrs); err != nil {
return nil, err
}
if atrs != nil && len(*atrs) > 0 {
return &((*atrs)[0]), nil
}
return nil, fmt.Errorf("account.tax.report was not found with criteria %v", criteria)
}
// FindAccountTaxReports finds account.tax.report records by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountTaxReports(criteria *Criteria, options *Options) (*AccountTaxReports, error) {
atrs := &AccountTaxReports{}
if err := c.SearchRead(AccountTaxReportModel, criteria, options, atrs); err != nil {
return nil, err
}
return atrs, nil
}
// FindAccountTaxReportIds finds records ids by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountTaxReportIds(criteria *Criteria, options *Options) ([]int64, error) {
ids, err := c.Search(AccountTaxReportModel, criteria, options)
if err != nil {
return []int64{}, err
}
return ids, nil
}
// FindAccountTaxReportId finds record id by querying it with criteria.
func (c *Client) FindAccountTaxReportId(criteria *Criteria, options *Options) (int64, error) {
ids, err := c.Search(AccountTaxReportModel, criteria, options)
if err != nil {
return -1, err
}
if len(ids) > 0 {
return ids[0], nil
}
return -1, fmt.Errorf("account.tax.report was not found with criteria %v and options %v", criteria, options)
}