Skip to content

Commit d031d36

Browse files
committed
Support invoice time billing and misc type
1 parent c7408ae commit d031d36

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

lib/myob-api.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
require 'myob/api/models/invoice_item'
2323
require 'myob/api/models/invoice_service'
2424
require 'myob/api/models/invoice_professional'
25+
require 'myob/api/models/invoice_time_billing'
2526

2627
require 'myob/api/models/payroll_category'
2728
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/Miscellaneous'
7+
end
8+
end
9+
end
10+
end
11+
end
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/TimeBilling'
7+
end
8+
end
9+
end
10+
end
11+
end

0 commit comments

Comments
 (0)