Skip to content

Commit

Permalink
Merge pull request OCA#92 from gurneyalex/expensify
Browse files Browse the repository at this point in the history
Expensify
  • Loading branch information
gurneyalex committed Sep 15, 2017
2 parents 11cbc7c + e47d677 commit 4a29f3f
Show file tree
Hide file tree
Showing 14 changed files with 623 additions and 0 deletions.
8 changes: 8 additions & 0 deletions odoo/local-src/expensify/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Odoo feature

License BSO All rights reserved

Odoo plugin to import expenses from Expensify



1 change: 1 addition & 0 deletions odoo/local-src/expensify/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
17 changes: 17 additions & 0 deletions odoo/local-src/expensify/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
'name': 'Expensify',
'category': 'Expenses',
'description': """
Import expenses from Expensify
""",
'author': 'BSO',
'website': 'https://www.bsonetwork.com',
'depends': ['base', 'hr_expense'],
'data': [
'security/ir.model.access.csv',
'views/expensify.xml',
'views/expensify_wizard.xml'
],
'installable': True,
'auto_install': False,
}
5 changes: 5 additions & 0 deletions odoo/local-src/expensify/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from . import expensify
from . import expensify_expense
from . import expensify_wizard
from . import hr_employee
from . import hr_expense
Loading

0 comments on commit 4a29f3f

Please sign in to comment.