Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
10932 Vizualizări

When I refund from an invoice there is no origin reference given. How do I link them? Couldn't find reason in Source, any help is kindly welcome.

Andreas

Imagine profil
Abandonează

I've been tinkering with OpenERP since V5. Returns & refunds have been the weakest part of the whole system for me. No visual indicator on an invoice that it has been returned always leads to problems.

Autor

I made an addon for that issue, adding invoice.internal_number to origin in refund invoice. That works so far and at least lets have a linking. I wonder, why this is not done in public account addon.

Hello! I've the same problem, no trackback from refund to original invoice. Can you give me some indications on how to implement this in my installation or where I can download the addon? Thanks.

http://v6apps.openerp.com/addon/6767 - this works well in version 7.0 but I changed the name of the tab to 'Refunded From'.

Autor Cel mai bun răspuns

According to Andrea Trincia asked me to show her how to add invoice id to refund I will show my solution here that of course could have been done better. This just solved my issue I got on that point.

I made an addon with that account_invoice.py file:

# -*- coding: utf-8 -*-
from openerp.osv import fields, osv

class account_invoice(osv.osv):
    _name= 'account.invoice'
    _inherit= 'account.invoice'

    def refund(self, cr, uid, ids, date=None, period_id=None, description=None, journal_id=None, context=None):
        invoice_obj = self.pool.get('account.invoice')

        new_ids = super(account_invoice, self).refund(cr, uid, ids, date, period_id, description, journal_id, context)

        for refund_id ,invoice in zip(new_ids, self.browse(cr, uid, ids)):
            self.write(cr, uid, refund_id, {'origin': invoice.internal_number})

        return new_ids

account_invoice()

This just adds the id of invoice to origin field. There might have been a one2one connection between but that has not been necessary for my issue.

Imagine profil
Abandonează
Autor

Comment from the Question:

http://v6apps.openerp.com/addon/6767 - this works well in version 7.0 but I changed the name of the tab to 'Refunded From'. Ray Carnes (May 8 '13)

Related Posts Răspunsuri Vizualizări Activitate
2
iul. 18
3140
8
mar. 19
5315
2
sept. 17
5823
1
iun. 16
4312
8
aug. 15
9246