Skip to content

Commit 2c01bc6

Browse files
committed
Support invoice service type
1 parent ba12b17 commit 2c01bc6

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

lib/myob-api.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
require 'myob/api/models/customer_payment'
2121
require 'myob/api/models/invoice'
2222
require 'myob/api/models/invoice_item'
23+
require 'myob/api/models/invoice_service'
2324

2425
require 'myob/api/models/payroll_category'
2526
require 'myob/api/models/wage'
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module Myob
2+
module Api
3+
module Model
4+
class InvoiceService < Base
5+
def model_route
6+
'Sale/Invoice/Service'
7+
end
8+
end
9+
end
10+
end
11+
end

0 commit comments

Comments
 (0)