@ -5,13 +5,26 @@ from openerp import api, fields, models, _
from openerp.addons.base_iban import base_iban
from openerp.exceptions import UserError , ValidationError
_REQUIRED = [ ' email ' , ' firstname ' , ' lastname ' , ' birthdate ' , ' address ' , ' share_product_id ' , ' ordered_parts ' , ' zip_code ' , ' city ' , ' iban ' , ' no_registre ' , ' gender ' ] # Could be improved including required from model
_REQUIRED = [ ' email ' ,
' firstname ' ,
' lastname ' ,
' birthdate ' ,
' address ' ,
' share_product_id ' ,
' ordered_parts ' ,
' zip_code ' ,
' city ' ,
' iban ' ,
' no_registre ' ,
' gender ' ] # Could be improved including required from model
@api.model
def _lang_get ( self ) :
languages = self . env [ ' res.lang ' ] . search ( [ ] )
return [ ( language . code , language . name ) for language in languages ]
class subscription_request ( models . Model ) :
_name = ' subscription.request '
_description = ' Subscription Request '
@ -21,10 +34,12 @@ class subscription_request(models.Model):
@api.model
def create ( self , vals ) :
partner_obj = self . env [ ' res.partner ' ]
if not vals . get ( ' partner_id ' ) :
cooperator = False
if vals . get ( ' no_registre ' ) :
cooperator = self . env [ ' res.partner ' ] . get_cooperator_from_nin ( vals . get ( ' no_registre ' ) )
cooperator = partner_obj . get_cooperator_from_nin (
vals . get ( ' no_registre ' ) )
if cooperator :
# TODO remove the following line of code once it has
# been founded a way to avoid dubble entry
@ -40,7 +55,7 @@ class subscription_request(models.Model):
cooperator . write ( { ' cooperator ' : True } )
else :
cooperator_id = vals . get ( ' partner_id ' )
cooperator = self . env [ ' res.partner ' ] . browse ( cooperator_id )
cooperator = partner_obj . browse ( cooperator_id )
if cooperator . member :
vals [ ' type ' ] = ' increase '
vals [ ' already_cooperator ' ] = True
@ -84,12 +99,12 @@ class subscription_request(models.Model):
return True
def check_empty_string ( self , value ) :
if value == None or value == False or value == ' ' :
if value is None or value is False or value == ' ' :
return False
return True
@api.multi
@api.depends ( ' iban ' , ' no_registre ' , ' skip_control_ng ' , ' is_company ' , )
@api.depends ( ' iban ' , ' no_registre ' , ' skip_control_ng ' , ' is_company ' )
def _validated_lines ( self ) :
for sub_request in self :
validated = False
@ -100,19 +115,25 @@ class subscription_request(models.Model):
validated = False
# if not sub_request.is_company:
if sub_request . skip_control_ng or self . check_belgian_identification_id ( sub_request . no_registre ) :
if sub_request . skip_control_ng \
or self . check_belgian_identification_id (
sub_request . no_registre ) :
validated = True
else :
validated = False
sub_request . validated = validated
@api.multi
@api.depends ( ' share_product_id ' , ' share_product_id.list_price ' , ' ordered_parts ' )
@api.depends ( ' share_product_id ' ,
' share_product_id.list_price ' ,
' ordered_parts ' )
def _compute_subscription_amount ( self ) :
for sub_request in self :
sub_request . subscription_amount = sub_request . share_product_id . list_price * sub_request . ordered_parts
already_cooperator = fields . Boolean ( string = " I ' m already cooperator " )
name = fields . Char ( string = ' Name ' , required = True )
name = fields . Char ( string = ' Name ' ,
required = True )
firstname = fields . Char ( string = ' Firstname ' )
lastname = fields . Char ( string = ' Lastname ' )
birthdate = fields . Date ( string = " Birthdate " )
@ -133,27 +154,47 @@ class subscription_request(models.Model):
string = ' State ' , required = True , default = " draft " )
email = fields . Char ( string = ' Email ' )
iban = fields . Char ( string = ' Account Number ' )
partner_id = fields . Many2one ( ' res.partner ' , string = ' Cooperator ' )
share_product_id = fields . Many2one ( ' product.product ' , string = ' Share type ' , domain = [ ( ' is_share ' , ' = ' , True ) ] )
share_short_name = fields . Char ( related = ' share_product_id.short_name ' , string = ' Share type name ' )
share_unit_price = fields . Float ( related = ' share_product_id.list_price ' , string = ' Share price ' )
subscription_amount = fields . Float ( compute = ' _compute_subscription_amount ' , string = ' Subscription amount ' )
partner_id = fields . Many2one ( ' res.partner ' ,
string = ' Cooperator ' )
share_product_id = fields . Many2one ( ' product.product ' ,
string = ' Share type ' ,
domain = [ ( ' is_share ' , ' = ' , True ) ] )
share_short_name = fields . Char ( related = ' share_product_id.short_name ' ,
string = ' Share type name ' )
share_unit_price = fields . Float ( related = ' share_product_id.list_price ' ,
string = ' Share price ' )
subscription_amount = fields . Float ( compute = ' _compute_subscription_amount ' ,
string = ' Subscription amount ' )
ordered_parts = fields . Integer ( string = ' Number of Share ' )
address = fields . Char ( string = ' Address ' )
city = fields . Char ( string = ' City ' )
zip_code = fields . Char ( string = ' Zip Code ' )
country_id = fields . Many2one ( ' res.country ' , string = ' Country ' , ondelete = ' restrict ' )
country_id = fields . Many2one ( ' res.country ' ,
string = ' Country ' ,
ondelete = ' restrict ' )
phone = fields . Char ( string = ' Phone ' )
no_registre = fields . Char ( string = ' National Register Number ' )
user_id = fields . Many2one ( ' res.users ' , string = ' Responsible ' , readonly = True )
validated = fields . Boolean ( compute = ' _validated_lines ' , string = ' Valid Line? ' , readonly = True )
user_id = fields . Many2one ( ' res.users ' ,
string = ' Responsible ' ,
readonly = True )
validated = fields . Boolean ( compute = ' _validated_lines ' ,
string = ' Valid Line? ' ,
readonly = True )
skip_control_ng = fields . Boolean ( string = " Skip control " ,
help = " if this field is checked then no control will be done on the national register number and on the iban bank account. To be done in case of the id card is from abroad or in case of a passport " )
lang = fields . Selection ( _lang_get , ' Language ' , default = lambda self : self . env [ ' res.company ' ] . _company_default_get ( ) . default_lang_id . code ,
help = " If the selected language is loaded in the system, all documents related to this contact will be printed in this language. If not, it will be English. " )
date = fields . Date ( string = ' Subscription date request ' , default = lambda self : datetime . strftime ( datetime . now ( ) , ' % Y- % m- %d ' ) )
help = " if this field is checked then no "
" control will be done on the national "
" register number and on the iban bank "
" account. To be done in case of the id "
" card is from abroad or in case of "
" a passport " )
lang = fields . Selection ( _lang_get ,
string = ' Language ' ,
default = lambda self : self . env [ ' res.company ' ] . _company_default_get ( ) . default_lang_id . code )
date = fields . Date ( string = ' Subscription date request ' ,
default = lambda self : datetime . strftime ( datetime . now ( ) , ' % Y- % m- %d ' ) )
company_id = fields . Many2one ( ' res.company ' , string = ' Company ' , required = True ,
change_default = True , readonly = True ,
change_default = True ,
readonly = True ,
default = lambda self : self . env [ ' res.company ' ] . _company_default_get ( ) )
is_company = fields . Boolean ( string = ' Is a company ' )
is_operation = fields . Boolean ( string = ' Is an operation ' )
@ -169,19 +210,26 @@ class subscription_request(models.Model):
activities_address = fields . Char ( string = ' Activities address ' )
activities_city = fields . Char ( string = ' Activities city ' )
activities_zip_code = fields . Char ( string = ' Activities zip Code ' )
activities_country_id = fields . Many2one ( ' res.country ' , string = ' Activities country ' , ondelete = ' restrict ' )
activities_country_id = fields . Many2one ( ' res.country ' ,
string = ' Activities country ' ,
ondelete = ' restrict ' )
contact_person_function = fields . Char ( string = ' Function ' )
operation_request_id = fields . Many2one ( ' operation.request ' , string = " Operation Request " )
operation_request_id = fields . Many2one ( ' operation.request ' ,
string = " Operation Request " )
is_operation = fields . Boolean ( string = " Is Operation request " )
capital_release_request = fields . One2many ( ' account.invoice ' , ' subscription_request ' ,
capital_release_request = fields . One2many ( ' account.invoice ' ,
' subscription_request ' ,
string = ' Capital release request ' ,
readonly = True )
capital_release_request_date = fields . Date ( string = " Force the capital release request date " ,
help = " Keep empty to use the current date " , copy = False )
help = " Keep empty to use the current date " ,
copy = False )
source = fields . Selection ( [ ( ' website ' , ' Website ' ) ,
( ' crm ' , ' CRM ' ) ,
( ' manual ' , ' Manual ' ) ,
( ' operation ' , ' Operation ' ) ] , string = " Source " , default = " website " )
( ' operation ' , ' Operation ' ) ] ,
string = " Source " ,
default = " website " )
_order = " id desc "
# declare this function in order to be overriden
@ -190,10 +238,11 @@ class subscription_request(models.Model):
def _prepare_invoice_line ( self , product , partner , qty ) :
self . ensure_one ( )
res = { }
account = product . property_account_income_id or product . categ_id . property_account_income_categ_id
account = product . property_account_income_id \
or product . categ_id . property_account_income_categ_id
if not account :
raise UserError ( _ ( ' Please define income account for this product: " %s " (id: %d ) - or for its category: " %s " . ' ) % \
raise UserError ( _ ( ' Please define income account for this product: '
' " %s " (id: %d ) - or for its category: " %s " . ' ) %
( product . name , product . id , product . categ_id . name ) )
fpos = partner . property_account_position_id
@ -229,15 +278,18 @@ class subscription_request(models.Model):
# creating invoice and invoice lines
invoice_vals = { ' partner_id ' : partner . id ,
' journal_id ' : journal . id , ' account_id ' : account . id ,
' type ' : ' out_invoice ' , ' release_capital_request ' : True ,
' journal_id ' : journal . id ,
' account_id ' : account . id ,
' type ' : ' out_invoice ' ,
' release_capital_request ' : True ,
' subscription_request ' : self . id }
if self . capital_release_request_date :
invoice_vals [ ' date_invoice ' ] = self . capital_release_request_date
invoice = self . env [ ' account.invoice ' ] . create ( invoice_vals )
vals = self . _prepare_invoice_line ( self . share_product_id , partner , self . ordered_parts )
vals = self . _prepare_invoice_line ( self . share_product_id , partner ,
self . ordered_parts )
vals [ ' invoice_id ' ] = invoice . id
line = self . env [ ' account.invoice.line ' ] . create ( vals )
self . env [ ' account.invoice.line ' ] . create ( vals )
# validate the capital release request
invoice . signal_workflow ( ' invoice_open ' )
@ -247,23 +299,31 @@ class subscription_request(models.Model):
return invoice
def get_partner_company_vals ( self ) :
# this should go to the many2many tag field
#'title':'company',
#self.env['res.partner.title'].search([('shortcut','=',self.company_type)])
partner_vals = { ' name ' : self . company_name , ' is_company ' : self . is_company ,
' company_register_number ' : self . company_register_number , ' customer ' : False ,
' cooperator ' : True , ' street ' : self . address , ' zip ' : self . zip_code ,
' city ' : self . city , ' email ' : self . company_email , ' out_inv_comm_type ' : ' bba ' , ' customer ' : self . share_product_id . customer ,
' out_inv_comm_algorithm ' : ' random ' , ' country_id ' : self . country_id . id , ' lang ' : self . lang }
partner_vals = { ' name ' : self . company_name ,
' is_company ' : self . is_company ,
' company_register_number ' : self . company_register_number ,
' customer ' : False , ' cooperator ' : True ,
' street ' : self . address , ' zip ' : self . zip_code ,
' city ' : self . city , ' email ' : self . company_email ,
' out_inv_comm_type ' : ' bba ' ,
' customer ' : self . share_product_id . customer ,
' out_inv_comm_algorithm ' : ' random ' ,
' country_id ' : self . country_id . id ,
' lang ' : self . lang }
return partner_vals
def get_partner_vals ( self ) :
partner_vals = { ' name ' : self . name , ' first_name ' : self . firstname , ' last_name ' : self . lastname ,
' gender ' : self . gender , ' cooperator ' : True , ' street ' : self . address , ' zip ' : self . zip_code ,
' city ' : self . city , ' phone ' : self . phone , ' email ' : self . email ,
' national_register_number ' : self . no_registre , ' out_inv_comm_type ' : ' bba ' ,
' out_inv_comm_algorithm ' : ' random ' , ' country_id ' : self . country_id . id ,
' lang ' : self . lang , ' birthdate ' : self . birthdate , ' customer ' : self . share_product_id . customer }
partner_vals = { ' name ' : self . name , ' first_name ' : self . firstname ,
' last_name ' : self . lastname , ' street ' : self . address ,
' zip ' : self . zip_code , ' email ' : self . email ,
' gender ' : self . gender , ' cooperator ' : True ,
' city ' : self . city , ' phone ' : self . phone ,
' national_register_number ' : self . no_registre ,
' out_inv_comm_type ' : ' bba ' ,
' out_inv_comm_algorithm ' : ' random ' ,
' country_id ' : self . country_id . id , ' lang ' : self . lang ,
' birthdate ' : self . birthdate ,
' customer ' : self . share_product_id . customer }
return partner_vals
def create_coop_partner ( self ) :
@ -276,7 +336,10 @@ class subscription_request(models.Model):
partner = partner_obj . create ( partner_vals )
if self . iban :
self . env [ ' res.partner.bank ' ] . create ( { ' partner_id ' : partner . id , ' acc_number ' : self . iban } )
self . env [ ' res.partner.bank ' ] . create ( {
' partner_id ' : partner . id ,
' acc_number ' : self . iban
} )
return partner
def create_user ( self , partner ) :
@ -307,7 +370,8 @@ class subscription_request(models.Model):
partner = self . partner_id
else :
if self . already_cooperator :
raise UserError ( _ ( ' The checkbox already cooperator is checked please select a cooperator. ' ) )
raise UserError ( _ ( ' The checkbox already cooperator is '
' checked please select a cooperator. ' ) )
elif self . is_company and self . company_register_number :
partner = partner_obj . search ( [ ( ' company_register_number ' , ' = ' , self . company_register_number ) ] )
elif self . no_registre :
@ -327,22 +391,37 @@ class subscription_request(models.Model):
if contact :
contact . type = ' representative '
if not contact :
contact_vals = { ' name ' : self . name , ' first_name ' : self . firstname , ' last_name ' : self . lastname ,
' customer ' : False , ' is_company ' : False , ' cooperator ' : True ,
' street ' : self . address , ' zip ' : self . zip_code , ' gender ' : self . gender ,
' city ' : self . city , ' phone ' : self . phone , ' email ' : self . email ,
' national_register_number ' : self . no_registre , ' out_inv_comm_type ' : ' bba ' ,
' out_inv_comm_algorithm ' : ' random ' , ' country_id ' : self . country_id . id ,
' lang ' : self . lang , ' birthdate_date ' : self . birthdate , ' parent_id ' : partner . id ,
' function ' : self . contact_person_function , ' representative ' : True , ' type ' : ' representative ' }
contact_vals = { ' name ' : self . name ,
' first_name ' : self . firstname ,
' last_name ' : self . lastname , ' customer ' : False ,
' is_company ' : False , ' cooperator ' : True ,
' street ' : self . address , ' gender ' : self . gender ,
' zip ' : self . zip_code , ' city ' : self . city ,
' phone ' : self . phone , ' email ' : self . email ,
' national_register_number ' : self . no_registre ,
' country_id ' : self . country_id . id ,
' out_inv_comm_type ' : ' bba ' ,
' out_inv_comm_algorithm ' : ' random ' ,
' lang ' : self . lang ,
' birthdate_date ' : self . birthdate ,
' parent_id ' : partner . id ,
' representative ' : True ,
' function ' : self . contact_person_function ,
' type ' : ' representative ' }
contact = partner_obj . create ( contact_vals )
else :
if len ( contact ) > 1 :
raise UserError ( _ ( ' There is two different persons with the same national register number. Please proceed to a merge before to continue ' ) )
raise UserError ( _ ( ' There is two different persons with the '
' same national register number. Please '
' proceed to a merge before to continue ' )
)
if contact . parent_id and contact . parent_id . id != partner . id :
raise UserError ( _ ( ' This contact person is already defined for another company. Please select another contact ' ) )
raise UserError ( _ ( ' This contact person is already defined '
' for another company. Please select '
' another contact ' ) )
else :
contact . write ( { ' parent_id ' : partner . id , ' representative ' : True } )
contact . write ( { ' parent_id ' : partner . id ,
' representative ' : True } )
invoice = self . create_invoice ( partner )
self . write ( { ' partner_id ' : partner . id , ' state ' : ' done ' } )
@ -367,6 +446,7 @@ class subscription_request(models.Model):
def put_on_waiting_list ( self ) :
self . write ( { ' state ' : ' waiting ' } )
class share_line ( models . Model ) :
_name = ' share.line '
@ -377,56 +457,107 @@ class share_line(models.Model):
line . total_amount_line = line . share_unit_price * line . share_number
return res
share_product_id = fields . Many2one ( ' product.product ' , string = ' Share type ' , required = True , readonly = True )
share_number = fields . Integer ( string = ' Number of Share ' , required = True , readonly = True )
share_short_name = fields . Char ( related = ' share_product_id.short_name ' , string = ' Share type name ' )
share_unit_price = fields . Float ( string = ' Share price ' , readonly = True )
effective_date = fields . Date ( string = ' Effective Date ' , readonly = True )
partner_id = fields . Many2one ( ' res.partner ' , string = ' Cooperator ' , required = True , ondelete = ' cascade ' , readonly = True )
total_amount_line = fields . Float ( compute = ' _compute_total_line ' , string = ' Total amount line ' )
share_product_id = fields . Many2one ( ' product.product ' ,
string = ' Share type ' ,
required = True ,
readonly = True )
share_number = fields . Integer ( string = ' Number of Share ' ,
required = True ,
readonly = True )
share_short_name = fields . Char ( related = ' share_product_id.short_name ' ,
string = ' Share type name ' )
share_unit_price = fields . Float ( string = ' Share price ' ,
readonly = True )
effective_date = fields . Date ( string = ' Effective Date ' ,
readonly = True )
partner_id = fields . Many2one ( ' res.partner ' ,
string = ' Cooperator ' ,
required = True ,
ondelete = ' cascade ' ,
readonly = True )
total_amount_line = fields . Float ( compute = ' _compute_total_line ' ,
string = ' Total amount line ' )
class subscription_register ( models . Model ) :
_name = ' subscription.register '
@api.multi
def _compute_total_line ( self ) :
res = { }
for register_line in self :
register_line . total_amount_line = register_line . share_unit_price * register_line . quantity
name = fields . Char ( string = ' Register Number Operation ' , required = True , readonly = True )
register_number_operation = fields . Integer ( string = ' Register Number Operation ' , required = True , readonly = True )
partner_id = fields . Many2one ( ' res.partner ' , string = ' Cooperator ' , required = True , readonly = True )
partner_id_to = fields . Many2one ( ' res.partner ' , string = ' Transfered to ' , readonly = True )
date = fields . Date ( string = ' Subscription Date ' , required = True , readonly = True )
quantity = fields . Integer ( string = ' Number of share ' , readonly = True )
share_unit_price = fields . Float ( string = ' Share price ' , readonly = True )
total_amount_line = fields . Float ( compute = ' _compute_total_line ' , string = ' Total amount line ' )
share_product_id = fields . Many2one ( ' product.product ' , string = ' Share type ' , required = True , readonly = True , domain = [ ( ' is_share ' , ' = ' , True ) ] )
share_short_name = fields . Char ( related = ' share_product_id.short_name ' , string = ' Share type name ' , readonly = True )
share_to_product_id = fields . Many2one ( ' product.product ' , string = ' Share to type ' , readonly = True , domain = [ ( ' is_share ' , ' = ' , True ) ] )
share_to_short_name = fields . Char ( related = ' share_to_product_id.short_name ' , string = ' Share to type name ' , readonly = True )
quantity_to = fields . Integer ( string = ' Number of share to ' , readonly = True )
share_to_unit_price = fields . Float ( string = ' Share to price ' , readonly = True )
name = fields . Char ( string = ' Register Number Operation ' ,
required = True ,
readonly = True )
register_number_operation = fields . Integer ( string = ' Register Number Operation ' ,
required = True ,
readonly = True )
partner_id = fields . Many2one ( ' res.partner ' ,
string = ' Cooperator ' ,
required = True ,
readonly = True )
partner_id_to = fields . Many2one ( ' res.partner ' ,
string = ' Transfered to ' ,
readonly = True )
date = fields . Date ( string = ' Subscription Date ' ,
required = True ,
readonly = True )
quantity = fields . Integer ( string = ' Number of share ' ,
readonly = True )
share_unit_price = fields . Float ( string = ' Share price ' ,
readonly = True )
total_amount_line = fields . Float ( compute = ' _compute_total_line ' ,
string = ' Total amount line ' )
share_product_id = fields . Many2one ( ' product.product ' ,
string = ' Share type ' ,
required = True ,
readonly = True ,
domain = [ ( ' is_share ' , ' = ' , True ) ] )
share_short_name = fields . Char ( related = ' share_product_id.short_name ' ,
string = ' Share type name ' ,
readonly = True )
share_to_product_id = fields . Many2one ( ' product.product ' ,
string = ' Share to type ' ,
readonly = True ,
domain = [ ( ' is_share ' , ' = ' , True ) ] )
share_to_short_name = fields . Char ( related = ' share_to_product_id.short_name ' ,
string = ' Share to type name ' ,
readonly = True )
quantity_to = fields . Integer ( string = ' Number of share to ' ,
readonly = True )
share_to_unit_price = fields . Float ( string = ' Share to price ' ,
readonly = True )
type = fields . Selection ( [ ( ' subscription ' , ' Subscription ' ) ,
( ' transfer ' , ' Transfer ' ) ,
( ' sell_back ' , ' Sell Back ' ) ,
( ' convert ' , ' Conversion ' ) ] ,
string = ' Operation Type ' , readonly = True )
company_id = fields . Many2one ( ' res.company ' , string = ' Company ' , required = True ,
company_id = fields . Many2one ( ' res.company ' , string = ' Company ' ,
required = True ,
change_default = True , readonly = True ,
default = lambda self : self . env [ ' res.company ' ] . _company_default_get ( ) )
user_id = fields . Many2one ( ' res.users ' , string = ' Responsible ' , readonly = True , default = lambda self : self . env . user )
user_id = fields . Many2one ( ' res.users ' ,
string = ' Responsible ' ,
readonly = True ,
default = lambda self : self . env . user )
_order = " register_number_operation asc "
@api.model
def read_group ( self , domain , fields , groupby , offset = 0 , limit = None , orderby = False , lazy = True ) :
def read_group ( self , domain , fields , groupby , offset = 0 , limit = None ,
orderby = False ,
lazy = True ) :
if ' share_unit_price ' in fields :
fields . remove ( ' share_unit_price ' )
if ' register_number_operation ' in fields :
fields . remove ( ' register_number_operation ' )
res = super ( subscription_register , self ) . read_group ( domain , fields , groupby , offset = offset , limit = limit , orderby = orderby , lazy = lazy )
res = super ( subscription_register , self ) . read_group ( domain , fields ,
groupby ,
offset = offset ,
limit = limit ,
orderby = orderby ,
lazy = lazy )
if ' total_amount_line ' in fields :
for line in res :
if ' __domain ' in line :