Skip to content

Commit

Permalink
[FIX] Fix Repair Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
osi-scampbell authored and aaladro-kernet committed Dec 11, 2024
1 parent af00f11 commit 86b5ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fieldservice_repair/models/fsm_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def create(self, vals):
'product_qty': 1,
'invoice_method': 'none',
'internal_notes': order.description,
'partner_id': order.partner_id and order.partner_id.id or
'partner_id': order.customer_id and order.customer_id.id or
False,
})
order.repair_id = repair_id
Expand Down

0 comments on commit 86b5ca0

Please sign in to comment.