summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xindoteknik_custom/__manifest__.py1
-rw-r--r--indoteknik_custom/models/shipment_group.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/indoteknik_custom/__manifest__.py b/indoteknik_custom/__manifest__.py
index 66d59af2..262096e4 100755
--- a/indoteknik_custom/__manifest__.py
+++ b/indoteknik_custom/__manifest__.py
@@ -193,6 +193,7 @@
'views/close_tempo_mail_template.xml',
'views/domain_apo.xml',
'views/uom_uom.xml',
+ 'views/update_depreciation_move_wizard_view.xml',
'views/commission_internal.xml',
'views/update_depreciation_move_wizard_view.xml',
'views/keywords.xml'
diff --git a/indoteknik_custom/models/shipment_group.py b/indoteknik_custom/models/shipment_group.py
index ce4a9fdd..5f5f2d79 100644
--- a/indoteknik_custom/models/shipment_group.py
+++ b/indoteknik_custom/models/shipment_group.py
@@ -19,7 +19,7 @@ class ShipmentGroup(models.Model):
total_colly_line = fields.Float(string='Total Colly', compute='_compute_total_colly_line')
is_multi_partner = fields.Boolean(string='Is Multi Partner', compute='_compute_is_multi_partner')
partner_ids = fields.Many2many('res.partner', string='Customers', compute='_compute_partner_ids')
- driver = fields.Many2one('res.users', string='Driver')
+ driver = fields.Text(string='Driver')
@api.depends('shipment_line.partner_id')
def _compute_partner_ids(self):