Skip to content

Commit

Permalink
Merge pull request #6 from acsone/7.0-pep8
Browse files Browse the repository at this point in the history
[IMP] PEP8 fix
  • Loading branch information
pedrobaeza committed Aug 20, 2014
2 parents 13a707d + 6b4bd72 commit bad25d3
Show file tree
Hide file tree
Showing 69 changed files with 4,063 additions and 2,495 deletions.
5 changes: 3 additions & 2 deletions account_export_csv/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Author Joel Grand-Guillaume and Vincent Renaville Copyright 2013 Camptocamp SA
# Author Joel Grand-Guillaume and Vincent Renaville Copyright 2013
# Camptocamp SA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
Expand All @@ -18,4 +19,4 @@
#
##############################################################################

import wizard
from . import wizard
27 changes: 15 additions & 12 deletions account_export_csv/__openerp__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Author Joel Grand-Guillaume and Vincent Renaville Copyright 2013 Camptocamp SA
# Author Joel Grand-Guillaume and Vincent Renaville
# Copyright 2013 Camptocamp SA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
Expand All @@ -19,29 +20,31 @@
##############################################################################

{
'name' : 'Account Export CSV',
'version' : '1.1',
'depends' : [
'account',
],
'author' : 'Camptocamp',
'name': 'Account Export CSV',
'version': '1.1',
'depends': [
'account',
],
'author': 'Camptocamp',
'description': """
Add a wizard that allow you to export a csv file based on accounting journal entries
Add a wizard that allow you to export a csv file based on accounting
journal entries
- Trial Balance
- Analytic Balance (with accounts)
- Journal Entries
You can filter by period
TODO: rearange wizard view with only one button to generate file plus define a selection list to select report type
TODO: rearange wizard view with only one button to generate file plus
define a selection list to select report type
""",
'website': 'http://www.camptocamp.com',
'data': [
'wizard/account_export_csv_view.xml',
'menu.xml',
],
'wizard/account_export_csv_view.xml',
'menu.xml',
],
'installable': True,
'active': False,
}
5 changes: 3 additions & 2 deletions account_export_csv/wizard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Author Joel Grand-Guillaume and Vincent Renaville Copyright 2013 Camptocamp SA
# Author Joel Grand-Guillaume and Vincent Renaville Copyright 2013
# Camptocamp SA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
Expand All @@ -18,4 +19,4 @@
#
##############################################################################

import account_export_csv
from . import account_export_csv

0 comments on commit bad25d3

Please sign in to comment.