Skip to content
Extraits de code Groupes Projets
Valider 888e8437 rédigé par Benjamin's avatar Benjamin
Parcourir les fichiers

initialisation

parent
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
.*
*.pyc
!.gitignore
Ce diff est replié.
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl
:alt: License: AGPL-3
===================
Le Filament - Account
===================
This module depends upon *account* module.
This module provides:
* Updated account invoice form view to add a confirmation popup befor validation
* Updated account invoice tree view to display untaxed amount
Credits
=======
Contributors
------------
* Benjamin Rivier <benjamin@le-filament.com>
* Remi Cazenave <remi@le-filament.com>
* Juliana Poudou <juliana@le-filament.com>
Maintainer
----------
.. image:: https://le-filament.com/img/logo-lefilament.png
:alt: Le Filament
:target: https://le-filament.com
This module is maintained by Le Filament
# -*- coding: utf-8 -*-
{
'name': 'Le Filament - Account',
'summary': "Generic Account Invoice views update by Le Filament",
'version': '10.0.1.0',
'license': 'AGPL-3',
'author': 'LE FILAMENT',
'category': 'Account',
'depends': ['account'],
'contributors': [
'Benjamin Rivier <benjamin@le-filament.com>',
'Rémi Cazenave <remi@le-filament.com>',
'Juliana Poudou <juliana@le-filament.com>',
],
'website': 'https://le-filament.com',
'data': [
'views/lefilament_account_view.xml',
],
'qweb': [
],
}
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * lefilament_account
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-11-20 10:51+0000\n"
"PO-Revision-Date: 2018-11-20 10:51+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: lefilament_account
#: model:ir.ui.view,arch_db:lefilament_account.lf_invoice_form
msgid "Do you want to confirm this invoice ?"
msgstr "Souhaitez-vous confirmer cette facture ?"
#. module: lefilament_account
#: model:ir.ui.view,arch_db:lefilament_account.lf_view_invoice_tree
msgid "Total Untaxed"
msgstr "Total HT"
#. module: account
#: model:ir.model,name:account.model_account_invoice
msgid "Untaxed Amount in Company Currency"
msgstr "Montant HT (signé)"
\ No newline at end of file
static/description/icon.png

8,95 ko

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Account Invoice Form - Trigger validation -->
<record model="ir.ui.view" id="lf_invoice_form">
<field name="inherit_id" ref="account.invoice_form"/>
<field name="name">account.invoice.form</field>
<field name="model">account.invoice</field>
<field name="arch" type="xml">
<xpath expr="//button[@name='action_invoice_open']" position="attributes">
<attribute name="confirm">Do you want to confirm this invoice ?</attribute>
</xpath>
</field>
</record>
<!-- Customer Account Invoice Tree -->
<record id="lf_view_invoice_tree" model="ir.ui.view">
<field name="inherit_id" ref="account.invoice_tree"/>
<field name="name">account.invoice.tree</field>
<field name="model">account.invoice</field>
<field name="arch" type="xml">
<xpath expr="//field[@name='amount_total_signed']" position="after">
<field name="amount_untaxed_signed" widget="monetary" sum="Total Untaxed" />
</xpath>
</field>
</record>
</odoo>
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter