Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie

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?


Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
2
paź 23
2165
0
lut 22
2212
1
lut 22
2274
0
lip 21
2405
0
cze 21
2158