Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
3723 Visualizzazioni

I am trying to create a payment method where no payment is required. Customer will pay on delivery. So, I need to confirm sales when pay now is created. I have written following codes -


class payment_acquirer_extend(osv.Model):
    _inherit = 'payment.acquirer'
    def _get_providers(self, cr, uid, context=None):
        providers = super(payment_acquirer_extend, self)._get_providers(cr, uid, context=context)
providers.append(['cash', _('Cash on Delivery')])
 return providers
    def transfer_get_form_action_url(self, cr, uid, id, context=None):
        return '/payment/transfer/feedback'
    def create(self, cr, uid, values, context=None):
        if values.get('provider') == 'cash' and not values.get('post_msg'):
            values['post_msg'] = 'CASH DELIVERY'
return super(payment_acquirer_extend, self).create(cr, uid, values, context=context)


Now I understand I have to write following function:

cash_form_generate_values

How to do that and if I click on pay now button it doesn't work?


Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
2
ott 23
2352
0
feb 22
2351
1
feb 22
2419
0
lug 21
2507
0
giu 21
2234