forked from skilld-labs/go-odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
account_payment.go
158 lines (142 loc) · 6.91 KB
/
account_payment.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
150
151
152
153
154
155
156
157
158
package odoo
import (
"fmt"
)
// AccountPayment represents account.payment model.
type AccountPayment struct {
LastUpdate *Time `xmlrpc:"__last_update,omptempty"`
Amount *Float `xmlrpc:"amount,omptempty"`
Communication *String `xmlrpc:"communication,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"`
DestinationAccountId *Many2One `xmlrpc:"destination_account_id,omptempty"`
DestinationJournalId *Many2One `xmlrpc:"destination_journal_id,omptempty"`
DisplayName *String `xmlrpc:"display_name,omptempty"`
HasInvoices *Bool `xmlrpc:"has_invoices,omptempty"`
HidePaymentMethod *Bool `xmlrpc:"hide_payment_method,omptempty"`
Id *Int `xmlrpc:"id,omptempty"`
InvoiceIds *Relation `xmlrpc:"invoice_ids,omptempty"`
JournalId *Many2One `xmlrpc:"journal_id,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"`
MoveLineIds *Relation `xmlrpc:"move_line_ids,omptempty"`
MoveName *String `xmlrpc:"move_name,omptempty"`
MoveReconciled *Bool `xmlrpc:"move_reconciled,omptempty"`
Name *String `xmlrpc:"name,omptempty"`
PartnerBankAccountId *Many2One `xmlrpc:"partner_bank_account_id,omptempty"`
PartnerId *Many2One `xmlrpc:"partner_id,omptempty"`
PartnerType *Selection `xmlrpc:"partner_type,omptempty"`
PaymentDate *Time `xmlrpc:"payment_date,omptempty"`
PaymentDifference *Float `xmlrpc:"payment_difference,omptempty"`
PaymentDifferenceHandling *Selection `xmlrpc:"payment_difference_handling,omptempty"`
PaymentMethodCode *String `xmlrpc:"payment_method_code,omptempty"`
PaymentMethodId *Many2One `xmlrpc:"payment_method_id,omptempty"`
PaymentReference *String `xmlrpc:"payment_reference,omptempty"`
PaymentTokenId *Many2One `xmlrpc:"payment_token_id,omptempty"`
PaymentTransactionId *Many2One `xmlrpc:"payment_transaction_id,omptempty"`
PaymentType *Selection `xmlrpc:"payment_type,omptempty"`
State *Selection `xmlrpc:"state,omptempty"`
WebsiteMessageIds *Relation `xmlrpc:"website_message_ids,omptempty"`
WriteDate *Time `xmlrpc:"write_date,omptempty"`
WriteUid *Many2One `xmlrpc:"write_uid,omptempty"`
WriteoffAccountId *Many2One `xmlrpc:"writeoff_account_id,omptempty"`
WriteoffLabel *String `xmlrpc:"writeoff_label,omptempty"`
}
// AccountPayments represents array of account.payment model.
type AccountPayments []AccountPayment
// AccountPaymentModel is the odoo model name.
const AccountPaymentModel = "account.payment"
// Many2One convert AccountPayment to *Many2One.
func (ap *AccountPayment) Many2One() *Many2One {
return NewMany2One(ap.Id.Get(), "")
}
// CreateAccountPayment creates a new account.payment model and returns its id.
func (c *Client) CreateAccountPayment(ap *AccountPayment) (int64, error) {
return c.Create(AccountPaymentModel, ap)
}
// UpdateAccountPayment updates an existing account.payment record.
func (c *Client) UpdateAccountPayment(ap *AccountPayment) error {
return c.UpdateAccountPayments([]int64{ap.Id.Get()}, ap)
}
// UpdateAccountPayments updates existing account.payment records.
// All records (represented by ids) will be updated by ap values.
func (c *Client) UpdateAccountPayments(ids []int64, ap *AccountPayment) error {
return c.Update(AccountPaymentModel, ids, ap)
}
// DeleteAccountPayment deletes an existing account.payment record.
func (c *Client) DeleteAccountPayment(id int64) error {
return c.DeleteAccountPayments([]int64{id})
}
// DeleteAccountPayments deletes existing account.payment records.
func (c *Client) DeleteAccountPayments(ids []int64) error {
return c.Delete(AccountPaymentModel, ids)
}
// GetAccountPayment gets account.payment existing record.
func (c *Client) GetAccountPayment(id int64) (*AccountPayment, error) {
aps, err := c.GetAccountPayments([]int64{id})
if err != nil {
return nil, err
}
if aps != nil && len(*aps) > 0 {
return &((*aps)[0]), nil
}
return nil, fmt.Errorf("id %v of account.payment not found", id)
}
// GetAccountPayments gets account.payment existing records.
func (c *Client) GetAccountPayments(ids []int64) (*AccountPayments, error) {
aps := &AccountPayments{}
if err := c.Read(AccountPaymentModel, ids, nil, aps); err != nil {
return nil, err
}
return aps, nil
}
// FindAccountPayment finds account.payment record by querying it with criteria.
func (c *Client) FindAccountPayment(criteria *Criteria) (*AccountPayment, error) {
aps := &AccountPayments{}
if err := c.SearchRead(AccountPaymentModel, criteria, NewOptions().Limit(1), aps); err != nil {
return nil, err
}
if aps != nil && len(*aps) > 0 {
return &((*aps)[0]), nil
}
return nil, fmt.Errorf("account.payment was not found")
}
// FindAccountPayments finds account.payment records by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountPayments(criteria *Criteria, options *Options) (*AccountPayments, error) {
aps := &AccountPayments{}
if err := c.SearchRead(AccountPaymentModel, criteria, options, aps); err != nil {
return nil, err
}
return aps, nil
}
// FindAccountPaymentIds finds records ids by querying it
// and filtering it with criteria and options.
func (c *Client) FindAccountPaymentIds(criteria *Criteria, options *Options) ([]int64, error) {
ids, err := c.Search(AccountPaymentModel, criteria, options)
if err != nil {
return []int64{}, err
}
return ids, nil
}
// FindAccountPaymentId finds record id by querying it with criteria.
func (c *Client) FindAccountPaymentId(criteria *Criteria, options *Options) (int64, error) {
ids, err := c.Search(AccountPaymentModel, criteria, options)
if err != nil {
return -1, err
}
if len(ids) > 0 {
return ids[0], nil
}
return -1, fmt.Errorf("account.payment was not found")
}