From 5422139cfaa3b524f3a6e0307ffa632c68af3eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20V=C3=A9zina?= Date: Wed, 6 Mar 2024 07:55:38 -0500 Subject: [PATCH] bemade_total_show_currency --- bemade_total_show_currency/__manifest__.py | 41 +++++++++++++++++++ .../views/total_template.xml | 14 +++++++ 2 files changed, 55 insertions(+) create mode 100644 bemade_total_show_currency/__manifest__.py create mode 100644 bemade_total_show_currency/views/total_template.xml diff --git a/bemade_total_show_currency/__manifest__.py b/bemade_total_show_currency/__manifest__.py new file mode 100644 index 0000000..e020b92 --- /dev/null +++ b/bemade_total_show_currency/__manifest__.py @@ -0,0 +1,41 @@ +# +# Bemade Inc. +# +# Copyright (C) June 2023 Bemade Inc. (). +# Author: mdurepos (Contact : it@bemade.org) +# +# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1) +# It is forbidden to publish, distribute, sublicense, or sell copies of the Software +# or modified copies of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# +{ + 'name': 'Show Currency in total', + 'version': '15.0.0.0.1', + 'summary': 'Show Currency in total', + 'description': """ + This module adds the ability to view currency in total in all pdf. + """, + 'category': 'Account', + 'author': 'Bemade Inc.', + 'website': 'https://www.bemade.org', + 'license': 'OPL-1', + 'depends': [ + 'sale', + 'purchase', + 'account' + ], + 'data': [ + 'views/total_template.xml' + ], + 'demo': [], + 'installable': True, + 'auto_install': False, +} diff --git a/bemade_total_show_currency/views/total_template.xml b/bemade_total_show_currency/views/total_template.xml new file mode 100644 index 0000000..77a2bf2 --- /dev/null +++ b/bemade_total_show_currency/views/total_template.xml @@ -0,0 +1,14 @@ + + + + + + + \ No newline at end of file