Add module stock_invoice_try_again
This commit is contained in:
23
stock_invoice_try_again/__init__.py
Normal file
23
stock_invoice_try_again/__init__.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Stock Invoice Try Again module for OpenERP
|
||||
# Copyright (C) 2013 Akretion (http://www.akretion.com)
|
||||
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
#
|
||||
# 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/>.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
from . import stock
|
||||
45
stock_invoice_try_again/__openerp__.py
Normal file
45
stock_invoice_try_again/__openerp__.py
Normal file
@@ -0,0 +1,45 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Stock Invoice Try Again module for OpenERP
|
||||
# Copyright (C) 2013 Akretion (http://www.akretion.com)
|
||||
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
#
|
||||
# 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': 'Stock Invoice Try Again',
|
||||
'version': '0.1',
|
||||
'category': 'Accounting & Finance',
|
||||
'license': 'AGPL-3',
|
||||
'summary': 'Add a button to set a picking back to "To Be Invoiced"',
|
||||
'description': """
|
||||
Stock Invoice Try Again
|
||||
=======================
|
||||
|
||||
When the sale order has 'Create Invoice' set to 'On Delivery Order', there is a button 'Create Invoice' on the Delivery Order once the goods are shipped. When the user clicks on this button, OpenERP creates a draft invoice. If the user deletes this draft invoice by mistake, he cannot re-create the invoice. This module is the solution : if the invoice has been deleted, the user can set the picking back to 'To Be Invoiced' and create the invoice again.
|
||||
|
||||
Please contact Alexis de Lattre from Akretion <alexis.delattre@akretion.com> for any help or question about this module.
|
||||
""",
|
||||
'author': 'Akretion',
|
||||
'website': 'http://www.akretion.com',
|
||||
'depends': ['stock_picking_invoice_link'],
|
||||
'data': ['stock_view.xml'],
|
||||
'images': [],
|
||||
'installable': True,
|
||||
'active': False,
|
||||
}
|
||||
62
stock_invoice_try_again/stock.py
Normal file
62
stock_invoice_try_again/stock.py
Normal file
@@ -0,0 +1,62 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Stock Invoice Try Again module for OpenERP
|
||||
# Copyright (C) 2013 Akretion (http://www.akretion.com)
|
||||
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
#
|
||||
# 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/>.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
from openerp.osv import orm
|
||||
from openerp.tools.translate import _
|
||||
|
||||
|
||||
class stock_picking(orm.Model):
|
||||
_inherit = 'stock.picking'
|
||||
|
||||
def revert_to_tobeinvoiced(self, cr, uid, ids, context=None):
|
||||
assert len(ids) == 1, "Only one picking"
|
||||
picking = self.browse(cr, uid, ids[0], context=context)
|
||||
if picking.invoice_state == 'invoiced':
|
||||
if picking.invoice_id:
|
||||
raise orm.except_orm(
|
||||
_('Error:'),
|
||||
_("This picking is linked to the invoice with description '%s'. You should first delete this invoice and try again.")
|
||||
% picking.invoice_id.name)
|
||||
self.write(cr, uid, ids[0], {
|
||||
'invoice_state': '2binvoiced',
|
||||
}, context=context)
|
||||
else:
|
||||
raise orm.except_orm(
|
||||
_('Error:'),
|
||||
_("You can only do this when the Delivery Order has 'Invoice State' = 'Invoiced'."))
|
||||
return True
|
||||
|
||||
|
||||
class stock_picking_out(orm.Model):
|
||||
_inherit = 'stock.picking.out'
|
||||
|
||||
def revert_to_tobeinvoiced(self, cr, uid, ids, context=None):
|
||||
return self.pool['stock.picking'].revert_to_tobeinvoiced(
|
||||
cr, uid, ids, context=context)
|
||||
|
||||
|
||||
class stock_picking_in(orm.Model):
|
||||
_inherit = 'stock.picking.in'
|
||||
|
||||
def revert_to_tobeinvoiced(self, cr, uid, ids, context=None):
|
||||
return self.pool['stock.picking'].revert_to_tobeinvoiced(
|
||||
cr, uid, ids, context=context)
|
||||
71
stock_invoice_try_again/stock_view.xml
Normal file
71
stock_invoice_try_again/stock_view.xml
Normal file
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2013 Akretion (http://www.akretion.com/)
|
||||
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
The licence is in the file __openerp__.py
|
||||
-->
|
||||
|
||||
<openerp>
|
||||
<data>
|
||||
|
||||
|
||||
<record id="view_picking_form" model="ir.ui.view">
|
||||
<field name="name">stock_invoice_try_again.view_picking_form</field>
|
||||
<field name="model">stock.picking</field>
|
||||
<field name="inherit_id" ref="stock.view_picking_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="invoice_state" position="attributes">
|
||||
<attribute name="attrs"></attribute>
|
||||
</field>
|
||||
<button string="Create Invoice/Refund" position="after">
|
||||
<button name="revert_to_tobeinvoiced"
|
||||
string="Revert to To be Invoiced"
|
||||
type="object"
|
||||
confirm="Are you sure you want to revert the 'Invoice Control' to 'To be Invoiced' ?"
|
||||
attrs="{'invisible': [('invoice_state', '!=', 'invoiced')]}"
|
||||
groups="account.group_account_invoice" />
|
||||
</button>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_picking_out_form" model="ir.ui.view">
|
||||
<field name="name">stock_invoice_try_again.view_picking_out_form</field>
|
||||
<field name="model">stock.picking.out</field>
|
||||
<field name="inherit_id" ref="stock.view_picking_out_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="invoice_state" position="attributes">
|
||||
<attribute name="attrs"></attribute>
|
||||
</field>
|
||||
<button string="Create Invoice/Refund" position="after">
|
||||
<button name="revert_to_tobeinvoiced"
|
||||
string="Revert to To be Invoiced"
|
||||
type="object"
|
||||
confirm="Are you sure you want to revert the 'Invoice Control' to 'To be Invoiced' ?"
|
||||
attrs="{'invisible': [('invoice_state', '!=', 'invoiced')]}"
|
||||
groups="account.group_account_invoice" />
|
||||
</button>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_picking_in_form" model="ir.ui.view">
|
||||
<field name="name">stock_invoice_try_again.view_picking_in_form</field>
|
||||
<field name="model">stock.picking.in</field>
|
||||
<field name="inherit_id" ref="stock.view_picking_in_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="invoice_state" position="attributes">
|
||||
<attribute name="attrs"></attribute>
|
||||
</field>
|
||||
<button string="Create Invoice/Refund" position="after">
|
||||
<button name="revert_to_tobeinvoiced"
|
||||
string="Revert to To be Invoiced"
|
||||
type="object"
|
||||
confirm="Are you sure you want to revert the 'Invoice Control' to 'To be Invoiced' ?"
|
||||
attrs="{'invisible': [('invoice_state', '!=', 'invoiced')]}"
|
||||
groups="account.group_account_invoice" />
|
||||
</button>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</data>
|
||||
</openerp>
|
||||
Reference in New Issue
Block a user