forked from skilld-labs/go-odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount_analytic_account.go
123 lines (109 loc) · 5.66 KB
/
account_analytic_account.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
package odoo
import (
"fmt"
)
// AccountAnalyticAccount represents account.analytic.account model
type AccountAnalyticAccount struct {
LastUpdate *Time `xmlrpc:"__last_update,omptempty"`
Active *Bool `xmlrpc:"active,omptempty"`
Balance *Float `xmlrpc:"balance,omptempty"`
Code *String `xmlrpc:"code,omptempty"`
CompanyId *Many2One `xmlrpc:"company_id,omptempty"`
CompanyUomId *Many2One `xmlrpc:"company_uom_id,omptempty"`
CreateDate *Time `xmlrpc:"create_date,omptempty"`
CreateUid *Many2One `xmlrpc:"create_uid,omptempty"`
Credit *Float `xmlrpc:"credit,omptempty"`
CurrencyId *Many2One `xmlrpc:"currency_id,omptempty"`
Debit *Float `xmlrpc:"debit,omptempty"`
DisplayName *String `xmlrpc:"display_name,omptempty"`
Id *Int `xmlrpc:"id,omptempty"`
LineIds *Relation `xmlrpc:"line_ids,omptempty"`
MachineProjectName *String `xmlrpc:"machine_project_name,omptempty"`
MessageChannelIds *Relation `xmlrpc:"message_channel_ids,omptempty"`
MessageFollowerIds *Relation `xmlrpc:"message_follower_ids,omptempty"`
MessageIds *Relation `xmlrpc:"message_ids,omptempty"`
MessageIsFollower *Bool `xmlrpc:"message_is_follower,omptempty"`
MessageLastPost *Time `xmlrpc:"message_last_post,omptempty"`
MessageNeedaction *Bool `xmlrpc:"message_needaction,omptempty"`
MessageNeedactionCounter *Int `xmlrpc:"message_needaction_counter,omptempty"`
MessagePartnerIds *Relation `xmlrpc:"message_partner_ids,omptempty"`
MessageUnread *Bool `xmlrpc:"message_unread,omptempty"`
MessageUnreadCounter *Int `xmlrpc:"message_unread_counter,omptempty"`
Name *String `xmlrpc:"name,omptempty"`
PartnerId *Many2One `xmlrpc:"partner_id,omptempty"`
ProjectCount *Int `xmlrpc:"project_count,omptempty"`
ProjectCreated *Bool `xmlrpc:"project_created,omptempty"`
ProjectIds *Relation `xmlrpc:"project_ids,omptempty"`
TagIds *Relation `xmlrpc:"tag_ids,omptempty"`
WebsiteMessageIds *Relation `xmlrpc:"website_message_ids,omptempty"`
WriteDate *Time `xmlrpc:"write_date,omptempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omptempty"`
}
// AccountAnalyticAccounts represents array of account.analytic.account model
type AccountAnalyticAccounts []AccountAnalyticAccount
// AccountAnalyticAccountModel is the odoo model name
const AccountAnalyticAccountModel = "account.analytic.account"
// Many2One convert AccountAnalyticAccount to *Many2One.
func (aaa *AccountAnalyticAccount) Many2One() *Many2One {
return NewMany2One(aaa.Id.Get(), "")
}
// CreateAccountAnalyticAccount creates a new account.analytic.account model and returns its id.
func (c *Client) CreateAccountAnalyticAccount(aaa *AccountAnalyticAccount) (int64, error) {
return c.Create(AccountAnalyticAccountModel, aaa)
}
// UpdateAccountAnalyticAccount updates an existing account.analytic.account record.
func (c *Client) UpdateAccountAnalyticAccount(aaa *AccountAnalyticAccount) error {
return c.UpdateAccountAnalyticAccounts([]int64{aaa.Id.Get()}, aaa)
}
// UpdateAccountAnalyticAccounts updates existing account.analytic.account records.
// All records (represented by ids) will be updated by aaa values.
func (c *Client) UpdateAccountAnalyticAccounts(ids []int64, aaa *AccountAnalyticAccount) error {
return c.Update(AccountAnalyticAccountModel, ids, aaa)
}
// DeleteAccountAnalyticAccount deletes an existing account.analytic.account record.
func (c *Client) DeleteAccountAnalyticAccount(id int64) error {
return c.DeleteAccountAnalyticAccounts([]int64{id})
}
// DeleteAccountAnalyticAccounts deletes existing account.analytic.account records.
func (c *Client) DeleteAccountAnalyticAccounts(ids []int64) error {
return c.Delete(AccountAnalyticAccountModel, ids)
}
// GetAccountAnalyticAccount gets account.analytic.account existing record.
func (c *Client) GetAccountAnalyticAccount(id int64) (*AccountAnalyticAccount, error) {
aaas, err := c.GetAccountAnalyticAccounts([]int64{id})
if err != nil {
return nil, err
}
if aaas != nil && len(*aaas) > 0 {
return &((*aaas)[0]), nil
}
return nil, fmt.Errorf("id %v of %s not found", id, AccountAnalyticAccountModel)
}
// GetAccountAnalyticAccounts gets account.analytic.account existing records.
func (c *Client) GetAccountAnalyticAccounts(ids []int64) (*AccountAnalyticAccounts, error) {
aaas := &AccountAnalyticAccounts{}
if err := c.Read(AccountAnalyticAccountModel, ids, nil, aaas); err != nil {
return nil, err
}
return aaas, nil
}
// FindAccountAnalyticAccount finds account.analytic.account record by querying it with criteria
func (c *Client) FindAccountAnalyticAccount(criteria *Criteria) (*AccountAnalyticAccount, error) {
aaas := &AccountAnalyticAccounts{}
if err := c.SearchRead(AccountAnalyticAccountModel, criteria, NewOptions().Limit(1), aaas); err != nil {
return nil, err
}
if aaas != nil && len(*aaas) > 0 {
return &((*aaas)[0]), nil
}
return nil, fmt.Errorf("account.analytic.account was not found")
}
// FindAccountAnalyticAccounts finds account.analytic.account records by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountAnalyticAccounts(criteria *Criteria, options *Options) (*AccountAnalyticAccounts, error) {
aaas := &AccountAnalyticAccounts{}
if err := c.SearchRead(AccountAnalyticAccountModel, criteria, options, aaas); err != nil {
return nil, err
}
return aaas, nil
}