forked from skilld-labs/go-odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
account_print_journal.go
141 lines (124 loc) · 5.15 KB
/
account_print_journal.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
package odoo
import (
"fmt"
)
// AccountPrintJournal represents account.print.journal model.
type AccountPrintJournal struct {
LastUpdate *Time `xmlrpc:"__last_update,omptempty"`
AmountCurrency *Bool `xmlrpc:"amount_currency,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"`
SortSelection *Selection `xmlrpc:"sort_selection,omptempty"`
TargetMove *Selection `xmlrpc:"target_move,omptempty"`
WriteDate *Time `xmlrpc:"write_date,omptempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omptempty"`
}
// AccountPrintJournals represents array of account.print.journal model.
type AccountPrintJournals []AccountPrintJournal
// AccountPrintJournalModel is the odoo model name.
const AccountPrintJournalModel = "account.print.journal"
// Many2One convert AccountPrintJournal to *Many2One.
func (apj *AccountPrintJournal) Many2One() *Many2One {
return NewMany2One(apj.Id.Get(), "")
}
// CreateAccountPrintJournal creates a new account.print.journal model and returns its id.
func (c *Client) CreateAccountPrintJournal(apj *AccountPrintJournal) (int64, error) {
ids, err := c.CreateAccountPrintJournals([]*AccountPrintJournal{apj})
if err != nil {
return -1, err
}
if len(ids) == 0 {
return -1, nil
}
return ids[0], nil
}
// CreateAccountPrintJournal creates a new account.print.journal model and returns its id.
func (c *Client) CreateAccountPrintJournals(apjs []*AccountPrintJournal) ([]int64, error) {
var vv []interface{}
for _, v := range apjs {
vv = append(vv, v)
}
return c.Create(AccountPrintJournalModel, vv)
}
// UpdateAccountPrintJournal updates an existing account.print.journal record.
func (c *Client) UpdateAccountPrintJournal(apj *AccountPrintJournal) error {
return c.UpdateAccountPrintJournals([]int64{apj.Id.Get()}, apj)
}
// UpdateAccountPrintJournals updates existing account.print.journal records.
// All records (represented by ids) will be updated by apj values.
func (c *Client) UpdateAccountPrintJournals(ids []int64, apj *AccountPrintJournal) error {
return c.Update(AccountPrintJournalModel, ids, apj)
}
// DeleteAccountPrintJournal deletes an existing account.print.journal record.
func (c *Client) DeleteAccountPrintJournal(id int64) error {
return c.DeleteAccountPrintJournals([]int64{id})
}
// DeleteAccountPrintJournals deletes existing account.print.journal records.
func (c *Client) DeleteAccountPrintJournals(ids []int64) error {
return c.Delete(AccountPrintJournalModel, ids)
}
// GetAccountPrintJournal gets account.print.journal existing record.
func (c *Client) GetAccountPrintJournal(id int64) (*AccountPrintJournal, error) {
apjs, err := c.GetAccountPrintJournals([]int64{id})
if err != nil {
return nil, err
}
if apjs != nil && len(*apjs) > 0 {
return &((*apjs)[0]), nil
}
return nil, fmt.Errorf("id %v of account.print.journal not found", id)
}
// GetAccountPrintJournals gets account.print.journal existing records.
func (c *Client) GetAccountPrintJournals(ids []int64) (*AccountPrintJournals, error) {
apjs := &AccountPrintJournals{}
if err := c.Read(AccountPrintJournalModel, ids, nil, apjs); err != nil {
return nil, err
}
return apjs, nil
}
// FindAccountPrintJournal finds account.print.journal record by querying it with criteria.
func (c *Client) FindAccountPrintJournal(criteria *Criteria) (*AccountPrintJournal, error) {
apjs := &AccountPrintJournals{}
if err := c.SearchRead(AccountPrintJournalModel, criteria, NewOptions().Limit(1), apjs); err != nil {
return nil, err
}
if apjs != nil && len(*apjs) > 0 {
return &((*apjs)[0]), nil
}
return nil, fmt.Errorf("account.print.journal was not found with criteria %v", criteria)
}
// FindAccountPrintJournals finds account.print.journal records by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountPrintJournals(criteria *Criteria, options *Options) (*AccountPrintJournals, error) {
apjs := &AccountPrintJournals{}
if err := c.SearchRead(AccountPrintJournalModel, criteria, options, apjs); err != nil {
return nil, err
}
return apjs, nil
}
// FindAccountPrintJournalIds finds records ids by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountPrintJournalIds(criteria *Criteria, options *Options) ([]int64, error) {
ids, err := c.Search(AccountPrintJournalModel, criteria, options)
if err != nil {
return []int64{}, err
}
return ids, nil
}
// FindAccountPrintJournalId finds record id by querying it with criteria.
func (c *Client) FindAccountPrintJournalId(criteria *Criteria, options *Options) (int64, error) {
ids, err := c.Search(AccountPrintJournalModel, criteria, options)
if err != nil {
return -1, err
}
if len(ids) > 0 {
return ids[0], nil
}
return -1, fmt.Errorf("account.print.journal was not found with criteria %v and options %v", criteria, options)
}