~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to account_move_validate_multi_wizard/__openerp__.py

  • Committer: Moises Lopez
  • Date: 2014-10-09 21:30:17 UTC
  • mfrom: (879.1.7 trunk-addons-vauxoo)
  • Revision ID: moylop260@vauxoo.com-20141009213017-u3jicyg8xery3r8c
[MERGE] upforward 7.0
-Fix unused import
-Fix relative import
-Fix full path import
-Fix trailing whitespace pylint error C0303
-Fix autopep8 ignoring E501 & E128
-Fix reimported
-Fix __openerp__.py files
-Translate update

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#    You should have received a copy of the GNU Affero General Public License
21
21
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
#
23
 
 
24
23
{
25
 
    "name": "Account Move Validate Wizard",
26
 
    "version": "0.1",
27
 
    "author": "Vauxoo",
28
 
    "category": "Generic Modules",
29
 
    "website": "http://www.vauxoo.com",
30
 
    "description": 
31
 
'''This module adds a wizard in the model journal entries,
 
24
    "name": "Account Move Validate Wizard", 
 
25
    "version": "0.1", 
 
26
    "author": "Vauxoo", 
 
27
    "category": "Generic Modules", 
 
28
    "description": """This module adds a wizard in the model journal entries,
32
29
which validates several policies selected in the tree view.
33
30
In the case that one of several selected journal entries to validate,
34
31
are unbalanced, the validation process will fail.
35
 
''',
 
32
""", 
 
33
    "website": "http://www.vauxoo.com", 
 
34
    "license": "", 
36
35
    "depends": [
37
 
                "account",
38
 
    ],
39
 
    "demo_xml": [],
40
 
    "update_xml": [
41
 
        'view/wizard.xml',
42
 
    ],
43
 
    "active": False,
44
 
    "installable": True
45
 
}
 
36
        "account"
 
37
    ], 
 
38
    "demo": [], 
 
39
    "data": [
 
40
        "view/wizard.xml"
 
41
    ], 
 
42
    "test": [], 
 
43
    "js": [], 
 
44
    "css": [], 
 
45
    "qweb": [], 
 
46
    "installable": True, 
 
47
    "auto_install": False, 
 
48
    "active": False
 
49
}
 
 
b'\\ No newline at end of file'