|
@ -176,6 +176,7 @@ class operation_request(models.Model): |
|
|
if self.subscription_amount != self.partner_id.total_value: |
|
|
if self.subscription_amount != self.partner_id.total_value: |
|
|
raise ValidationError(_("You must convert all the shares" |
|
|
raise ValidationError(_("You must convert all the shares" |
|
|
" to the selected type.")) |
|
|
" to the selected type.")) |
|
|
|
|
|
|
|
|
elif self.operation_type == 'transfer': |
|
|
elif self.operation_type == 'transfer': |
|
|
if not self.receiver_not_member and self.company_id.unmix_share_type \ |
|
|
if not self.receiver_not_member and self.company_id.unmix_share_type \ |
|
|
and (self.partner_id_to.cooperator_type |
|
|
and (self.partner_id_to.cooperator_type |
|
@ -183,6 +184,12 @@ class operation_request(models.Model): |
|
|
raise ValidationError(_("This share type could not be" |
|
|
raise ValidationError(_("This share type could not be" |
|
|
" transfered to " + |
|
|
" transfered to " + |
|
|
self.partner_id_to.name)) |
|
|
self.partner_id_to.name)) |
|
|
|
|
|
if self.receiver_not_member and self.subscription_request \ |
|
|
|
|
|
and not self.subscription_request.validated: |
|
|
|
|
|
raise ValidationError(_("The information of the receiver" |
|
|
|
|
|
" are not correct. Please correct" |
|
|
|
|
|
" the information before" |
|
|
|
|
|
" submitting")) |
|
|
|
|
|
|
|
|
@api.multi |
|
|
@api.multi |
|
|
def execute_operation(self): |
|
|
def execute_operation(self): |
|
|