Merge pull request #68 from acsone/8.0-invoicing_voucher_killer-sbi

[8.0] account_voucher_killer
This commit is contained in:
Pedro M. Baeza
2014-12-09 00:51:12 +01:00
7 changed files with 199 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
Prevent the usage of voucher from invoices
==========================================
This add-on disables the "Register Payment" button on
customer invoices and the "Pay" button on supplier invoices.
It also disables the voucher-related menus entries such as
"Sales Receipts", "Customer Payments", "Purchase Receipts",
"Supplier Payments" and "Journal Vouchers", "Sales Receipts Analysis".
More precisely, this module adds a group "Use voucher in Invoices"
and only users in that group see these buttons and menus.
Contributors
------------
* Nicolas Bessi (camptocamp)
* Stéphane Bidoul (ACSONE SA/NV)
* Anthony Muschang (ACSONE SA/NV)

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2013 Camptocamp SA (http://www.camptocamp.com)
# @author Nicolas Bessi
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

View File

@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2013 Camptocamp SA (http://www.camptocamp.com)
# @author Nicolas Bessi
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{'name': 'Accounting voucher killer',
'version': '1.0.0',
'category': 'other',
'author': 'Camptocamp',
'website': 'http://www.camptocamp.com',
'depends': ['account_voucher'],
'data': ['invoice_data.xml',
'invoice_view.xml'],
'test': [],
'installable': True,
'active': False,
}

View File

@@ -0,0 +1,33 @@
# Spanish translation for banking-addons
# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
# This file is distributed under the same license as the banking-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: banking-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2014-01-21 12:00+0000\n"
"PO-Revision-Date: 2014-06-05 22:47+0000\n"
"Last-Translator: Pedro Manuel Baeza <pedro.baeza@gmail.com>\n"
"Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-06-06 06:36+0000\n"
"X-Generator: Launchpad (build 17031)\n"
#. module: invoicing_voucher_killer
#: view:account.invoice:0
msgid "Pay"
msgstr "Pagar"
#. module: invoicing_voucher_killer
#: model:res.groups,name:invoicing_voucher_killer.invoice_voucher_user
msgid "Use voucher in Invoices"
msgstr "Usar resguardos en facturas"
#. module: invoicing_voucher_killer
#: view:account.invoice:0
msgid "Register Payment"
msgstr "Registrar pago"

View File

@@ -0,0 +1,32 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * invoicing_voucher_killer
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-01-21 12:00+0000\n"
"PO-Revision-Date: 2014-01-21 12:00+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: invoicing_voucher_killer
#: view:account.invoice:0
msgid "Pay"
msgstr ""
#. module: invoicing_voucher_killer
#: model:res.groups,name:invoicing_voucher_killer.invoice_voucher_user
msgid "Use voucher in Invoices"
msgstr ""
#. module: invoicing_voucher_killer
#: view:account.invoice:0
msgid "Register Payment"
msgstr ""

View File

@@ -0,0 +1,7 @@
<openerp>
<data>
<record id="invoice_voucher_user" model="res.groups">
<field name="name">Use voucher in Invoices</field>
</record>
</data>
</openerp>

View File

@@ -0,0 +1,55 @@
<openerp>
<data>
<record id="invoice_voucher_group" model="ir.ui.view">
<field name="name">Hide voucher in invoice</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account_voucher.view_invoice_customer" />
<field name="arch" type="xml">
<xpath expr="//button[@name='invoice_pay_customer'][last()]"
position="attributes">
<attribute name="groups">account_voucher_killer.invoice_voucher_user</attribute>
</xpath>
<xpath expr="//button[@name='invoice_pay_customer'][1]"
position="attributes">
<attribute name="groups">account_voucher_killer.invoice_voucher_user</attribute>
</xpath>
</field>
</record>
<record id="invoice_voucher_group_supp_inv" model="ir.ui.view">
<field name="name">Hide voucher in supplier invoice</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account_voucher.view_invoice_supplier" />
<field name="arch" type="xml">
<xpath expr="//button[@name='invoice_pay_customer'][last()]"
position="attributes">
<attribute name="groups">account_voucher_killer.invoice_voucher_user</attribute>
</xpath>
</field>
</record>
<record id="account_voucher.menu_action_sale_receipt" model="ir.ui.menu">
<field name="groups_id" eval="[(6,0,[ref('account_voucher_killer.invoice_voucher_user')])]"/>
</record>
<record id="account_voucher.menu_action_vendor_receipt" model="ir.ui.menu">
<field name="groups_id" eval="[(6,0,[ref('account_voucher_killer.invoice_voucher_user')])]"/>
</record>
<record id="account_voucher.menu_action_purchase_receipt" model="ir.ui.menu">
<field name="groups_id" eval="[(6,0,[ref('account_voucher_killer.invoice_voucher_user')])]"/>
</record>
<record id="account_voucher.menu_action_vendor_payment" model="ir.ui.menu">
<field name="groups_id" eval="[(6,0,[ref('account_voucher_killer.invoice_voucher_user')])]"/>
</record>
<record id="account_voucher.menu_encode_entries_by_voucher" model="ir.ui.menu">
<field name="groups_id" eval="[(6,0,[ref('account_voucher_killer.invoice_voucher_user')])]"/>
</record>
<record id="account_voucher.menu_action_sale_receipt_report_all" model="ir.ui.menu">
<field name="groups_id" eval="[(6,0,[ref('account_voucher_killer.invoice_voucher_user')])]"/>
</record>
</data>
</openerp>