xero-ruby 18.0.0 → 18.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9723c121626d5cb4fc006c058b2d6bbc607ea4347f0a91c623bb8ffb5f157532
|
|
4
|
+
data.tar.gz: 219e8c9de3d26987b848adc13f10c928041cef317951034cbe0ec2e445b0ff74
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac3bd6c2cb80946187ccdf4353be83477651bf4a1a0c87371035d7eeea2f89fd72a728a5ba707fa8facab287f0e8c2701118448278e598da97327bb91f13241e
|
|
7
|
+
data.tar.gz: '05391f17b69d1532418a0d18dde8d3b96ae91e6de92b8affe86074d006100470ff247f2f325833f544e71273d81b9eb556ac53d0215b9a6914ce44abc4ddf086'
|
|
@@ -2178,6 +2178,7 @@ module XeroRuby
|
|
|
2178
2178
|
# @option opts [Boolean] :summarize_errors If false return 200 OK and mix of successfully created objects and any with validation errors (default to false)
|
|
2179
2179
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
2180
2180
|
# @option opts [String] :idempotency_key This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
|
|
2181
|
+
# @option opts [Boolean] :allow_backorders Allows an invoice to be created even when one or more line items contain tracked inventory where the invoice quantity would cause the available quantity to go negative
|
|
2181
2182
|
# @return [Invoices]
|
|
2182
2183
|
def create_invoices(xero_tenant_id, invoices, opts = {})
|
|
2183
2184
|
data, _status_code, _headers = create_invoices_with_http_info(xero_tenant_id, invoices, opts)
|
|
@@ -2191,6 +2192,7 @@ module XeroRuby
|
|
|
2191
2192
|
# @option opts [Boolean] :summarize_errors If false return 200 OK and mix of successfully created objects and any with validation errors
|
|
2192
2193
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
2193
2194
|
# @option opts [String] :idempotency_key This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
|
|
2195
|
+
# @option opts [Boolean] :allow_backorders Allows an invoice to be created even when one or more line items contain tracked inventory where the invoice quantity would cause the available quantity to go negative
|
|
2194
2196
|
# @return [Array<(Invoices, Integer, Hash)>] Invoices data, response status code and response headers
|
|
2195
2197
|
def create_invoices_with_http_info(xero_tenant_id, invoices, options = {})
|
|
2196
2198
|
opts = options.dup
|
|
@@ -2215,6 +2217,7 @@ module XeroRuby
|
|
|
2215
2217
|
query_params = opts[:query_params] || {}
|
|
2216
2218
|
query_params[:'summarizeErrors'] = opts[:'summarize_errors'] if !opts[:'summarize_errors'].nil?
|
|
2217
2219
|
query_params[:'unitdp'] = opts[:'unitdp'] if !opts[:'unitdp'].nil?
|
|
2220
|
+
query_params[:'allowBackorders'] = opts[:'allow_backorders'] if !opts[:'allow_backorders'].nil?
|
|
2218
2221
|
|
|
2219
2222
|
# XeroAPI's `IDs` convention openapi-generator does not snake_case properly.. manual over-riding `i_ds` malformations:
|
|
2220
2223
|
query_params[:'IDs'] = @api_client.build_collection_param(opts[:'ids'], :csv) if !opts[:'ids'].nil?
|
|
@@ -6766,6 +6769,7 @@ module XeroRuby
|
|
|
6766
6769
|
# @option opts [Integer] :page Up to 100 bank transactions will be returned in a single API call with line items details
|
|
6767
6770
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
6768
6771
|
# @option opts [Integer] :page_size Number of records to retrieve per page
|
|
6772
|
+
# @option opts [Array<String>] :references Filter by a comma-separated list of References
|
|
6769
6773
|
# @return [BankTransactions]
|
|
6770
6774
|
def get_bank_transactions(xero_tenant_id, opts = {})
|
|
6771
6775
|
data, _status_code, _headers = get_bank_transactions_with_http_info(xero_tenant_id, opts)
|
|
@@ -6781,6 +6785,7 @@ module XeroRuby
|
|
|
6781
6785
|
# @option opts [Integer] :page Up to 100 bank transactions will be returned in a single API call with line items details
|
|
6782
6786
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
6783
6787
|
# @option opts [Integer] :page_size Number of records to retrieve per page
|
|
6788
|
+
# @option opts [Array<String>] :references Filter by a comma-separated list of References
|
|
6784
6789
|
# @return [Array<(BankTransactions, Integer, Hash)>] BankTransactions data, response status code and response headers
|
|
6785
6790
|
def get_bank_transactions_with_http_info(xero_tenant_id, options = {})
|
|
6786
6791
|
opts = options.dup
|
|
@@ -6804,6 +6809,7 @@ module XeroRuby
|
|
|
6804
6809
|
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
|
6805
6810
|
query_params[:'unitdp'] = opts[:'unitdp'] if !opts[:'unitdp'].nil?
|
|
6806
6811
|
query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].nil?
|
|
6812
|
+
query_params[:'References'] = @api_client.build_collection_param(opts[:'references'], :csv) if !opts[:'references'].nil?
|
|
6807
6813
|
|
|
6808
6814
|
# XeroAPI's `IDs` convention openapi-generator does not snake_case properly.. manual over-riding `i_ds` malformations:
|
|
6809
6815
|
query_params[:'IDs'] = @api_client.build_collection_param(opts[:'ids'], :csv) if !opts[:'ids'].nil?
|
|
@@ -12428,10 +12434,11 @@ module XeroRuby
|
|
|
12428
12434
|
# @option opts [DateTime] :if_modified_since Only records created or modified since this timestamp will be returned
|
|
12429
12435
|
# @option opts [String] :where Filter by an any element
|
|
12430
12436
|
# @option opts [String] :order Order by an any element
|
|
12431
|
-
# @option opts [Integer] :page e.g. page=1 – Up to 100 prepayments will be returned in a single API call with line items shown for each
|
|
12437
|
+
# @option opts [Integer] :page e.g. page=1 – Up to 100 prepayments will be returned in a single API call with line items shown for each prepayment
|
|
12432
12438
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
12433
12439
|
# @option opts [Integer] :page_size Number of records to retrieve per page
|
|
12434
12440
|
# @option opts [Array<String>] :invoice_numbers Filter by a comma-separated list of InvoiceNumbers
|
|
12441
|
+
# @option opts [Array<String>] :references Filter by a comma-separated list of References
|
|
12435
12442
|
# @return [Prepayments]
|
|
12436
12443
|
def get_prepayments(xero_tenant_id, opts = {})
|
|
12437
12444
|
data, _status_code, _headers = get_prepayments_with_http_info(xero_tenant_id, opts)
|
|
@@ -12444,10 +12451,11 @@ module XeroRuby
|
|
|
12444
12451
|
# @option opts [DateTime] :if_modified_since Only records created or modified since this timestamp will be returned
|
|
12445
12452
|
# @option opts [String] :where Filter by an any element
|
|
12446
12453
|
# @option opts [String] :order Order by an any element
|
|
12447
|
-
# @option opts [Integer] :page e.g. page=1 – Up to 100 prepayments will be returned in a single API call with line items shown for each
|
|
12454
|
+
# @option opts [Integer] :page e.g. page=1 – Up to 100 prepayments will be returned in a single API call with line items shown for each prepayment
|
|
12448
12455
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
12449
12456
|
# @option opts [Integer] :page_size Number of records to retrieve per page
|
|
12450
12457
|
# @option opts [Array<String>] :invoice_numbers Filter by a comma-separated list of InvoiceNumbers
|
|
12458
|
+
# @option opts [Array<String>] :references Filter by a comma-separated list of References
|
|
12451
12459
|
# @return [Array<(Prepayments, Integer, Hash)>] Prepayments data, response status code and response headers
|
|
12452
12460
|
def get_prepayments_with_http_info(xero_tenant_id, options = {})
|
|
12453
12461
|
opts = options.dup
|
|
@@ -12472,6 +12480,7 @@ module XeroRuby
|
|
|
12472
12480
|
query_params[:'unitdp'] = opts[:'unitdp'] if !opts[:'unitdp'].nil?
|
|
12473
12481
|
query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].nil?
|
|
12474
12482
|
query_params[:'InvoiceNumbers'] = @api_client.build_collection_param(opts[:'invoice_numbers'], :csv) if !opts[:'invoice_numbers'].nil?
|
|
12483
|
+
query_params[:'References'] = @api_client.build_collection_param(opts[:'references'], :csv) if !opts[:'references'].nil?
|
|
12475
12484
|
|
|
12476
12485
|
# XeroAPI's `IDs` convention openapi-generator does not snake_case properly.. manual over-riding `i_ds` malformations:
|
|
12477
12486
|
query_params[:'IDs'] = @api_client.build_collection_param(opts[:'ids'], :csv) if !opts[:'ids'].nil?
|
|
@@ -17097,6 +17106,7 @@ module XeroRuby
|
|
|
17097
17106
|
# @param [Hash] opts the optional parameters
|
|
17098
17107
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
17099
17108
|
# @option opts [String] :idempotency_key This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
|
|
17109
|
+
# @option opts [Boolean] :allow_backorders Allows an invoice to be created even when one or more line items contain tracked inventory where the invoice quantity would cause the available quantity to go negative
|
|
17100
17110
|
# @return [Invoices]
|
|
17101
17111
|
def update_invoice(xero_tenant_id, invoice_id, invoices, opts = {})
|
|
17102
17112
|
data, _status_code, _headers = update_invoice_with_http_info(xero_tenant_id, invoice_id, invoices, opts)
|
|
@@ -17110,6 +17120,7 @@ module XeroRuby
|
|
|
17110
17120
|
# @param [Hash] opts the optional parameters
|
|
17111
17121
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
17112
17122
|
# @option opts [String] :idempotency_key This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
|
|
17123
|
+
# @option opts [Boolean] :allow_backorders Allows an invoice to be created even when one or more line items contain tracked inventory where the invoice quantity would cause the available quantity to go negative
|
|
17113
17124
|
# @return [Array<(Invoices, Integer, Hash)>] Invoices data, response status code and response headers
|
|
17114
17125
|
def update_invoice_with_http_info(xero_tenant_id, invoice_id, invoices, options = {})
|
|
17115
17126
|
opts = options.dup
|
|
@@ -17137,6 +17148,7 @@ module XeroRuby
|
|
|
17137
17148
|
# query parameters
|
|
17138
17149
|
query_params = opts[:query_params] || {}
|
|
17139
17150
|
query_params[:'unitdp'] = opts[:'unitdp'] if !opts[:'unitdp'].nil?
|
|
17151
|
+
query_params[:'allowBackorders'] = opts[:'allow_backorders'] if !opts[:'allow_backorders'].nil?
|
|
17140
17152
|
|
|
17141
17153
|
# XeroAPI's `IDs` convention openapi-generator does not snake_case properly.. manual over-riding `i_ds` malformations:
|
|
17142
17154
|
query_params[:'IDs'] = @api_client.build_collection_param(opts[:'ids'], :csv) if !opts[:'ids'].nil?
|
|
@@ -17886,6 +17898,7 @@ module XeroRuby
|
|
|
17886
17898
|
# @option opts [Boolean] :summarize_errors If false return 200 OK and mix of successfully created objects and any with validation errors (default to false)
|
|
17887
17899
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
17888
17900
|
# @option opts [String] :idempotency_key This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
|
|
17901
|
+
# @option opts [Boolean] :allow_backorders Allows an invoice to be created even when one or more line items contain tracked inventory where the invoice quantity would cause the available quantity to go negative
|
|
17889
17902
|
# @return [Invoices]
|
|
17890
17903
|
def update_or_create_invoices(xero_tenant_id, invoices, opts = {})
|
|
17891
17904
|
data, _status_code, _headers = update_or_create_invoices_with_http_info(xero_tenant_id, invoices, opts)
|
|
@@ -17899,6 +17912,7 @@ module XeroRuby
|
|
|
17899
17912
|
# @option opts [Boolean] :summarize_errors If false return 200 OK and mix of successfully created objects and any with validation errors
|
|
17900
17913
|
# @option opts [Integer] :unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal places for unit amounts
|
|
17901
17914
|
# @option opts [String] :idempotency_key This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
|
|
17915
|
+
# @option opts [Boolean] :allow_backorders Allows an invoice to be created even when one or more line items contain tracked inventory where the invoice quantity would cause the available quantity to go negative
|
|
17902
17916
|
# @return [Array<(Invoices, Integer, Hash)>] Invoices data, response status code and response headers
|
|
17903
17917
|
def update_or_create_invoices_with_http_info(xero_tenant_id, invoices, options = {})
|
|
17904
17918
|
opts = options.dup
|
|
@@ -17923,6 +17937,7 @@ module XeroRuby
|
|
|
17923
17937
|
query_params = opts[:query_params] || {}
|
|
17924
17938
|
query_params[:'summarizeErrors'] = opts[:'summarize_errors'] if !opts[:'summarize_errors'].nil?
|
|
17925
17939
|
query_params[:'unitdp'] = opts[:'unitdp'] if !opts[:'unitdp'].nil?
|
|
17940
|
+
query_params[:'allowBackorders'] = opts[:'allow_backorders'] if !opts[:'allow_backorders'].nil?
|
|
17926
17941
|
|
|
17927
17942
|
# XeroAPI's `IDs` convention openapi-generator does not snake_case properly.. manual over-riding `i_ds` malformations:
|
|
17928
17943
|
query_params[:'IDs'] = @api_client.build_collection_param(opts[:'ids'], :csv) if !opts[:'ids'].nil?
|
|
@@ -84,18 +84,24 @@ module XeroRuby::Accounting
|
|
|
84
84
|
# CIS Deduction rate for the organisation
|
|
85
85
|
attr_accessor :cis_rate
|
|
86
86
|
|
|
87
|
-
# Total of invoice excluding taxes
|
|
87
|
+
# Total of invoice excluding taxes. Calculated automatically by Xero from the invoice's line items. Only for ACCPAY and ACCREC invoices, where this opt-in capability is enabled for your organisation, can SubTotal be supplied on write – on a SUBMITTED or AUTHORISED invoice supplied together with TotalTax and Total, it is validated against the calculated line item totals (see RoundingAmount); it is ignored in all other cases. This write behaviour, and the returned value reflecting it, only applies to the Create and Update endpoints (POST/PUT) and to retrieving a single invoice by ID (GET by ID) – it does not apply when listing invoices (GET)
|
|
88
88
|
attr_accessor :sub_total
|
|
89
89
|
|
|
90
|
-
# Total tax on invoice
|
|
90
|
+
# Total tax on invoice. Calculated automatically by Xero from the invoice's line items. Only for ACCPAY and ACCREC invoices, where this opt-in capability is enabled for your organisation, can TotalTax be supplied on write – on a SUBMITTED or AUTHORISED invoice supplied together with SubTotal and Total, it is validated against the calculated line item totals (see RoundingAmount); it is ignored in all other cases. This write behaviour, and the returned value reflecting it, only applies to the Create and Update endpoints (POST/PUT) and to retrieving a single invoice by ID (GET by ID) – it does not apply when listing invoices (GET)
|
|
91
91
|
attr_accessor :total_tax
|
|
92
92
|
|
|
93
|
-
# Total of Invoice tax inclusive (i.e. SubTotal + TotalTax).
|
|
93
|
+
# Total of Invoice tax inclusive (i.e. SubTotal + TotalTax + RoundingAmount). Calculated automatically by Xero from the invoice's line items. Only for ACCPAY and ACCREC invoices, where this opt-in capability is enabled for your organisation, can Total be supplied on write – on a SUBMITTED or AUTHORISED invoice supplied together with SubTotal and TotalTax, it is validated against the calculated line item totals plus RoundingAmount; in all other cases this will be ignored if it does not equal the sum of the LineAmounts. This write behaviour, and the returned value reflecting it, only applies to the Create and Update endpoints (POST/PUT) and to retrieving a single invoice by ID (GET by ID) – it does not apply when listing invoices (GET)
|
|
94
94
|
attr_accessor :total
|
|
95
95
|
|
|
96
96
|
# Total of discounts applied on the invoice line items
|
|
97
97
|
attr_accessor :total_discount
|
|
98
98
|
|
|
99
|
+
# An optional rounding adjustment added to SubTotal + TotalTax to give Total (i.e. Total = SubTotal + TotalTax + RoundingAmount). Only applies to ACCPAY and ACCREC invoices, and only if this opt-in capability has been enabled for your organisation. Not validated while the invoice is DRAFT. For SUBMITTED and AUTHORISED invoices, RoundingAmount is only applied when SubTotal, TotalTax and Total are all supplied together, and must be between -0.10 and 0.10 – values outside this range are rejected with a validation error (on DRAFT invoices, an out-of-range value is ignored instead). This field is only settable and only returned via the Create and Update endpoints (POST/PUT) and when retrieving a single invoice by ID (GET by ID) – it is not returned when listing invoices (GET)
|
|
100
|
+
attr_accessor :rounding_amount
|
|
101
|
+
|
|
102
|
+
# The total amount as originally entered for the invoice, before any RoundingAmount adjustment is applied. Only applies to ACCPAY and ACCREC invoices, and only if this opt-in capability has been enabled for your organisation. Can only be set while the invoice is DRAFT; once the invoice is no longer DRAFT this reflects Total. This field is only settable and only returned via the Create and Update endpoints (POST/PUT) and when retrieving a single invoice by ID (GET by ID) – it is not returned when listing invoices (GET)
|
|
103
|
+
attr_accessor :entered_total
|
|
104
|
+
|
|
99
105
|
# Xero generated unique identifier for invoice
|
|
100
106
|
attr_accessor :invoice_id
|
|
101
107
|
|
|
@@ -203,6 +209,8 @@ module XeroRuby::Accounting
|
|
|
203
209
|
:'total_tax' => :'TotalTax',
|
|
204
210
|
:'total' => :'Total',
|
|
205
211
|
:'total_discount' => :'TotalDiscount',
|
|
212
|
+
:'rounding_amount' => :'RoundingAmount',
|
|
213
|
+
:'entered_total' => :'EnteredTotal',
|
|
206
214
|
:'invoice_id' => :'InvoiceID',
|
|
207
215
|
:'repeating_invoice_id' => :'RepeatingInvoiceID',
|
|
208
216
|
:'has_attachments' => :'HasAttachments',
|
|
@@ -251,6 +259,8 @@ module XeroRuby::Accounting
|
|
|
251
259
|
:'total_tax' => :'BigDecimal',
|
|
252
260
|
:'total' => :'BigDecimal',
|
|
253
261
|
:'total_discount' => :'BigDecimal',
|
|
262
|
+
:'rounding_amount' => :'BigDecimal',
|
|
263
|
+
:'entered_total' => :'BigDecimal',
|
|
254
264
|
:'invoice_id' => :'String',
|
|
255
265
|
:'repeating_invoice_id' => :'String',
|
|
256
266
|
:'has_attachments' => :'Boolean',
|
|
@@ -379,6 +389,14 @@ module XeroRuby::Accounting
|
|
|
379
389
|
self.total_discount = attributes[:'total_discount']
|
|
380
390
|
end
|
|
381
391
|
|
|
392
|
+
if attributes.key?(:'rounding_amount')
|
|
393
|
+
self.rounding_amount = attributes[:'rounding_amount']
|
|
394
|
+
end
|
|
395
|
+
|
|
396
|
+
if attributes.key?(:'entered_total')
|
|
397
|
+
self.entered_total = attributes[:'entered_total']
|
|
398
|
+
end
|
|
399
|
+
|
|
382
400
|
if attributes.key?(:'invoice_id')
|
|
383
401
|
self.invoice_id = attributes[:'invoice_id']
|
|
384
402
|
end
|
|
@@ -559,6 +577,8 @@ module XeroRuby::Accounting
|
|
|
559
577
|
total_tax == o.total_tax &&
|
|
560
578
|
total == o.total &&
|
|
561
579
|
total_discount == o.total_discount &&
|
|
580
|
+
rounding_amount == o.rounding_amount &&
|
|
581
|
+
entered_total == o.entered_total &&
|
|
562
582
|
invoice_id == o.invoice_id &&
|
|
563
583
|
repeating_invoice_id == o.repeating_invoice_id &&
|
|
564
584
|
has_attachments == o.has_attachments &&
|
|
@@ -590,7 +610,7 @@ module XeroRuby::Accounting
|
|
|
590
610
|
# Calculates hash code according to all attributes.
|
|
591
611
|
# @return [Integer] Hash code
|
|
592
612
|
def hash
|
|
593
|
-
[type, contact, line_items, date, due_date, line_amount_types, invoice_number, reference, branding_theme_id, url, currency_code, currency_rate, status, sent_to_contact, expected_payment_date, planned_payment_date, cis_deduction, cis_rate, sub_total, total_tax, total, total_discount, invoice_id, repeating_invoice_id, has_attachments, is_discounted, payments, prepayments, overpayments, amount_due, amount_paid, fully_paid_on_date, amount_credited, updated_date_utc, updated_date_utc_string, credit_notes, attachments, has_errors, status_attribute_string, validation_errors, warnings, invoice_addresses].hash
|
|
613
|
+
[type, contact, line_items, date, due_date, line_amount_types, invoice_number, reference, branding_theme_id, url, currency_code, currency_rate, status, sent_to_contact, expected_payment_date, planned_payment_date, cis_deduction, cis_rate, sub_total, total_tax, total, total_discount, rounding_amount, entered_total, invoice_id, repeating_invoice_id, has_attachments, is_discounted, payments, prepayments, overpayments, amount_due, amount_paid, fully_paid_on_date, amount_credited, updated_date_utc, updated_date_utc_string, credit_notes, attachments, has_errors, status_attribute_string, validation_errors, warnings, invoice_addresses].hash
|
|
594
614
|
end
|
|
595
615
|
|
|
596
616
|
# Builds the object from hash
|
|
@@ -49,9 +49,15 @@ module XeroRuby::Accounting
|
|
|
49
49
|
# The value of the item on hand. Calculated using average cost accounting.
|
|
50
50
|
attr_accessor :total_cost_pool
|
|
51
51
|
|
|
52
|
-
# The quantity of the item on hand
|
|
52
|
+
# The quantity of the item on hand. This will be 0 if `QuantityOnBackOrder` is greater than 0.
|
|
53
53
|
attr_accessor :quantity_on_hand
|
|
54
54
|
|
|
55
|
+
# The quantity of the item available. This is equal to `QuantityOnHand` - `QuantityOnBackOrder`. This value will be negative if `QuantityOnBackOrder` is greater than 0.
|
|
56
|
+
attr_accessor :quantity_available
|
|
57
|
+
|
|
58
|
+
# The quantity of the item on backorder. This will be 0 if `QuantityOnHand` is greater than 0.
|
|
59
|
+
attr_accessor :quantity_on_back_order
|
|
60
|
+
|
|
55
61
|
# Last modified date in UTC format
|
|
56
62
|
attr_accessor :updated_date_utc
|
|
57
63
|
|
|
@@ -79,6 +85,8 @@ module XeroRuby::Accounting
|
|
|
79
85
|
:'is_tracked_as_inventory' => :'IsTrackedAsInventory',
|
|
80
86
|
:'total_cost_pool' => :'TotalCostPool',
|
|
81
87
|
:'quantity_on_hand' => :'QuantityOnHand',
|
|
88
|
+
:'quantity_available' => :'QuantityAvailable',
|
|
89
|
+
:'quantity_on_back_order' => :'QuantityOnBackOrder',
|
|
82
90
|
:'updated_date_utc' => :'UpdatedDateUTC',
|
|
83
91
|
:'item_id' => :'ItemID',
|
|
84
92
|
:'status_attribute_string' => :'StatusAttributeString',
|
|
@@ -101,6 +109,8 @@ module XeroRuby::Accounting
|
|
|
101
109
|
:'is_tracked_as_inventory' => :'Boolean',
|
|
102
110
|
:'total_cost_pool' => :'BigDecimal',
|
|
103
111
|
:'quantity_on_hand' => :'BigDecimal',
|
|
112
|
+
:'quantity_available' => :'Float',
|
|
113
|
+
:'quantity_on_back_order' => :'Float',
|
|
104
114
|
:'updated_date_utc' => :'DateTime',
|
|
105
115
|
:'item_id' => :'String',
|
|
106
116
|
:'status_attribute_string' => :'String',
|
|
@@ -171,6 +181,14 @@ module XeroRuby::Accounting
|
|
|
171
181
|
self.quantity_on_hand = attributes[:'quantity_on_hand']
|
|
172
182
|
end
|
|
173
183
|
|
|
184
|
+
if attributes.key?(:'quantity_available')
|
|
185
|
+
self.quantity_available = attributes[:'quantity_available']
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
if attributes.key?(:'quantity_on_back_order')
|
|
189
|
+
self.quantity_on_back_order = attributes[:'quantity_on_back_order']
|
|
190
|
+
end
|
|
191
|
+
|
|
174
192
|
if attributes.key?(:'updated_date_utc')
|
|
175
193
|
self.updated_date_utc = attributes[:'updated_date_utc']
|
|
176
194
|
end
|
|
@@ -289,6 +307,8 @@ module XeroRuby::Accounting
|
|
|
289
307
|
is_tracked_as_inventory == o.is_tracked_as_inventory &&
|
|
290
308
|
total_cost_pool == o.total_cost_pool &&
|
|
291
309
|
quantity_on_hand == o.quantity_on_hand &&
|
|
310
|
+
quantity_available == o.quantity_available &&
|
|
311
|
+
quantity_on_back_order == o.quantity_on_back_order &&
|
|
292
312
|
updated_date_utc == o.updated_date_utc &&
|
|
293
313
|
item_id == o.item_id &&
|
|
294
314
|
status_attribute_string == o.status_attribute_string &&
|
|
@@ -304,7 +324,7 @@ module XeroRuby::Accounting
|
|
|
304
324
|
# Calculates hash code according to all attributes.
|
|
305
325
|
# @return [Integer] Hash code
|
|
306
326
|
def hash
|
|
307
|
-
[code, inventory_asset_account_code, name, is_sold, is_purchased, description, purchase_description, purchase_details, sales_details, is_tracked_as_inventory, total_cost_pool, quantity_on_hand, updated_date_utc, item_id, status_attribute_string, validation_errors].hash
|
|
327
|
+
[code, inventory_asset_account_code, name, is_sold, is_purchased, description, purchase_description, purchase_details, sales_details, is_tracked_as_inventory, total_cost_pool, quantity_on_hand, quantity_available, quantity_on_back_order, updated_date_utc, item_id, status_attribute_string, validation_errors].hash
|
|
308
328
|
end
|
|
309
329
|
|
|
310
330
|
# Builds the object from hash
|
|
@@ -17,6 +17,7 @@ module XeroRuby::PayrollUk
|
|
|
17
17
|
EMPLOYEE ||= "Employee".freeze
|
|
18
18
|
WORKER ||= "Worker".freeze
|
|
19
19
|
UNSPECIFIED ||= "Unspecified".freeze
|
|
20
|
+
OFF_PAYROLL_WORKER ||= "OffPayrollWorker".freeze
|
|
20
21
|
|
|
21
22
|
# Builds the enum from string
|
|
22
23
|
# @param [String] The enum value in the form of the string
|
data/lib/xero-ruby/version.rb
CHANGED
|
@@ -7,9 +7,9 @@ Contact: api@xero.com
|
|
|
7
7
|
Generated by: https://openapi-generator.tech
|
|
8
8
|
OpenAPI Generator version: 4.3.1
|
|
9
9
|
|
|
10
|
-
The version of the XeroOpenAPI document:
|
|
10
|
+
The version of the XeroOpenAPI document: 19.0.0
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
module XeroRuby
|
|
14
|
-
VERSION = '18.
|
|
14
|
+
VERSION = '18.2.0'
|
|
15
15
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xero-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 18.
|
|
4
|
+
version: 18.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Xero API Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -1148,469 +1148,469 @@ signing_key:
|
|
|
1148
1148
|
specification_version: 4
|
|
1149
1149
|
summary: Xero Accounting API Ruby Gem
|
|
1150
1150
|
test_files:
|
|
1151
|
-
- spec/accounting/api/accounting_api_spec.rb
|
|
1152
|
-
- spec/accounting/models/accounts_payable_spec.rb
|
|
1153
|
-
- spec/accounting/models/batch_payment_spec.rb
|
|
1154
|
-
- spec/accounting/models/tax_rate_spec.rb
|
|
1155
|
-
- spec/accounting/models/items_spec.rb
|
|
1156
|
-
- spec/accounting/models/invoice_spec.rb
|
|
1157
|
-
- spec/accounting/models/overpayment_spec.rb
|
|
1158
|
-
- spec/accounting/models/phone_spec.rb
|
|
1159
|
-
- spec/accounting/models/sales_tracking_category_spec.rb
|
|
1160
|
-
- spec/accounting/models/country_code_spec.rb
|
|
1161
|
-
- spec/accounting/models/currencies_spec.rb
|
|
1162
|
-
- spec/accounting/models/payments_spec.rb
|
|
1163
|
-
- spec/accounting/models/tax_type_spec.rb
|
|
1164
|
-
- spec/accounting/models/accounts_receivable_spec.rb
|
|
1165
|
-
- spec/accounting/models/cis_settings_spec.rb
|
|
1166
|
-
- spec/accounting/models/batch_payments_spec.rb
|
|
1167
|
-
- spec/accounting/models/receipts_spec.rb
|
|
1168
|
-
- spec/accounting/models/tax_rates_spec.rb
|
|
1169
|
-
- spec/accounting/models/allocations_spec.rb
|
|
1170
|
-
- spec/accounting/models/manual_journals_spec.rb
|
|
1171
|
-
- spec/accounting/models/schedule_spec.rb
|
|
1172
|
-
- spec/accounting/models/contact_groups_spec.rb
|
|
1173
|
-
- spec/accounting/models/cis_org_setting_spec.rb
|
|
1174
|
-
- spec/accounting/models/prepayments_spec.rb
|
|
1175
|
-
- spec/accounting/models/organisations_spec.rb
|
|
1176
|
-
- spec/accounting/models/payment_service_spec.rb
|
|
1177
|
-
- spec/accounting/models/tracking_category_spec.rb
|
|
1178
|
-
- spec/accounting/models/online_invoice_spec.rb
|
|
1179
1151
|
- spec/accounting/models/quote_spec.rb
|
|
1180
|
-
- spec/accounting/models/
|
|
1181
|
-
- spec/accounting/models/
|
|
1182
|
-
- spec/accounting/models/
|
|
1183
|
-
- spec/accounting/models/
|
|
1184
|
-
- spec/accounting/models/
|
|
1152
|
+
- spec/accounting/models/payment_delete_spec.rb
|
|
1153
|
+
- spec/accounting/models/repeating_invoices_spec.rb
|
|
1154
|
+
- spec/accounting/models/external_link_spec.rb
|
|
1155
|
+
- spec/accounting/models/bank_transaction_spec.rb
|
|
1156
|
+
- spec/accounting/models/purchase_orders_spec.rb
|
|
1157
|
+
- spec/accounting/models/validation_error_spec.rb
|
|
1185
1158
|
- spec/accounting/models/account_spec.rb
|
|
1186
|
-
- spec/accounting/models/
|
|
1187
|
-
- spec/accounting/models/
|
|
1188
|
-
- spec/accounting/models/
|
|
1189
|
-
- spec/accounting/models/
|
|
1190
|
-
- spec/accounting/models/
|
|
1191
|
-
- spec/accounting/models/
|
|
1192
|
-
- spec/accounting/models/
|
|
1193
|
-
- spec/accounting/models/
|
|
1194
|
-
- spec/accounting/models/
|
|
1195
|
-
- spec/accounting/models/
|
|
1159
|
+
- spec/accounting/models/request_empty_spec.rb
|
|
1160
|
+
- spec/accounting/models/report_with_rows_spec.rb
|
|
1161
|
+
- spec/accounting/models/allocations_spec.rb
|
|
1162
|
+
- spec/accounting/models/cis_settings_spec.rb
|
|
1163
|
+
- spec/accounting/models/journal_spec.rb
|
|
1164
|
+
- spec/accounting/models/repeating_invoice_spec.rb
|
|
1165
|
+
- spec/accounting/models/report_row_spec.rb
|
|
1166
|
+
- spec/accounting/models/accounts_spec.rb
|
|
1167
|
+
- spec/accounting/models/item_spec.rb
|
|
1168
|
+
- spec/accounting/models/receipt_spec.rb
|
|
1169
|
+
- spec/accounting/models/branding_themes_spec.rb
|
|
1170
|
+
- spec/accounting/models/time_zone_spec.rb
|
|
1171
|
+
- spec/accounting/models/receipts_spec.rb
|
|
1172
|
+
- spec/accounting/models/journal_line_spec.rb
|
|
1173
|
+
- spec/accounting/models/credit_note_spec.rb
|
|
1174
|
+
- spec/accounting/models/report_fields_spec.rb
|
|
1196
1175
|
- spec/accounting/models/history_record_spec.rb
|
|
1197
|
-
- spec/accounting/models/linked_transactions_spec.rb
|
|
1198
|
-
- spec/accounting/models/linked_transaction_spec.rb
|
|
1199
|
-
- spec/accounting/models/purchase_spec.rb
|
|
1200
|
-
- spec/accounting/models/validation_error_spec.rb
|
|
1201
|
-
- spec/accounting/models/employees_spec.rb
|
|
1202
|
-
- spec/accounting/models/contact_group_spec.rb
|
|
1203
1176
|
- spec/accounting/models/expense_claim_spec.rb
|
|
1204
|
-
- spec/accounting/models/
|
|
1205
|
-
- spec/accounting/models/contacts_spec.rb
|
|
1206
|
-
- spec/accounting/models/report_attribute_spec.rb
|
|
1207
|
-
- spec/accounting/models/payment_services_spec.rb
|
|
1177
|
+
- spec/accounting/models/bank_transfer_spec.rb
|
|
1208
1178
|
- spec/accounting/models/bank_transactions_spec.rb
|
|
1209
|
-
- spec/accounting/models/
|
|
1210
|
-
- spec/accounting/models/
|
|
1211
|
-
- spec/accounting/models/
|
|
1212
|
-
- spec/accounting/models/
|
|
1213
|
-
- spec/accounting/models/
|
|
1214
|
-
- spec/accounting/models/journals_spec.rb
|
|
1215
|
-
- spec/accounting/models/purchase_orders_spec.rb
|
|
1216
|
-
- spec/accounting/models/bank_transfers_spec.rb
|
|
1179
|
+
- spec/accounting/models/currency_code_spec.rb
|
|
1180
|
+
- spec/accounting/models/contact_group_spec.rb
|
|
1181
|
+
- spec/accounting/models/report_spec.rb
|
|
1182
|
+
- spec/accounting/models/ten_nintey_nine_contact_spec.rb
|
|
1183
|
+
- spec/accounting/models/payment_services_spec.rb
|
|
1217
1184
|
- spec/accounting/models/expense_claims_spec.rb
|
|
1218
|
-
- spec/accounting/models/
|
|
1185
|
+
- spec/accounting/models/tax_component_spec.rb
|
|
1186
|
+
- spec/accounting/models/bank_transfers_spec.rb
|
|
1187
|
+
- spec/accounting/models/linked_transactions_spec.rb
|
|
1188
|
+
- spec/accounting/models/overpayments_spec.rb
|
|
1189
|
+
- spec/accounting/models/manual_journals_spec.rb
|
|
1190
|
+
- spec/accounting/models/tracking_option_spec.rb
|
|
1191
|
+
- spec/accounting/models/currencies_spec.rb
|
|
1219
1192
|
- spec/accounting/models/payment_term_spec.rb
|
|
1220
|
-
- spec/accounting/models/
|
|
1221
|
-
- spec/accounting/models/prepayment_spec.rb
|
|
1193
|
+
- spec/accounting/models/report_with_row_spec.rb
|
|
1222
1194
|
- spec/accounting/models/credit_notes_spec.rb
|
|
1223
|
-
- spec/accounting/models/
|
|
1224
|
-
- spec/accounting/models/
|
|
1225
|
-
- spec/accounting/models/
|
|
1226
|
-
- spec/accounting/models/
|
|
1195
|
+
- spec/accounting/models/line_item_spec.rb
|
|
1196
|
+
- spec/accounting/models/contact_person_spec.rb
|
|
1197
|
+
- spec/accounting/models/quote_line_amount_types_spec.rb
|
|
1198
|
+
- spec/accounting/models/invoices_spec.rb
|
|
1227
1199
|
- spec/accounting/models/contact_spec.rb
|
|
1200
|
+
- spec/accounting/models/address_spec.rb
|
|
1201
|
+
- spec/accounting/models/report_rows_spec.rb
|
|
1202
|
+
- spec/accounting/models/prepayment_spec.rb
|
|
1203
|
+
- spec/accounting/models/line_item_tracking_spec.rb
|
|
1228
1204
|
- spec/accounting/models/bill_spec.rb
|
|
1229
|
-
- spec/accounting/models/
|
|
1230
|
-
- spec/accounting/models/
|
|
1231
|
-
- spec/accounting/models/
|
|
1232
|
-
- spec/accounting/models/
|
|
1233
|
-
- spec/accounting/models/
|
|
1205
|
+
- spec/accounting/models/tracking_categories_spec.rb
|
|
1206
|
+
- spec/accounting/models/online_invoice_spec.rb
|
|
1207
|
+
- spec/accounting/models/user_spec.rb
|
|
1208
|
+
- spec/accounting/models/prepayments_spec.rb
|
|
1209
|
+
- spec/accounting/models/attachments_spec.rb
|
|
1210
|
+
- spec/accounting/models/purchase_spec.rb
|
|
1211
|
+
- spec/accounting/models/attachment_spec.rb
|
|
1212
|
+
- spec/accounting/models/branding_theme_spec.rb
|
|
1213
|
+
- spec/accounting/models/invoice_reminders_spec.rb
|
|
1214
|
+
- spec/accounting/models/quote_status_codes_spec.rb
|
|
1215
|
+
- spec/accounting/models/batch_payments_spec.rb
|
|
1216
|
+
- spec/accounting/models/schedule_spec.rb
|
|
1234
1217
|
- spec/accounting/models/reports_spec.rb
|
|
1235
|
-
- spec/accounting/models/
|
|
1236
|
-
- spec/accounting/models/
|
|
1237
|
-
- spec/accounting/models/
|
|
1238
|
-
- spec/accounting/models/journal_spec.rb
|
|
1239
|
-
- spec/accounting/models/report_fields_spec.rb
|
|
1240
|
-
- spec/accounting/models/report_cell_spec.rb
|
|
1241
|
-
- spec/accounting/models/row_type_spec.rb
|
|
1242
|
-
- spec/accounting/models/element_spec.rb
|
|
1218
|
+
- spec/accounting/models/contact_groups_spec.rb
|
|
1219
|
+
- spec/accounting/models/cis_org_setting_spec.rb
|
|
1220
|
+
- spec/accounting/models/account_type_spec.rb
|
|
1243
1221
|
- spec/accounting/models/currency_spec.rb
|
|
1244
|
-
- spec/accounting/models/invoice_reminders_spec.rb
|
|
1245
|
-
- spec/accounting/models/quote_line_amount_types_spec.rb
|
|
1246
|
-
- spec/accounting/models/attachment_spec.rb
|
|
1247
|
-
- spec/accounting/models/branding_themes_spec.rb
|
|
1248
|
-
- spec/accounting/models/tracking_categories_spec.rb
|
|
1249
|
-
- spec/accounting/models/quotes_spec.rb
|
|
1250
|
-
- spec/accounting/models/report_row_spec.rb
|
|
1251
|
-
- spec/accounting/models/journal_line_spec.rb
|
|
1252
|
-
- spec/accounting/models/time_zone_spec.rb
|
|
1253
|
-
- spec/accounting/models/tax_component_spec.rb
|
|
1254
|
-
- spec/accounting/models/accounts_spec.rb
|
|
1255
|
-
- spec/accounting/models/request_empty_spec.rb
|
|
1256
|
-
- spec/accounting/models/line_amount_types_spec.rb
|
|
1257
|
-
- spec/accounting/models/repeating_invoice_spec.rb
|
|
1258
1222
|
- spec/accounting/models/cis_setting_spec.rb
|
|
1259
|
-
- spec/accounting/models/
|
|
1223
|
+
- spec/accounting/models/organisations_spec.rb
|
|
1224
|
+
- spec/accounting/models/report_cell_spec.rb
|
|
1260
1225
|
- spec/accounting/models/purchase_order_spec.rb
|
|
1226
|
+
- spec/accounting/models/tax_rate_spec.rb
|
|
1227
|
+
- spec/accounting/models/allocation_spec.rb
|
|
1228
|
+
- spec/accounting/models/users_spec.rb
|
|
1261
1229
|
- spec/accounting/models/payment_term_type_spec.rb
|
|
1262
|
-
- spec/accounting/models/
|
|
1263
|
-
- spec/accounting/models/
|
|
1264
|
-
- spec/accounting/models/
|
|
1265
|
-
- spec/accounting/models/
|
|
1230
|
+
- spec/accounting/models/invoice_spec.rb
|
|
1231
|
+
- spec/accounting/models/batch_payment_spec.rb
|
|
1232
|
+
- spec/accounting/models/batch_payment_details_spec.rb
|
|
1233
|
+
- spec/accounting/models/element_spec.rb
|
|
1234
|
+
- spec/accounting/models/tax_rates_spec.rb
|
|
1235
|
+
- spec/accounting/models/quotes_spec.rb
|
|
1236
|
+
- spec/accounting/models/organisation_spec.rb
|
|
1237
|
+
- spec/accounting/models/history_records_spec.rb
|
|
1238
|
+
- spec/accounting/models/accounts_payable_spec.rb
|
|
1239
|
+
- spec/accounting/models/payments_spec.rb
|
|
1240
|
+
- spec/accounting/models/balances_spec.rb
|
|
1241
|
+
- spec/accounting/models/phone_spec.rb
|
|
1242
|
+
- spec/accounting/models/journals_spec.rb
|
|
1243
|
+
- spec/accounting/models/manual_journal_line_spec.rb
|
|
1244
|
+
- spec/accounting/models/report_attribute_spec.rb
|
|
1245
|
+
- spec/accounting/models/items_spec.rb
|
|
1246
|
+
- spec/accounting/models/payment_service_spec.rb
|
|
1247
|
+
- spec/accounting/models/employee_spec.rb
|
|
1248
|
+
- spec/accounting/models/invoice_reminder_spec.rb
|
|
1249
|
+
- spec/accounting/models/online_invoices_spec.rb
|
|
1250
|
+
- spec/accounting/models/accounts_receivable_spec.rb
|
|
1251
|
+
- spec/accounting/models/manual_journal_spec.rb
|
|
1252
|
+
- spec/accounting/models/tracking_options_spec.rb
|
|
1253
|
+
- spec/accounting/models/row_type_spec.rb
|
|
1254
|
+
- spec/accounting/models/overpayment_spec.rb
|
|
1255
|
+
- spec/accounting/models/sales_tracking_category_spec.rb
|
|
1256
|
+
- spec/accounting/models/error_spec.rb
|
|
1257
|
+
- spec/accounting/models/country_code_spec.rb
|
|
1258
|
+
- spec/accounting/models/tax_type_spec.rb
|
|
1259
|
+
- spec/accounting/models/tracking_category_spec.rb
|
|
1260
|
+
- spec/accounting/models/line_amount_types_spec.rb
|
|
1261
|
+
- spec/accounting/models/contacts_spec.rb
|
|
1262
|
+
- spec/accounting/models/payment_spec.rb
|
|
1263
|
+
- spec/accounting/models/linked_transaction_spec.rb
|
|
1264
|
+
- spec/accounting/models/employees_spec.rb
|
|
1265
|
+
- spec/accounting/api/accounting_api_spec.rb
|
|
1266
1266
|
- spec/api_client_spec.rb
|
|
1267
1267
|
- spec/api_error_spec.rb
|
|
1268
|
-
- spec/app_store/api/app_store_api_spec.rb
|
|
1269
1268
|
- spec/app_store/models/subscription_spec.rb
|
|
1270
|
-
- spec/app_store/models/price_spec.rb
|
|
1271
|
-
- spec/app_store/models/plan_spec.rb
|
|
1272
1269
|
- spec/app_store/models/subscription_item_spec.rb
|
|
1273
1270
|
- spec/app_store/models/product_spec.rb
|
|
1271
|
+
- spec/app_store/models/price_spec.rb
|
|
1272
|
+
- spec/app_store/models/plan_spec.rb
|
|
1274
1273
|
- spec/app_store/models/problem_details_spec.rb
|
|
1275
|
-
- spec/
|
|
1276
|
-
- spec/assets/models/resource_validation_errors_element_spec.rb
|
|
1277
|
-
- spec/assets/models/assets_spec.rb
|
|
1278
|
-
- spec/assets/models/asset_type_spec.rb
|
|
1279
|
-
- spec/assets/models/book_depreciation_detail_spec.rb
|
|
1280
|
-
- spec/assets/models/book_depreciation_setting_spec.rb
|
|
1281
|
-
- spec/assets/models/error_spec.rb
|
|
1274
|
+
- spec/app_store/api/app_store_api_spec.rb
|
|
1282
1275
|
- spec/assets/models/field_validation_errors_element_spec.rb
|
|
1283
|
-
- spec/assets/models/
|
|
1276
|
+
- spec/assets/models/book_depreciation_setting_spec.rb
|
|
1284
1277
|
- spec/assets/models/asset_status_spec.rb
|
|
1278
|
+
- spec/assets/models/assets_spec.rb
|
|
1285
1279
|
- spec/assets/models/pagination_spec.rb
|
|
1286
|
-
- spec/assets/models/asset_spec.rb
|
|
1287
1280
|
- spec/assets/models/setting_spec.rb
|
|
1281
|
+
- spec/assets/models/asset_type_spec.rb
|
|
1282
|
+
- spec/assets/models/asset_status_query_param_spec.rb
|
|
1283
|
+
- spec/assets/models/resource_validation_errors_element_spec.rb
|
|
1284
|
+
- spec/assets/models/error_spec.rb
|
|
1285
|
+
- spec/assets/models/book_depreciation_detail_spec.rb
|
|
1286
|
+
- spec/assets/models/asset_spec.rb
|
|
1287
|
+
- spec/assets/api/asset_api_spec.rb
|
|
1288
1288
|
- spec/configuration_spec.rb
|
|
1289
|
-
- spec/files/api/files_api_spec.rb
|
|
1290
|
-
- spec/files/models/files_spec.rb
|
|
1291
|
-
- spec/files/models/association_spec.rb
|
|
1292
|
-
- spec/files/models/object_group_spec.rb
|
|
1293
|
-
- spec/files/models/file_object_spec.rb
|
|
1294
1289
|
- spec/files/models/inline_object_spec.rb
|
|
1295
|
-
- spec/files/models/
|
|
1290
|
+
- spec/files/models/object_group_spec.rb
|
|
1296
1291
|
- spec/files/models/folders_spec.rb
|
|
1297
|
-
- spec/files/models/user_spec.rb
|
|
1298
1292
|
- spec/files/models/object_type_spec.rb
|
|
1299
|
-
- spec/
|
|
1300
|
-
- spec/
|
|
1301
|
-
- spec/
|
|
1302
|
-
- spec/
|
|
1303
|
-
- spec/
|
|
1304
|
-
- spec/
|
|
1305
|
-
- spec/finance/models/pnl_account_type_spec.rb
|
|
1293
|
+
- spec/files/models/association_spec.rb
|
|
1294
|
+
- spec/files/models/user_spec.rb
|
|
1295
|
+
- spec/files/models/folder_spec.rb
|
|
1296
|
+
- spec/files/models/files_spec.rb
|
|
1297
|
+
- spec/files/models/file_object_spec.rb
|
|
1298
|
+
- spec/files/api/files_api_spec.rb
|
|
1306
1299
|
- spec/finance/models/cashflow_activity_spec.rb
|
|
1300
|
+
- spec/finance/models/current_statement_response_spec.rb
|
|
1301
|
+
- spec/finance/models/statement_lines_response_spec.rb
|
|
1302
|
+
- spec/finance/models/profit_and_loss_response_spec.rb
|
|
1307
1303
|
- spec/finance/models/cash_validation_response_spec.rb
|
|
1308
|
-
- spec/finance/models/
|
|
1309
|
-
- spec/finance/models/cashflow_type_spec.rb
|
|
1304
|
+
- spec/finance/models/pnl_account_spec.rb
|
|
1310
1305
|
- spec/finance/models/balance_sheet_account_group_spec.rb
|
|
1311
|
-
- spec/finance/models/trial_balance_movement_spec.rb
|
|
1312
|
-
- spec/finance/models/current_statement_response_spec.rb
|
|
1313
|
-
- spec/finance/models/trial_balance_entry_spec.rb
|
|
1314
1306
|
- spec/finance/models/problem_spec.rb
|
|
1315
|
-
- spec/finance/models/
|
|
1316
|
-
- spec/finance/models/cashflow_response_spec.rb
|
|
1317
|
-
- spec/finance/models/balance_sheet_account_detail_spec.rb
|
|
1318
|
-
- spec/finance/models/cash_balance_spec.rb
|
|
1319
|
-
- spec/finance/models/trial_balance_response_spec.rb
|
|
1307
|
+
- spec/finance/models/cashflow_type_spec.rb
|
|
1320
1308
|
- spec/finance/models/statement_balance_response_spec.rb
|
|
1309
|
+
- spec/finance/models/trial_balance_movement_spec.rb
|
|
1310
|
+
- spec/finance/models/balance_sheet_account_type_spec.rb
|
|
1311
|
+
- spec/finance/models/cashflow_response_spec.rb
|
|
1312
|
+
- spec/finance/models/bank_statement_response_spec.rb
|
|
1313
|
+
- spec/finance/models/pnl_account_type_spec.rb
|
|
1314
|
+
- spec/finance/models/pnl_account_class_spec.rb
|
|
1321
1315
|
- spec/finance/models/problem_type_spec.rb
|
|
1322
|
-
- spec/finance/models/
|
|
1323
|
-
- spec/finance/models/
|
|
1316
|
+
- spec/finance/models/trial_balance_account_spec.rb
|
|
1317
|
+
- spec/finance/models/balance_sheet_response_spec.rb
|
|
1324
1318
|
- spec/finance/models/cashflow_account_spec.rb
|
|
1319
|
+
- spec/finance/models/trial_balance_entry_spec.rb
|
|
1320
|
+
- spec/finance/models/cash_balance_spec.rb
|
|
1321
|
+
- spec/finance/models/data_source_response_spec.rb
|
|
1325
1322
|
- spec/finance/models/cash_account_response_spec.rb
|
|
1323
|
+
- spec/finance/models/balance_sheet_account_detail_spec.rb
|
|
1324
|
+
- spec/finance/models/trial_balance_response_spec.rb
|
|
1325
|
+
- spec/finance/api/finance_api_spec.rb
|
|
1326
1326
|
- spec/helper_methods_spec.rb
|
|
1327
|
-
- spec/payroll_au/
|
|
1328
|
-
- spec/payroll_au/models/
|
|
1329
|
-
- spec/payroll_au/models/
|
|
1330
|
-
- spec/payroll_au/models/
|
|
1327
|
+
- spec/payroll_au/models/leave_type_spec.rb
|
|
1328
|
+
- spec/payroll_au/models/superannuation_calculation_type_spec.rb
|
|
1329
|
+
- spec/payroll_au/models/reimbursement_type_spec.rb
|
|
1330
|
+
- spec/payroll_au/models/payroll_calendar_spec.rb
|
|
1331
1331
|
- spec/payroll_au/models/payslip_spec.rb
|
|
1332
|
-
- spec/payroll_au/models/
|
|
1332
|
+
- spec/payroll_au/models/validation_error_spec.rb
|
|
1333
|
+
- spec/payroll_au/models/reimbursement_line_spec.rb
|
|
1334
|
+
- spec/payroll_au/models/account_spec.rb
|
|
1333
1335
|
- spec/payroll_au/models/pay_template_spec.rb
|
|
1334
1336
|
- spec/payroll_au/models/pay_item_spec.rb
|
|
1335
|
-
- spec/payroll_au/models/
|
|
1336
|
-
- spec/payroll_au/models/
|
|
1337
|
-
- spec/payroll_au/models/
|
|
1338
|
-
- spec/payroll_au/models/
|
|
1339
|
-
- spec/payroll_au/models/manual_tax_type_spec.rb
|
|
1340
|
-
- spec/payroll_au/models/super_fund_product_spec.rb
|
|
1337
|
+
- spec/payroll_au/models/leave_balance_spec.rb
|
|
1338
|
+
- spec/payroll_au/models/superannuation_line_spec.rb
|
|
1339
|
+
- spec/payroll_au/models/leave_line_calculation_type_spec.rb
|
|
1340
|
+
- spec/payroll_au/models/residency_status_spec.rb
|
|
1341
1341
|
- spec/payroll_au/models/pay_run_spec.rb
|
|
1342
|
-
- spec/payroll_au/models/
|
|
1343
|
-
- spec/payroll_au/models/
|
|
1344
|
-
- spec/payroll_au/models/
|
|
1345
|
-
- spec/payroll_au/models/account_spec.rb
|
|
1346
|
-
- spec/payroll_au/models/tax_line_spec.rb
|
|
1347
|
-
- spec/payroll_au/models/pay_items_spec.rb
|
|
1348
|
-
- spec/payroll_au/models/leave_type_contribution_type_spec.rb
|
|
1349
|
-
- spec/payroll_au/models/deduction_line_spec.rb
|
|
1350
|
-
- spec/payroll_au/models/account_type_spec.rb
|
|
1351
|
-
- spec/payroll_au/models/home_address_spec.rb
|
|
1352
|
-
- spec/payroll_au/models/settings_tracking_categories_timesheet_categories_spec.rb
|
|
1353
|
-
- spec/payroll_au/models/employee_spec.rb
|
|
1342
|
+
- spec/payroll_au/models/super_fund_product_spec.rb
|
|
1343
|
+
- spec/payroll_au/models/leave_period_spec.rb
|
|
1344
|
+
- spec/payroll_au/models/payslip_object_spec.rb
|
|
1354
1345
|
- spec/payroll_au/models/super_line_spec.rb
|
|
1355
|
-
- spec/payroll_au/models/
|
|
1356
|
-
- spec/payroll_au/models/
|
|
1357
|
-
- spec/payroll_au/models/
|
|
1358
|
-
- spec/payroll_au/models/
|
|
1346
|
+
- spec/payroll_au/models/deduction_type_spec.rb
|
|
1347
|
+
- spec/payroll_au/models/timesheets_spec.rb
|
|
1348
|
+
- spec/payroll_au/models/employment_termination_payment_type_spec.rb
|
|
1349
|
+
- spec/payroll_au/models/settings_object_spec.rb
|
|
1350
|
+
- spec/payroll_au/models/timesheet_status_spec.rb
|
|
1351
|
+
- spec/payroll_au/models/earnings_rate_calculation_type_spec.rb
|
|
1359
1352
|
- spec/payroll_au/models/employee_status_spec.rb
|
|
1360
|
-
- spec/payroll_au/models/residency_status_spec.rb
|
|
1361
|
-
- spec/payroll_au/models/validation_error_spec.rb
|
|
1362
|
-
- spec/payroll_au/models/leave_earnings_line_spec.rb
|
|
1363
|
-
- spec/payroll_au/models/timesheet_object_spec.rb
|
|
1364
1353
|
- spec/payroll_au/models/opening_balances_spec.rb
|
|
1354
|
+
- spec/payroll_au/models/leave_applications_spec.rb
|
|
1365
1355
|
- spec/payroll_au/models/super_membership_spec.rb
|
|
1366
|
-
- spec/payroll_au/models/
|
|
1367
|
-
- spec/payroll_au/models/
|
|
1356
|
+
- spec/payroll_au/models/deduction_type_calculation_type_spec.rb
|
|
1357
|
+
- spec/payroll_au/models/leave_earnings_line_spec.rb
|
|
1358
|
+
- spec/payroll_au/models/tax_declaration_spec.rb
|
|
1359
|
+
- spec/payroll_au/models/allowance_type_spec.rb
|
|
1360
|
+
- spec/payroll_au/models/calendar_type_spec.rb
|
|
1368
1361
|
- spec/payroll_au/models/timesheet_spec.rb
|
|
1369
|
-
- spec/payroll_au/models/
|
|
1370
|
-
- spec/payroll_au/models/
|
|
1362
|
+
- spec/payroll_au/models/payroll_calendars_spec.rb
|
|
1363
|
+
- spec/payroll_au/models/pay_items_spec.rb
|
|
1364
|
+
- spec/payroll_au/models/state_spec.rb
|
|
1371
1365
|
- spec/payroll_au/models/timesheet_line_spec.rb
|
|
1372
|
-
- spec/payroll_au/models/
|
|
1373
|
-
- spec/payroll_au/models/
|
|
1374
|
-
- spec/payroll_au/models/
|
|
1375
|
-
- spec/payroll_au/models/timesheets_spec.rb
|
|
1376
|
-
- spec/payroll_au/models/earnings_rate_spec.rb
|
|
1377
|
-
- spec/payroll_au/models/payroll_calendar_spec.rb
|
|
1378
|
-
- spec/payroll_au/models/reimbursement_line_spec.rb
|
|
1366
|
+
- spec/payroll_au/models/leave_application_spec.rb
|
|
1367
|
+
- spec/payroll_au/models/home_address_spec.rb
|
|
1368
|
+
- spec/payroll_au/models/pay_run_status_spec.rb
|
|
1379
1369
|
- spec/payroll_au/models/payslips_spec.rb
|
|
1380
|
-
- spec/payroll_au/models/
|
|
1381
|
-
- spec/payroll_au/models/pay_runs_spec.rb
|
|
1370
|
+
- spec/payroll_au/models/earnings_line_spec.rb
|
|
1382
1371
|
- spec/payroll_au/models/super_fund_type_spec.rb
|
|
1383
|
-
- spec/payroll_au/models/
|
|
1384
|
-
- spec/payroll_au/models/
|
|
1385
|
-
- spec/payroll_au/models/
|
|
1386
|
-
- spec/payroll_au/models/
|
|
1387
|
-
- spec/payroll_au/models/
|
|
1388
|
-
- spec/payroll_au/models/
|
|
1389
|
-
- spec/payroll_au/models/
|
|
1372
|
+
- spec/payroll_au/models/settings_tracking_categories_employee_groups_spec.rb
|
|
1373
|
+
- spec/payroll_au/models/super_fund_products_spec.rb
|
|
1374
|
+
- spec/payroll_au/models/tax_line_spec.rb
|
|
1375
|
+
- spec/payroll_au/models/earnings_rate_spec.rb
|
|
1376
|
+
- spec/payroll_au/models/api_exception_spec.rb
|
|
1377
|
+
- spec/payroll_au/models/leave_type_contribution_type_spec.rb
|
|
1378
|
+
- spec/payroll_au/models/account_type_spec.rb
|
|
1390
1379
|
- spec/payroll_au/models/payslip_lines_spec.rb
|
|
1391
|
-
- spec/payroll_au/models/
|
|
1392
|
-
- spec/payroll_au/models/
|
|
1393
|
-
- spec/payroll_au/models/
|
|
1394
|
-
- spec/payroll_au/models/
|
|
1395
|
-
- spec/payroll_au/models/tax_declaration_spec.rb
|
|
1380
|
+
- spec/payroll_au/models/deduction_line_spec.rb
|
|
1381
|
+
- spec/payroll_au/models/super_funds_spec.rb
|
|
1382
|
+
- spec/payroll_au/models/settings_tracking_categories_timesheet_categories_spec.rb
|
|
1383
|
+
- spec/payroll_au/models/payslip_summary_spec.rb
|
|
1396
1384
|
- spec/payroll_au/models/bank_account_spec.rb
|
|
1397
|
-
- spec/payroll_au/models/
|
|
1398
|
-
- spec/payroll_au/models/leave_period_status_spec.rb
|
|
1399
|
-
- spec/payroll_au/models/deduction_type_calculation_type_spec.rb
|
|
1400
|
-
- spec/payroll_au/models/superannuation_calculation_type_spec.rb
|
|
1401
|
-
- spec/payroll_au/models/payment_frequency_type_spec.rb
|
|
1402
|
-
- spec/payroll_au/models/settings_object_spec.rb
|
|
1385
|
+
- spec/payroll_au/models/manual_tax_type_spec.rb
|
|
1403
1386
|
- spec/payroll_au/models/settings_spec.rb
|
|
1387
|
+
- spec/payroll_au/models/leave_line_spec.rb
|
|
1388
|
+
- spec/payroll_au/models/settings_tracking_categories_spec.rb
|
|
1389
|
+
- spec/payroll_au/models/payment_frequency_type_spec.rb
|
|
1390
|
+
- spec/payroll_au/models/employee_spec.rb
|
|
1391
|
+
- spec/payroll_au/models/earnings_type_spec.rb
|
|
1404
1392
|
- spec/payroll_au/models/employment_basis_spec.rb
|
|
1405
|
-
- spec/payroll_au/models/
|
|
1406
|
-
- spec/
|
|
1407
|
-
- spec/
|
|
1408
|
-
- spec/
|
|
1409
|
-
- spec/
|
|
1410
|
-
- spec/
|
|
1411
|
-
- spec/
|
|
1412
|
-
- spec/
|
|
1413
|
-
- spec/
|
|
1414
|
-
- spec/
|
|
1415
|
-
- spec/
|
|
1416
|
-
- spec/
|
|
1417
|
-
- spec/
|
|
1418
|
-
- spec/payroll_nz/models/
|
|
1419
|
-
- spec/payroll_nz/models/
|
|
1420
|
-
- spec/payroll_nz/models/
|
|
1421
|
-
- spec/payroll_nz/models/
|
|
1422
|
-
- spec/payroll_nz/models/
|
|
1423
|
-
- spec/payroll_nz/models/
|
|
1424
|
-
- spec/payroll_nz/models/
|
|
1425
|
-
- spec/payroll_nz/models/payment_method_object_spec.rb
|
|
1426
|
-
- spec/payroll_nz/models/address_spec.rb
|
|
1427
|
-
- spec/payroll_nz/models/statutory_deductions_spec.rb
|
|
1428
|
-
- spec/payroll_nz/models/invalid_field_spec.rb
|
|
1429
|
-
- spec/payroll_nz/models/employee_statutory_leave_balance_object_spec.rb
|
|
1393
|
+
- spec/payroll_au/models/superannuation_contribution_type_spec.rb
|
|
1394
|
+
- spec/payroll_au/models/entitlement_final_pay_payout_type_spec.rb
|
|
1395
|
+
- spec/payroll_au/models/leave_accrual_line_spec.rb
|
|
1396
|
+
- spec/payroll_au/models/timesheet_object_spec.rb
|
|
1397
|
+
- spec/payroll_au/models/leave_lines_spec.rb
|
|
1398
|
+
- spec/payroll_au/models/rate_type_spec.rb
|
|
1399
|
+
- spec/payroll_au/models/leave_period_status_spec.rb
|
|
1400
|
+
- spec/payroll_au/models/tfn_exemption_type_spec.rb
|
|
1401
|
+
- spec/payroll_au/models/pay_runs_spec.rb
|
|
1402
|
+
- spec/payroll_au/models/super_fund_spec.rb
|
|
1403
|
+
- spec/payroll_au/models/reimbursement_lines_spec.rb
|
|
1404
|
+
- spec/payroll_au/models/employees_spec.rb
|
|
1405
|
+
- spec/payroll_au/api/payroll_au_api_spec.rb
|
|
1406
|
+
- spec/payroll_nz/models/statutory_deduction_category_spec.rb
|
|
1407
|
+
- spec/payroll_nz/models/leave_type_spec.rb
|
|
1408
|
+
- spec/payroll_nz/models/employee_statutory_leave_balance_spec.rb
|
|
1409
|
+
- spec/payroll_nz/models/pay_run_calendar_spec.rb
|
|
1410
|
+
- spec/payroll_nz/models/employee_statutory_sick_leaves_spec.rb
|
|
1411
|
+
- spec/payroll_nz/models/earnings_order_object_spec.rb
|
|
1412
|
+
- spec/payroll_nz/models/reimbursement_line_spec.rb
|
|
1430
1413
|
- spec/payroll_nz/models/account_spec.rb
|
|
1431
|
-
- spec/payroll_nz/models/tax_line_spec.rb
|
|
1432
1414
|
- spec/payroll_nz/models/employee_statutory_leave_summary_spec.rb
|
|
1433
|
-
- spec/payroll_nz/models/
|
|
1434
|
-
- spec/payroll_nz/models/
|
|
1435
|
-
- spec/payroll_nz/models/
|
|
1436
|
-
- spec/payroll_nz/models/payment_line_spec.rb
|
|
1437
|
-
- spec/payroll_nz/models/employee_leave_setup_object_spec.rb
|
|
1438
|
-
- spec/payroll_nz/models/employee_spec.rb
|
|
1439
|
-
- spec/payroll_nz/models/employee_leave_balance_spec.rb
|
|
1440
|
-
- spec/payroll_nz/models/statutory_deduction_line_spec.rb
|
|
1441
|
-
- spec/payroll_nz/models/salary_and_wage_object_spec.rb
|
|
1442
|
-
- spec/payroll_nz/models/gross_earnings_history_spec.rb
|
|
1415
|
+
- spec/payroll_nz/models/statutory_deductions_spec.rb
|
|
1416
|
+
- spec/payroll_nz/models/salary_and_wages_spec.rb
|
|
1417
|
+
- spec/payroll_nz/models/employee_statutory_leaves_summaries_spec.rb
|
|
1443
1418
|
- spec/payroll_nz/models/employee_pay_template_spec.rb
|
|
1444
|
-
- spec/payroll_nz/models/
|
|
1445
|
-
- spec/payroll_nz/models/
|
|
1446
|
-
- spec/payroll_nz/models/
|
|
1447
|
-
- spec/payroll_nz/models/
|
|
1448
|
-
- spec/payroll_nz/models/
|
|
1449
|
-
- spec/payroll_nz/models/
|
|
1419
|
+
- spec/payroll_nz/models/superannuation_line_spec.rb
|
|
1420
|
+
- spec/payroll_nz/models/accounts_spec.rb
|
|
1421
|
+
- spec/payroll_nz/models/earnings_template_spec.rb
|
|
1422
|
+
- spec/payroll_nz/models/employee_leave_spec.rb
|
|
1423
|
+
- spec/payroll_nz/models/pay_run_spec.rb
|
|
1424
|
+
- spec/payroll_nz/models/superannuation_object_spec.rb
|
|
1425
|
+
- spec/payroll_nz/models/benefit_spec.rb
|
|
1426
|
+
- spec/payroll_nz/models/employment_object_spec.rb
|
|
1427
|
+
- spec/payroll_nz/models/salary_and_wage_spec.rb
|
|
1450
1428
|
- spec/payroll_nz/models/employee_leave_type_object_spec.rb
|
|
1451
|
-
- spec/payroll_nz/models/earnings_rate_object_spec.rb
|
|
1452
1429
|
- spec/payroll_nz/models/problem_spec.rb
|
|
1453
1430
|
- spec/payroll_nz/models/reimbursements_spec.rb
|
|
1454
|
-
- spec/payroll_nz/models/
|
|
1455
|
-
- spec/payroll_nz/models/
|
|
1456
|
-
- spec/payroll_nz/models/
|
|
1457
|
-
- spec/payroll_nz/models/
|
|
1431
|
+
- spec/payroll_nz/models/leave_period_spec.rb
|
|
1432
|
+
- spec/payroll_nz/models/earnings_orders_spec.rb
|
|
1433
|
+
- spec/payroll_nz/models/payment_method_spec.rb
|
|
1434
|
+
- spec/payroll_nz/models/leave_types_spec.rb
|
|
1435
|
+
- spec/payroll_nz/models/deduction_spec.rb
|
|
1436
|
+
- spec/payroll_nz/models/timesheets_spec.rb
|
|
1437
|
+
- spec/payroll_nz/models/employee_leave_types_spec.rb
|
|
1438
|
+
- spec/payroll_nz/models/earnings_order_spec.rb
|
|
1439
|
+
- spec/payroll_nz/models/payment_line_spec.rb
|
|
1440
|
+
- spec/payroll_nz/models/employee_statutory_sick_leave_object_spec.rb
|
|
1441
|
+
- spec/payroll_nz/models/pagination_spec.rb
|
|
1442
|
+
- spec/payroll_nz/models/tax_settings_spec.rb
|
|
1443
|
+
- spec/payroll_nz/models/leave_earnings_line_spec.rb
|
|
1444
|
+
- spec/payroll_nz/models/reimbursement_spec.rb
|
|
1458
1445
|
- spec/payroll_nz/models/pay_run_calendar_object_spec.rb
|
|
1446
|
+
- spec/payroll_nz/models/employee_opening_balances_object_spec.rb
|
|
1447
|
+
- spec/payroll_nz/models/employee_leave_setup_object_spec.rb
|
|
1448
|
+
- spec/payroll_nz/models/address_spec.rb
|
|
1449
|
+
- spec/payroll_nz/models/earnings_template_object_spec.rb
|
|
1450
|
+
- spec/payroll_nz/models/timesheet_spec.rb
|
|
1459
1451
|
- spec/payroll_nz/models/timesheet_line_spec.rb
|
|
1460
|
-
- spec/payroll_nz/models/
|
|
1461
|
-
- spec/payroll_nz/models/
|
|
1462
|
-
- spec/payroll_nz/models/
|
|
1452
|
+
- spec/payroll_nz/models/employee_statutory_leave_balance_object_spec.rb
|
|
1453
|
+
- spec/payroll_nz/models/gross_earnings_history_spec.rb
|
|
1454
|
+
- spec/payroll_nz/models/tracking_categories_spec.rb
|
|
1455
|
+
- spec/payroll_nz/models/earnings_line_spec.rb
|
|
1456
|
+
- spec/payroll_nz/models/statutory_deduction_spec.rb
|
|
1457
|
+
- spec/payroll_nz/models/deductions_spec.rb
|
|
1463
1458
|
- spec/payroll_nz/models/employee_leaves_spec.rb
|
|
1459
|
+
- spec/payroll_nz/models/statutory_deduction_object_spec.rb
|
|
1460
|
+
- spec/payroll_nz/models/tax_line_spec.rb
|
|
1464
1461
|
- spec/payroll_nz/models/earnings_rate_spec.rb
|
|
1462
|
+
- spec/payroll_nz/models/employee_tax_spec.rb
|
|
1463
|
+
- spec/payroll_nz/models/pay_slips_spec.rb
|
|
1465
1464
|
- spec/payroll_nz/models/superannuations_spec.rb
|
|
1466
|
-
- spec/payroll_nz/models/
|
|
1467
|
-
- spec/payroll_nz/models/
|
|
1468
|
-
- spec/payroll_nz/models/
|
|
1469
|
-
- spec/payroll_nz/models/
|
|
1470
|
-
- spec/payroll_nz/models/
|
|
1465
|
+
- spec/payroll_nz/models/statutory_deduction_line_spec.rb
|
|
1466
|
+
- spec/payroll_nz/models/timesheet_earnings_line_spec.rb
|
|
1467
|
+
- spec/payroll_nz/models/tax_code_spec.rb
|
|
1468
|
+
- spec/payroll_nz/models/deduction_line_spec.rb
|
|
1469
|
+
- spec/payroll_nz/models/pay_run_calendars_spec.rb
|
|
1470
|
+
- spec/payroll_nz/models/employee_leave_setup_spec.rb
|
|
1471
|
+
- spec/payroll_nz/models/employee_leave_object_spec.rb
|
|
1472
|
+
- spec/payroll_nz/models/bank_account_spec.rb
|
|
1473
|
+
- spec/payroll_nz/models/payment_method_object_spec.rb
|
|
1474
|
+
- spec/payroll_nz/models/deduction_object_spec.rb
|
|
1475
|
+
- spec/payroll_nz/models/settings_spec.rb
|
|
1476
|
+
- spec/payroll_nz/models/employee_pay_template_object_spec.rb
|
|
1477
|
+
- spec/payroll_nz/models/leave_type_object_spec.rb
|
|
1478
|
+
- spec/payroll_nz/models/invalid_field_spec.rb
|
|
1479
|
+
- spec/payroll_nz/models/salary_and_wage_object_spec.rb
|
|
1480
|
+
- spec/payroll_nz/models/employee_opening_balance_spec.rb
|
|
1481
|
+
- spec/payroll_nz/models/timesheet_line_object_spec.rb
|
|
1482
|
+
- spec/payroll_nz/models/employee_tax_object_spec.rb
|
|
1483
|
+
- spec/payroll_nz/models/employee_spec.rb
|
|
1484
|
+
- spec/payroll_nz/models/employment_spec.rb
|
|
1471
1485
|
- spec/payroll_nz/models/employee_object_spec.rb
|
|
1472
|
-
- spec/payroll_nz/models/pay_slip_object_spec.rb
|
|
1473
1486
|
- spec/payroll_nz/models/leave_periods_spec.rb
|
|
1474
|
-
- spec/payroll_nz/models/
|
|
1475
|
-
- spec/payroll_nz/models/
|
|
1476
|
-
- spec/payroll_nz/models/earnings_template_spec.rb
|
|
1487
|
+
- spec/payroll_nz/models/employee_statutory_sick_leave_spec.rb
|
|
1488
|
+
- spec/payroll_nz/models/reimbursement_object_spec.rb
|
|
1477
1489
|
- spec/payroll_nz/models/leave_accrual_line_spec.rb
|
|
1478
|
-
- spec/payroll_nz/models/
|
|
1479
|
-
- spec/payroll_nz/models/deduction_spec.rb
|
|
1480
|
-
- spec/payroll_nz/models/salary_and_wages_spec.rb
|
|
1481
|
-
- spec/payroll_nz/models/employee_statutory_leaves_summaries_spec.rb
|
|
1482
|
-
- spec/payroll_nz/models/leave_types_spec.rb
|
|
1483
|
-
- spec/payroll_nz/models/leave_type_spec.rb
|
|
1484
|
-
- spec/payroll_nz/models/superannuation_line_spec.rb
|
|
1485
|
-
- spec/payroll_nz/models/pay_slips_spec.rb
|
|
1486
|
-
- spec/payroll_nz/models/employee_earnings_templates_spec.rb
|
|
1487
|
-
- spec/payroll_nz/models/tracking_categories_spec.rb
|
|
1488
|
-
- spec/payroll_nz/models/bank_account_spec.rb
|
|
1489
|
-
- spec/payroll_nz/models/pagination_spec.rb
|
|
1490
|
-
- spec/payroll_nz/models/employment_object_spec.rb
|
|
1491
|
-
- spec/payroll_nz/models/superannuation_object_spec.rb
|
|
1492
|
-
- spec/payroll_nz/models/accounts_spec.rb
|
|
1493
|
-
- spec/payroll_nz/models/earnings_rates_spec.rb
|
|
1490
|
+
- spec/payroll_nz/models/timesheet_object_spec.rb
|
|
1494
1491
|
- spec/payroll_nz/models/employee_leave_type_spec.rb
|
|
1495
|
-
- spec/payroll_nz/models/
|
|
1496
|
-
- spec/payroll_nz/models/
|
|
1497
|
-
- spec/payroll_nz/models/
|
|
1498
|
-
- spec/payroll_nz/models/employment_spec.rb
|
|
1499
|
-
- spec/payroll_nz/models/leave_period_spec.rb
|
|
1500
|
-
- spec/payroll_nz/models/employee_statutory_sick_leaves_spec.rb
|
|
1501
|
-
- spec/payroll_nz/models/deduction_object_spec.rb
|
|
1492
|
+
- spec/payroll_nz/models/earnings_rates_spec.rb
|
|
1493
|
+
- spec/payroll_nz/models/pay_slip_object_spec.rb
|
|
1494
|
+
- spec/payroll_nz/models/pay_slip_spec.rb
|
|
1502
1495
|
- spec/payroll_nz/models/employee_leave_balances_spec.rb
|
|
1503
|
-
- spec/payroll_nz/models/
|
|
1504
|
-
- spec/payroll_nz/models/
|
|
1505
|
-
- spec/
|
|
1506
|
-
- spec/
|
|
1507
|
-
- spec/
|
|
1508
|
-
- spec/
|
|
1509
|
-
- spec/
|
|
1510
|
-
- spec/
|
|
1496
|
+
- spec/payroll_nz/models/pay_runs_spec.rb
|
|
1497
|
+
- spec/payroll_nz/models/tracking_category_spec.rb
|
|
1498
|
+
- spec/payroll_nz/models/employee_earnings_templates_spec.rb
|
|
1499
|
+
- spec/payroll_nz/models/employee_pay_templates_spec.rb
|
|
1500
|
+
- spec/payroll_nz/models/pay_run_object_spec.rb
|
|
1501
|
+
- spec/payroll_nz/models/earnings_rate_object_spec.rb
|
|
1502
|
+
- spec/payroll_nz/models/employee_leave_balance_spec.rb
|
|
1503
|
+
- spec/payroll_nz/models/employees_spec.rb
|
|
1504
|
+
- spec/payroll_nz/api/payroll_nz_api_spec.rb
|
|
1505
|
+
- spec/payroll_uk/models/statutory_deduction_category_spec.rb
|
|
1506
|
+
- spec/payroll_uk/models/leave_type_spec.rb
|
|
1507
|
+
- spec/payroll_uk/models/employee_statutory_leave_balance_spec.rb
|
|
1508
|
+
- spec/payroll_uk/models/pay_run_calendar_spec.rb
|
|
1509
|
+
- spec/payroll_uk/models/employee_statutory_sick_leaves_spec.rb
|
|
1510
|
+
- spec/payroll_uk/models/earnings_order_object_spec.rb
|
|
1511
1511
|
- spec/payroll_uk/models/payslip_spec.rb
|
|
1512
|
-
- spec/payroll_uk/models/
|
|
1513
|
-
- spec/payroll_uk/models/earnings_order_spec.rb
|
|
1514
|
-
- spec/payroll_uk/models/employee_tax_object_spec.rb
|
|
1515
|
-
- spec/payroll_uk/models/employee_statutory_sick_leave_spec.rb
|
|
1516
|
-
- spec/payroll_uk/models/deductions_spec.rb
|
|
1517
|
-
- spec/payroll_uk/models/earnings_orders_spec.rb
|
|
1518
|
-
- spec/payroll_uk/models/employee_pay_templates_spec.rb
|
|
1519
|
-
- spec/payroll_uk/models/benefit_object_spec.rb
|
|
1520
|
-
- spec/payroll_uk/models/employee_opening_balances_object_spec.rb
|
|
1521
|
-
- spec/payroll_uk/models/tracking_category_spec.rb
|
|
1522
|
-
- spec/payroll_uk/models/benefits_spec.rb
|
|
1523
|
-
- spec/payroll_uk/models/pay_run_spec.rb
|
|
1524
|
-
- spec/payroll_uk/models/employee_pay_template_object_spec.rb
|
|
1525
|
-
- spec/payroll_uk/models/payment_method_object_spec.rb
|
|
1526
|
-
- spec/payroll_uk/models/address_spec.rb
|
|
1527
|
-
- spec/payroll_uk/models/invalid_field_spec.rb
|
|
1528
|
-
- spec/payroll_uk/models/employee_statutory_leave_balance_object_spec.rb
|
|
1512
|
+
- spec/payroll_uk/models/reimbursement_line_spec.rb
|
|
1529
1513
|
- spec/payroll_uk/models/account_spec.rb
|
|
1530
|
-
- spec/payroll_uk/models/tax_line_spec.rb
|
|
1531
1514
|
- spec/payroll_uk/models/employee_statutory_leave_summary_spec.rb
|
|
1532
|
-
- spec/payroll_uk/models/
|
|
1533
|
-
- spec/payroll_uk/models/
|
|
1534
|
-
- spec/payroll_uk/models/earnings_template_object_spec.rb
|
|
1535
|
-
- spec/payroll_uk/models/payment_line_spec.rb
|
|
1536
|
-
- spec/payroll_uk/models/employee_spec.rb
|
|
1537
|
-
- spec/payroll_uk/models/employee_leave_balance_spec.rb
|
|
1538
|
-
- spec/payroll_uk/models/salary_and_wage_object_spec.rb
|
|
1515
|
+
- spec/payroll_uk/models/salary_and_wages_spec.rb
|
|
1516
|
+
- spec/payroll_uk/models/employee_statutory_leaves_summaries_spec.rb
|
|
1539
1517
|
- spec/payroll_uk/models/employee_pay_template_spec.rb
|
|
1540
|
-
- spec/payroll_uk/models/
|
|
1541
|
-
- spec/payroll_uk/models/
|
|
1542
|
-
- spec/payroll_uk/models/
|
|
1543
|
-
- spec/payroll_uk/models/
|
|
1544
|
-
- spec/payroll_uk/models/
|
|
1545
|
-
- spec/payroll_uk/models/
|
|
1518
|
+
- spec/payroll_uk/models/accounts_spec.rb
|
|
1519
|
+
- spec/payroll_uk/models/earnings_template_spec.rb
|
|
1520
|
+
- spec/payroll_uk/models/employee_leave_spec.rb
|
|
1521
|
+
- spec/payroll_uk/models/pay_run_spec.rb
|
|
1522
|
+
- spec/payroll_uk/models/benefit_spec.rb
|
|
1523
|
+
- spec/payroll_uk/models/employment_object_spec.rb
|
|
1524
|
+
- spec/payroll_uk/models/salary_and_wage_spec.rb
|
|
1546
1525
|
- spec/payroll_uk/models/employee_leave_type_object_spec.rb
|
|
1547
|
-
- spec/payroll_uk/models/earnings_rate_object_spec.rb
|
|
1548
1526
|
- spec/payroll_uk/models/problem_spec.rb
|
|
1549
1527
|
- spec/payroll_uk/models/reimbursements_spec.rb
|
|
1550
|
-
- spec/payroll_uk/models/
|
|
1551
|
-
- spec/payroll_uk/models/
|
|
1552
|
-
- spec/payroll_uk/models/
|
|
1528
|
+
- spec/payroll_uk/models/leave_period_spec.rb
|
|
1529
|
+
- spec/payroll_uk/models/earnings_orders_spec.rb
|
|
1530
|
+
- spec/payroll_uk/models/payslip_object_spec.rb
|
|
1531
|
+
- spec/payroll_uk/models/payment_method_spec.rb
|
|
1532
|
+
- spec/payroll_uk/models/leave_types_spec.rb
|
|
1533
|
+
- spec/payroll_uk/models/deduction_spec.rb
|
|
1534
|
+
- spec/payroll_uk/models/timesheets_spec.rb
|
|
1535
|
+
- spec/payroll_uk/models/employee_leave_types_spec.rb
|
|
1536
|
+
- spec/payroll_uk/models/court_order_line_spec.rb
|
|
1537
|
+
- spec/payroll_uk/models/earnings_order_spec.rb
|
|
1538
|
+
- spec/payroll_uk/models/payment_line_spec.rb
|
|
1539
|
+
- spec/payroll_uk/models/employee_opening_balances_spec.rb
|
|
1540
|
+
- spec/payroll_uk/models/employee_statutory_sick_leave_object_spec.rb
|
|
1541
|
+
- spec/payroll_uk/models/pagination_spec.rb
|
|
1542
|
+
- spec/payroll_uk/models/leave_earnings_line_spec.rb
|
|
1543
|
+
- spec/payroll_uk/models/reimbursement_spec.rb
|
|
1553
1544
|
- spec/payroll_uk/models/pay_run_calendar_object_spec.rb
|
|
1545
|
+
- spec/payroll_uk/models/employee_opening_balances_object_spec.rb
|
|
1546
|
+
- spec/payroll_uk/models/address_spec.rb
|
|
1547
|
+
- spec/payroll_uk/models/earnings_template_object_spec.rb
|
|
1548
|
+
- spec/payroll_uk/models/timesheet_spec.rb
|
|
1554
1549
|
- spec/payroll_uk/models/timesheet_line_spec.rb
|
|
1555
|
-
- spec/payroll_uk/models/
|
|
1556
|
-
- spec/payroll_uk/models/
|
|
1557
|
-
- spec/payroll_uk/models/
|
|
1550
|
+
- spec/payroll_uk/models/employee_statutory_leave_balance_object_spec.rb
|
|
1551
|
+
- spec/payroll_uk/models/payslips_spec.rb
|
|
1552
|
+
- spec/payroll_uk/models/tracking_categories_spec.rb
|
|
1553
|
+
- spec/payroll_uk/models/benefit_object_spec.rb
|
|
1554
|
+
- spec/payroll_uk/models/earnings_line_spec.rb
|
|
1555
|
+
- spec/payroll_uk/models/statutory_deduction_spec.rb
|
|
1556
|
+
- spec/payroll_uk/models/deductions_spec.rb
|
|
1558
1557
|
- spec/payroll_uk/models/employee_leaves_spec.rb
|
|
1558
|
+
- spec/payroll_uk/models/benefits_spec.rb
|
|
1559
|
+
- spec/payroll_uk/models/tax_line_spec.rb
|
|
1559
1560
|
- spec/payroll_uk/models/earnings_rate_spec.rb
|
|
1560
|
-
- spec/payroll_uk/models/
|
|
1561
|
-
- spec/payroll_uk/models/
|
|
1562
|
-
- spec/payroll_uk/models/
|
|
1563
|
-
- spec/payroll_uk/models/
|
|
1564
|
-
- spec/payroll_uk/models/
|
|
1565
|
-
- spec/payroll_uk/models/
|
|
1561
|
+
- spec/payroll_uk/models/employee_tax_spec.rb
|
|
1562
|
+
- spec/payroll_uk/models/timesheet_earnings_line_spec.rb
|
|
1563
|
+
- spec/payroll_uk/models/deduction_line_spec.rb
|
|
1564
|
+
- spec/payroll_uk/models/pay_run_calendars_spec.rb
|
|
1565
|
+
- spec/payroll_uk/models/employee_leave_object_spec.rb
|
|
1566
|
+
- spec/payroll_uk/models/bank_account_spec.rb
|
|
1567
|
+
- spec/payroll_uk/models/payment_method_object_spec.rb
|
|
1568
|
+
- spec/payroll_uk/models/deduction_object_spec.rb
|
|
1569
|
+
- spec/payroll_uk/models/settings_spec.rb
|
|
1570
|
+
- spec/payroll_uk/models/employee_pay_template_object_spec.rb
|
|
1571
|
+
- spec/payroll_uk/models/leave_type_object_spec.rb
|
|
1572
|
+
- spec/payroll_uk/models/invalid_field_spec.rb
|
|
1573
|
+
- spec/payroll_uk/models/salary_and_wage_object_spec.rb
|
|
1574
|
+
- spec/payroll_uk/models/timesheet_line_object_spec.rb
|
|
1575
|
+
- spec/payroll_uk/models/employee_tax_object_spec.rb
|
|
1576
|
+
- spec/payroll_uk/models/benefit_line_spec.rb
|
|
1577
|
+
- spec/payroll_uk/models/employee_spec.rb
|
|
1578
|
+
- spec/payroll_uk/models/employment_spec.rb
|
|
1566
1579
|
- spec/payroll_uk/models/employee_object_spec.rb
|
|
1567
1580
|
- spec/payroll_uk/models/leave_periods_spec.rb
|
|
1568
|
-
- spec/payroll_uk/models/
|
|
1569
|
-
- spec/payroll_uk/models/
|
|
1570
|
-
- spec/payroll_uk/models/statutory_deduction_spec.rb
|
|
1571
|
-
- spec/payroll_uk/models/earnings_template_spec.rb
|
|
1581
|
+
- spec/payroll_uk/models/employee_statutory_sick_leave_spec.rb
|
|
1582
|
+
- spec/payroll_uk/models/reimbursement_object_spec.rb
|
|
1572
1583
|
- spec/payroll_uk/models/leave_accrual_line_spec.rb
|
|
1573
|
-
- spec/payroll_uk/models/
|
|
1574
|
-
- spec/payroll_uk/models/deduction_spec.rb
|
|
1575
|
-
- spec/payroll_uk/models/salary_and_wages_spec.rb
|
|
1576
|
-
- spec/payroll_uk/models/employee_statutory_leaves_summaries_spec.rb
|
|
1577
|
-
- spec/payroll_uk/models/leave_types_spec.rb
|
|
1578
|
-
- spec/payroll_uk/models/leave_type_spec.rb
|
|
1579
|
-
- spec/payroll_uk/models/tracking_categories_spec.rb
|
|
1580
|
-
- spec/payroll_uk/models/bank_account_spec.rb
|
|
1581
|
-
- spec/payroll_uk/models/employee_opening_balances_spec.rb
|
|
1582
|
-
- spec/payroll_uk/models/pagination_spec.rb
|
|
1583
|
-
- spec/payroll_uk/models/employment_object_spec.rb
|
|
1584
|
-
- spec/payroll_uk/models/accounts_spec.rb
|
|
1585
|
-
- spec/payroll_uk/models/earnings_rates_spec.rb
|
|
1584
|
+
- spec/payroll_uk/models/timesheet_object_spec.rb
|
|
1586
1585
|
- spec/payroll_uk/models/employee_leave_type_spec.rb
|
|
1587
|
-
- spec/payroll_uk/models/
|
|
1588
|
-
- spec/payroll_uk/models/reimbursement_spec.rb
|
|
1589
|
-
- spec/payroll_uk/models/employment_spec.rb
|
|
1590
|
-
- spec/payroll_uk/models/leave_period_spec.rb
|
|
1591
|
-
- spec/payroll_uk/models/employee_statutory_sick_leaves_spec.rb
|
|
1592
|
-
- spec/payroll_uk/models/deduction_object_spec.rb
|
|
1586
|
+
- spec/payroll_uk/models/earnings_rates_spec.rb
|
|
1593
1587
|
- spec/payroll_uk/models/employee_leave_balances_spec.rb
|
|
1594
|
-
- spec/payroll_uk/models/
|
|
1595
|
-
- spec/payroll_uk/models/
|
|
1596
|
-
- spec/
|
|
1597
|
-
- spec/
|
|
1598
|
-
- spec/
|
|
1599
|
-
- spec/
|
|
1600
|
-
- spec/
|
|
1588
|
+
- spec/payroll_uk/models/pay_runs_spec.rb
|
|
1589
|
+
- spec/payroll_uk/models/tracking_category_spec.rb
|
|
1590
|
+
- spec/payroll_uk/models/employee_pay_templates_spec.rb
|
|
1591
|
+
- spec/payroll_uk/models/pay_run_object_spec.rb
|
|
1592
|
+
- spec/payroll_uk/models/earnings_rate_object_spec.rb
|
|
1593
|
+
- spec/payroll_uk/models/employee_leave_balance_spec.rb
|
|
1594
|
+
- spec/payroll_uk/models/employees_spec.rb
|
|
1595
|
+
- spec/payroll_uk/api/payroll_uk_api_spec.rb
|
|
1601
1596
|
- spec/projects/models/time_entries_spec.rb
|
|
1602
|
-
- spec/projects/models/project_spec.rb
|
|
1603
|
-
- spec/projects/models/project_users_spec.rb
|
|
1604
|
-
- spec/projects/models/amount_spec.rb
|
|
1605
|
-
- spec/projects/models/project_patch_spec.rb
|
|
1606
|
-
- spec/projects/models/time_entry_create_or_update_spec.rb
|
|
1607
|
-
- spec/projects/models/error_spec.rb
|
|
1608
|
-
- spec/projects/models/time_entry_spec.rb
|
|
1609
1597
|
- spec/projects/models/charge_type_spec.rb
|
|
1610
|
-
- spec/projects/models/project_user_spec.rb
|
|
1611
|
-
- spec/projects/models/task_create_or_update_spec.rb
|
|
1612
1598
|
- spec/projects/models/project_status_spec.rb
|
|
1599
|
+
- spec/projects/models/project_create_or_update_spec.rb
|
|
1600
|
+
- spec/projects/models/time_entry_create_or_update_spec.rb
|
|
1601
|
+
- spec/projects/models/project_users_spec.rb
|
|
1602
|
+
- spec/projects/models/project_spec.rb
|
|
1603
|
+
- spec/projects/models/project_patch_spec.rb
|
|
1604
|
+
- spec/projects/models/currency_code_spec.rb
|
|
1605
|
+
- spec/projects/models/amount_spec.rb
|
|
1613
1606
|
- spec/projects/models/pagination_spec.rb
|
|
1607
|
+
- spec/projects/models/task_create_or_update_spec.rb
|
|
1608
|
+
- spec/projects/models/project_user_spec.rb
|
|
1609
|
+
- spec/projects/models/time_entry_spec.rb
|
|
1610
|
+
- spec/projects/models/task_spec.rb
|
|
1614
1611
|
- spec/projects/models/tasks_spec.rb
|
|
1612
|
+
- spec/projects/models/projects_spec.rb
|
|
1613
|
+
- spec/projects/models/error_spec.rb
|
|
1614
|
+
- spec/projects/api/project_api_spec.rb
|
|
1615
1615
|
- spec/spec_helper.rb
|
|
1616
1616
|
- spec/where_spec.rb
|