Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
4787 Zobrazení

i have create one module custom_module which is store record like firstname and lastname  of customer .now when i save the record it will also display in existing customer module,and i don't want any inherited field. for example:customer and suppliers.

Avatar
Zrušit
Nejlepší odpověď

Your module must have method which will update existing module res.partner or res.user ....

Working on similar project at this moment. My module require it as well. Must add if not exist a new customer/supplier and create a new order.

Will follow your subject :)

This is an example given me by Gerthard (new API)

<pre>

  self.env['sale.order'].create({

     'field': variable,

     'field2': variable2

     ...

})

</pre> 

another example: (of course you have to adapt it to your requirements)

vals = {

'name': self.name,

'date_order': self.appointment_date,

'partner_id': self.patient.partner_id.id,

'user_id': self.doctor.partner_id.user_id.id,

'order_line': [[0, 0, {

'name': self.consultations.name,

'price_unit': self.consultations.list_price,

'product_id': self.consultations.id,

}]],

}

if pricelist_id:

vals['pricelist_id'] = pricelist_id.id

vals['currency_id'] = pricelist_id.currency_id.id

self.sale_id = self.env['sale.order'].create(vals)

Avatar
Zrušit
Autor

u have any demo method so i can implement it.

Related Posts Odpovědi Zobrazení Aktivita
0
říj 24
939
3
úno 18
3847
2
pro 17
4691
1
dub 15
4191
0
bře 15
3319