diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0764234 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class + +# OS +.DS_Store +Thumbs.db + +# Editor +.vscode/ +.idea/ + +# Odoo +*.pot diff --git a/__manifest__.py b/__manifest__.py index d37d557..96e019f 100644 --- a/__manifest__.py +++ b/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Sale Order Tracking', - 'version': '18.0.1.0.0', + 'version': '19.0.1.0.0', 'category': 'Sales', 'summary': 'Track changes in Sale Orders and Lines', 'description': """ diff --git a/__pycache__/__init__.cpython-312.pyc b/__pycache__/__init__.cpython-312.pyc index a295ffa..d2b5fb8 100644 Binary files a/__pycache__/__init__.cpython-312.pyc and b/__pycache__/__init__.cpython-312.pyc differ diff --git a/models/__pycache__/__init__.cpython-312.pyc b/models/__pycache__/__init__.cpython-312.pyc index b51a986..2145533 100644 Binary files a/models/__pycache__/__init__.cpython-312.pyc and b/models/__pycache__/__init__.cpython-312.pyc differ diff --git a/models/__pycache__/sale_order.cpython-312.pyc b/models/__pycache__/sale_order.cpython-312.pyc index 5deb88f..2ad4d39 100644 Binary files a/models/__pycache__/sale_order.cpython-312.pyc and b/models/__pycache__/sale_order.cpython-312.pyc differ diff --git a/models/__pycache__/sale_order_line.cpython-312.pyc b/models/__pycache__/sale_order_line.cpython-312.pyc index 9a4992b..f452138 100644 Binary files a/models/__pycache__/sale_order_line.cpython-312.pyc and b/models/__pycache__/sale_order_line.cpython-312.pyc differ