forked from Mapan/odoo17e
11 lines
295 B
Python
11 lines
295 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class StockPicking(models.Model):
|
|
_inherit = 'stock.picking'
|
|
|
|
def _get_whatsapp_safe_fields(self):
|
|
return {'partner_id.name', 'name', 'company_id.name', 'carrier_tracking_url'}
|