Skip to content

Commit 65f44fd

Browse files
committed
base_wamas_ubl: code beautification
Simplify code, fix CLI, fix encodings, make package & fix imports Rebuild samples results
1 parent 3a8c828 commit 65f44fd

File tree

76 files changed

+1222
-1794
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+1222
-1794
lines changed

base_wamas_ubl/README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Authors
5757
~~~~~~~
5858

5959
* Camptocamp
60+
* BCIM
6061

6162
Contributors
6263
~~~~~~~~~~~~

base_wamas_ubl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
from . import models
2-
from . import wizard
2+
from . import wizards

base_wamas_ubl/__manifest__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
},
1818
"data": [
1919
"security/ir.model.access.csv",
20-
"wizard/wamas_ubl_wiz_check.xml",
21-
"wizard/wamas_ubl_wiz_simulate.xml",
20+
"wizards/wamas_ubl_wiz_check.xml",
21+
"wizards/wamas_ubl_wiz_simulate.xml",
2222
"views/wamas_menu.xml",
2323
],
2424
}

base_wamas_ubl/lib/dict2wamas

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/sh
2+
/usr/bin/env python3 -m wamas.dict2wamas $*

base_wamas_ubl/lib/test_dict2wamas

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/sh
2+
/usr/bin/env python3 -m wamas.tests.test_dict2wamas

base_wamas_ubl/lib/test_ubl2wamas

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/sh
2+
/usr/bin/env python3 -m wamas.tests.test_ubl2wamas

base_wamas_ubl/lib/test_utils

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/sh
2+
/usr/bin/env python3 -m wamas.tests.test_utils

base_wamas_ubl/lib/test_wamas2ubl

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/sh
2+
/usr/bin/env python3 -m wamas.tests.test_wamas2ubl

base_wamas_ubl/lib/test_wamas2wamas

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/sh
2+
/usr/bin/env python3 -m wamas.tests.test_wamas2wamas

base_wamas_ubl/lib/ubl2wamas

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/sh
2+
/usr/bin/env python3 -m wamas.ubl2wamas $*

base_wamas_ubl/lib/wamas/__init__.py

Whitespace-only changes.

base_wamas_ubl/lib/wamas/check_wamas.py

-50
This file was deleted.

0 commit comments

Comments
 (0)