-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathaccounting_report.go
130 lines (114 loc) · 4.82 KB
/
accounting_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
package odoo
import (
"fmt"
)
// AccountingReport represents accounting.report model.
type AccountingReport struct {
LastUpdate *Time `xmlrpc:"__last_update,omptempty"`
AccountReportId *Many2One `xmlrpc:"account_report_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"`
DateFromCmp *Time `xmlrpc:"date_from_cmp,omptempty"`
DateTo *Time `xmlrpc:"date_to,omptempty"`
DateToCmp *Time `xmlrpc:"date_to_cmp,omptempty"`
DebitCredit *Bool `xmlrpc:"debit_credit,omptempty"`
DisplayName *String `xmlrpc:"display_name,omptempty"`
EnableFilter *Bool `xmlrpc:"enable_filter,omptempty"`
FilterCmp *Selection `xmlrpc:"filter_cmp,omptempty"`
Id *Int `xmlrpc:"id,omptempty"`
JournalIds *Relation `xmlrpc:"journal_ids,omptempty"`
LabelFilter *String `xmlrpc:"label_filter,omptempty"`
TargetMove *Selection `xmlrpc:"target_move,omptempty"`
WriteDate *Time `xmlrpc:"write_date,omptempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omptempty"`
}
// AccountingReports represents array of accounting.report model.
type AccountingReports []AccountingReport
// AccountingReportModel is the odoo model name.
const AccountingReportModel = "accounting.report"
// Many2One convert AccountingReport to *Many2One.
func (ar *AccountingReport) Many2One() *Many2One {
return NewMany2One(ar.Id.Get(), "")
}
// CreateAccountingReport creates a new accounting.report model and returns its id.
func (c *Client) CreateAccountingReport(ar *AccountingReport) (int64, error) {
return c.Create(AccountingReportModel, ar)
}
// UpdateAccountingReport updates an existing accounting.report record.
func (c *Client) UpdateAccountingReport(ar *AccountingReport) error {
return c.UpdateAccountingReports([]int64{ar.Id.Get()}, ar)
}
// UpdateAccountingReports updates existing accounting.report records.
// All records (represented by ids) will be updated by ar values.
func (c *Client) UpdateAccountingReports(ids []int64, ar *AccountingReport) error {
return c.Update(AccountingReportModel, ids, ar)
}
// DeleteAccountingReport deletes an existing accounting.report record.
func (c *Client) DeleteAccountingReport(id int64) error {
return c.DeleteAccountingReports([]int64{id})
}
// DeleteAccountingReports deletes existing accounting.report records.
func (c *Client) DeleteAccountingReports(ids []int64) error {
return c.Delete(AccountingReportModel, ids)
}
// GetAccountingReport gets accounting.report existing record.
func (c *Client) GetAccountingReport(id int64) (*AccountingReport, error) {
ars, err := c.GetAccountingReports([]int64{id})
if err != nil {
return nil, err
}
if ars != nil && len(*ars) > 0 {
return &((*ars)[0]), nil
}
return nil, fmt.Errorf("id %v of accounting.report not found", id)
}
// GetAccountingReports gets accounting.report existing records.
func (c *Client) GetAccountingReports(ids []int64) (*AccountingReports, error) {
ars := &AccountingReports{}
if err := c.Read(AccountingReportModel, ids, nil, ars); err != nil {
return nil, err
}
return ars, nil
}
// FindAccountingReport finds accounting.report record by querying it with criteria.
func (c *Client) FindAccountingReport(criteria *Criteria) (*AccountingReport, error) {
ars := &AccountingReports{}
if err := c.SearchRead(AccountingReportModel, criteria, NewOptions().Limit(1), ars); err != nil {
return nil, err
}
if ars != nil && len(*ars) > 0 {
return &((*ars)[0]), nil
}
return nil, fmt.Errorf("no accounting.report was found with criteria %v", criteria)
}
// FindAccountingReports finds accounting.report records by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountingReports(criteria *Criteria, options *Options) (*AccountingReports, error) {
ars := &AccountingReports{}
if err := c.SearchRead(AccountingReportModel, criteria, options, ars); err != nil {
return nil, err
}
return ars, nil
}
// FindAccountingReportIds finds records ids by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountingReportIds(criteria *Criteria, options *Options) ([]int64, error) {
ids, err := c.Search(AccountingReportModel, criteria, options)
if err != nil {
return []int64{}, err
}
return ids, nil
}
// FindAccountingReportId finds record id by querying it with criteria.
func (c *Client) FindAccountingReportId(criteria *Criteria, options *Options) (int64, error) {
ids, err := c.Search(AccountingReportModel, criteria, options)
if err != nil {
return -1, err
}
if len(ids) > 0 {
return ids[0], nil
}
return -1, fmt.Errorf("no accounting.report was found with criteria %v and options %v", criteria, options)
}