Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
6 Risposte
10161 Visualizzazioni
I have searched that there is "action_invoice_create" method to create invoice from SO in OLD version odoo. 
Can I do it in odoo13?
The old style code like that
o_so_id = 3   #sale order id
o_invoice = models.execute_kw(odoo_config['db'],
odoo_config['uid'],
odoo_config['password'],
'sale.order',
'action_invoice_create',
[[3]], {'context': {'active_ids': 3}})

But it generate error in odoo 13
​xmlrpc.client.Fault: <Fault 1: 'Traceback (most recent call last):\n File "/opt/odoo13/odoo/odoo/addons/base/controllers/rpc.py", line 63, in xmlrpc_2\n response = self._xmlrpc(service)\n File "/opt/odoo13/odoo/odoo/addons/base/controllers/rpc.py", line 43, in _xmlrpc\n result = dispatch_rpc(service, method, params)\n File "/opt/odoo13/odoo/odoo/http.py", line 138, in dispatch_rpc\n result = dispatch(method, params)\n File "/opt/odoo13/odoo/odoo/service/model.py", line 40, in dispatch\n res = fn(db, uid, *params)\n File "/opt/odoo13/odoo/odoo/service/model.py", line 168, in execute_kw\n return execute(db, uid, obj, method, *args, **kw or {})\n File "/opt/odoo13/odoo/odoo/service/model.py", line 93, in wrapper\n return f(dbname, *args, **kwargs)\n File "/opt/odoo13/odoo/odoo/service/model.py", line 175, in execute\n res = execute_cr(cr, uid, obj, method, *args, **kw)\n File "/opt/odoo13/odoo/odoo/service/model.py", line 164, in execute_cr\n return odoo.api.call_kw(recs, method, args, kw)\n File "/opt/odoo13/odoo/odoo/api.py", line 388, in call_kw\n method = getattr(type(model), name)\nAttributeError: type object \'sale.order\' has no attribute \'action_invoice_create\'\n'>

Avatar
Abbandona
Risposta migliore

You could create a method which will have the sale_id as parameter

def create_invoice(self, sale_id):
    payment = self.env ["sale.advance.payment.inv"].
create ({})
    payment.with_context (active_ids = sale_id) .create_invoices ()

Similiar functionality is used in OCA's Sales automatic workflow
https://github.com/OCA/sale-workflow/blob/13.0/sale_automatic_workflow/models/automatic_workflow_job.py#L63-L65

Avatar
Abbandona
Risposta migliore

HI, Somebody, same issue here, did you find a workaround????

Avatar
Abbandona
Risposta migliore

Hi there,

Did you ever get an answer for this? We are struggling with the same thing?

Regards,
Rayno

Avatar
Abbandona
Autore

No solution from my side. I just created invoice from each Sale Order manually.

Risposta migliore

In V13 API has been changed. Now there is no method action_invoice_create on sale.order.
it has been converted to private method https://github.com/odoo/odoo/blob/13.0/addons/sale/models/sale.py#L552
so create a public hook method and call it.

Avatar
Abbandona
Autore

Hi Ravi,

I am newbie for odoo. Can you give me a simple code sample for reference? Thank you!

Or alternatively call the sale.advance.payment.inv wizard & trigger the function "create_invoices" from there by setting the order(s) in the context.

Post correlati Risposte Visualizzazioni Attività
4
mag 24
12770
1
apr 24
3387
0
nov 23
2068
1
set 23
2191
2
ago 23
4619