forked from skilld-labs/go-odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
account_move.go
149 lines (132 loc) · 5.06 KB
/
account_move.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
140
141
142
143
144
145
146
147
148
149
package odoo
import (
"fmt"
)
// AccountMove represents account.move model.
type AccountMove struct {
LastUpdate *Time `xmlrpc:"__last_update,omptempty"`
Amount *Float `xmlrpc:"amount,omptempty"`
CompanyId *Many2One `xmlrpc:"company_id,omptempty"`
CreateDate *Time `xmlrpc:"create_date,omptempty"`
CreateUid *Many2One `xmlrpc:"create_uid,omptempty"`
CurrencyId *Many2One `xmlrpc:"currency_id,omptempty"`
Date *Time `xmlrpc:"date,omptempty"`
DisplayName *String `xmlrpc:"display_name,omptempty"`
DummyAccountId *Many2One `xmlrpc:"dummy_account_id,omptempty"`
Id *Int `xmlrpc:"id,omptempty"`
JournalId *Many2One `xmlrpc:"journal_id,omptempty"`
LineIds *Relation `xmlrpc:"line_ids,omptempty"`
MatchedPercentage *Float `xmlrpc:"matched_percentage,omptempty"`
Name *String `xmlrpc:"name,omptempty"`
Narration *String `xmlrpc:"narration,omptempty"`
PartnerId *Many2One `xmlrpc:"partner_id,omptempty"`
Ref *String `xmlrpc:"ref,omptempty"`
State *Selection `xmlrpc:"state,omptempty"`
StockMoveId *Many2One `xmlrpc:"stock_move_id,omptempty"`
TaxCashBasisRecId *Many2One `xmlrpc:"tax_cash_basis_rec_id,omptempty"`
WriteDate *Time `xmlrpc:"write_date,omptempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omptempty"`
}
// AccountMoves represents array of account.move model.
type AccountMoves []AccountMove
// AccountMoveModel is the odoo model name.
const AccountMoveModel = "account.move"
// Many2One convert AccountMove to *Many2One.
func (am *AccountMove) Many2One() *Many2One {
return NewMany2One(am.Id.Get(), "")
}
// CreateAccountMove creates a new account.move model and returns its id.
func (c *Client) CreateAccountMove(am *AccountMove) (int64, error) {
ids, err := c.CreateAccountMoves([]*AccountMove{am})
if err != nil {
return -1, err
}
if len(ids) == 0 {
return -1, nil
}
return ids[0], nil
}
// CreateAccountMove creates a new account.move model and returns its id.
func (c *Client) CreateAccountMoves(ams []*AccountMove) ([]int64, error) {
var vv []interface{}
for _, v := range ams {
vv = append(vv, v)
}
return c.Create(AccountMoveModel, vv)
}
// UpdateAccountMove updates an existing account.move record.
func (c *Client) UpdateAccountMove(am *AccountMove) error {
return c.UpdateAccountMoves([]int64{am.Id.Get()}, am)
}
// UpdateAccountMoves updates existing account.move records.
// All records (represented by ids) will be updated by am values.
func (c *Client) UpdateAccountMoves(ids []int64, am *AccountMove) error {
return c.Update(AccountMoveModel, ids, am)
}
// DeleteAccountMove deletes an existing account.move record.
func (c *Client) DeleteAccountMove(id int64) error {
return c.DeleteAccountMoves([]int64{id})
}
// DeleteAccountMoves deletes existing account.move records.
func (c *Client) DeleteAccountMoves(ids []int64) error {
return c.Delete(AccountMoveModel, ids)
}
// GetAccountMove gets account.move existing record.
func (c *Client) GetAccountMove(id int64) (*AccountMove, error) {
ams, err := c.GetAccountMoves([]int64{id})
if err != nil {
return nil, err
}
if ams != nil && len(*ams) > 0 {
return &((*ams)[0]), nil
}
return nil, fmt.Errorf("id %v of account.move not found", id)
}
// GetAccountMoves gets account.move existing records.
func (c *Client) GetAccountMoves(ids []int64) (*AccountMoves, error) {
ams := &AccountMoves{}
if err := c.Read(AccountMoveModel, ids, nil, ams); err != nil {
return nil, err
}
return ams, nil
}
// FindAccountMove finds account.move record by querying it with criteria.
func (c *Client) FindAccountMove(criteria *Criteria) (*AccountMove, error) {
ams := &AccountMoves{}
if err := c.SearchRead(AccountMoveModel, criteria, NewOptions().Limit(1), ams); err != nil {
return nil, err
}
if ams != nil && len(*ams) > 0 {
return &((*ams)[0]), nil
}
return nil, fmt.Errorf("account.move was not found with criteria %v", criteria)
}
// FindAccountMoves finds account.move records by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountMoves(criteria *Criteria, options *Options) (*AccountMoves, error) {
ams := &AccountMoves{}
if err := c.SearchRead(AccountMoveModel, criteria, options, ams); err != nil {
return nil, err
}
return ams, nil
}
// FindAccountMoveIds finds records ids by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountMoveIds(criteria *Criteria, options *Options) ([]int64, error) {
ids, err := c.Search(AccountMoveModel, criteria, options)
if err != nil {
return []int64{}, err
}
return ids, nil
}
// FindAccountMoveId finds record id by querying it with criteria.
func (c *Client) FindAccountMoveId(criteria *Criteria, options *Options) (int64, error) {
ids, err := c.Search(AccountMoveModel, criteria, options)
if err != nil {
return -1, err
}
if len(ids) > 0 {
return ids[0], nil
}
return -1, fmt.Errorf("account.move was not found with criteria %v and options %v", criteria, options)
}