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

when a sales.order is confirmed (state = 'sale'), each sale.order.line, on that sale.order, creates a hr.job

I have an automatic action that executes python code when updating sale.order.

but im not sure how can i do it

Awatar
Odrzuć
Autor

Im trying this

def function(self):
sales_line_obj = self.pool.get('sales.order.line')

for sale_line_id in record.sale_order_line_ids:
line = sales_line_obj.browse(cr, uid,order_id ,context=context)
#print line.name
job = client.model('hr.job').create({'name': name,
'x_campaign_id': x_campaign_id,
'x_product_id': x_product_id,
'x_product_qty': x_product_qty,
'department_id': department_id,
'address_id': address_id,
'no_of_recruitment': no_of_recruitment,
'survey_id': survey_id,
'user_id': user_id})

But it doesnt work, any help?

Powiązane posty Odpowiedzi Widoki Czynność
2
sty 24
5555
0
cze 23
2115
1
gru 22
3480
0
kwi 22
2657
2
sie 20
2987