Skip to content

Commit

Permalink
https://trello.com/c/CKOQkRgT/209
Browse files Browse the repository at this point in the history
fixed: Company Name cannot be changed in the original field.
  • Loading branch information
dkrimmer84 committed Jun 21, 2016
1 parent 815a276 commit c2a0d1a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions models/l10n_co_res_partner.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,9 @@ def onChangeName(self):
if self.x_name1 is not False:
if len(self.x_name1) > 0:
self._concat_name()
if self.companyName is not False:
if len(self.companyName) > 0:
self._concat_name()

@api.onchange('personType')
def onChangePersonType(self):
Expand Down

0 comments on commit c2a0d1a

Please sign in to comment.