L10N_CH : DTA now create a bank statement

bzr revid: pinky-f968b1f61f0c4b8fda9541c8652c45175236855c
This commit is contained in:
pinky 2007-01-03 08:37:33 +00:00
parent 51f83bd060
commit cf7cc358f0
8 changed files with 147 additions and 97 deletions

View File

@ -98,7 +98,7 @@ class account_cash_discount(osv.osv):
_description = "Cash Discount" #A reduction in the price if payment is made within a stipulated period.
_columns = {
'name': fields.char('Name', size=32),
'date': fields.date('Date', required=True),
'delay': fields.integer('Number of Days', required=True),
'discount': fields.float('Discount (%)',required=True),
'payment_id': fields.many2one('account.payment.term','Associated Payment Term'),
}
@ -746,7 +746,12 @@ class account_bank_statement(osv.osv):
'line_ids': fields.one2many('account.bank.statement.line', 'statement_id', 'Statement lines', states={'confirm':[('readonly',True)]}),
'move_line_ids': fields.one2many('account.move.line', 'statement_id', 'Entry lines', states={'confirm':[('readonly',True)]}),
'state': fields.selection([('draft','Draft'),('confirm','Confirm')], 'State', required=True, states={'confirm':[('readonly',True)]}, readonly="1"),
#'partner_id': fields.many2one('res.partner', 'Partner', states={'confirm':[('readonly',True)]}),
#'invoice_id': fields.many2one('account.invoice', 'Invoice', states={'confirm':[('readonly',True)]}),
#write-off account
#selection: partiel/total
}
_defaults = {
'name': lambda self,cr,uid,context={}: self.pool.get('ir.sequence').get(cr, uid, 'account.bank.statement'),
'date': lambda *a: time.strftime('%Y-%m-%d'),

View File

@ -136,7 +136,7 @@
<field name="account_id"/>
<field name="project_id"/>
<field name="payment_term"/>
<field name="payment_term" on_change="onchange_payment_term(payment_term)" />
<field name="date_due" select="1"/>
<field name="journal_id" select="1"/>

View File

@ -1103,7 +1103,7 @@
<field name="arch" type="xml">
<form string="Cash Discount">
<field name="name" select="1"/>
<field name="date" select="1"/>
<field name="delay" select="1"/>
<field name="discount" select="1"/>
</form>
</field>
@ -1114,9 +1114,9 @@
<field name="model">account.cash.discount</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree string="Cash Discount">
<tree string="Cash Discount" editable="bottom">
<field name="name" select="1"/>
<field name="date" select="1"/>
<field name="delay" select="1"/>
<field name="discount" select="1"/>
</tree>
</field>

View File

@ -33,6 +33,8 @@ import netsvc
from osv import fields, osv
import ir
import pooler
import mx.DateTime
from mx.DateTime import RelativeDateTime
class account_invoice(osv.osv):
def _amount_untaxed(self, cr, uid, ids, prop, unknow_none,unknow_dict):
@ -150,7 +152,6 @@ class account_invoice(osv.osv):
# def get_invoice_address(self, cr, uid, ids):
# res = self.pool.get('res.partner').address_get(cr, uid, [part], ['invoice'])
# return [{}]
def onchange_partner_id(self, cr, uid, ids, type, partner_id):
invoice_addr_id = False
contact_addr_id = False
@ -173,7 +174,19 @@ class account_invoice(osv.osv):
def onchange_currency_id(self, cr, uid, ids, curr_id):
return {}
def onchange_payment_term(self, cr, uid, ids, payment_term):
if not payment_term:
return {}
invoice= self.pool.get('account.invoice').browse(cr, uid, ids)[0]
pterm_list= self.pool.get('account.payment.term').compute(cr, uid, payment_term, value=1, date_ref=invoice.date_invoice)
if not pterm_list:
return {}
pterm_list = [line[0] for line in pterm_list]
pterm_list.sort()
return {'value':{'date_due': pterm_list[-1]}}
# go from canceled state to draft state
def action_cancel_draft(self, cr, uid, ids, *args):
self.write(cr, uid, ids, {'state':'draft'})

View File

@ -48,12 +48,13 @@ class account_dta_line(osv.osv):
'name' : fields.many2one('account.invoice','Invoice', required=True),
'partner_id' : fields.many2one('res.partner','Partner'),
'due_date' : fields.date('Due date'),
'invoice_date' : fields.date('Invoice date'),
'cashdisc_date' : fields.date('Cash Discount date'),
'amount_to_pay' : fields.float('Amount to pay'),
'amount_invoice': fields.float('Invoiced Amount'),
'amount_cashdisc': fields.float('Cash Discount Amount'),
'dta_id': fields.many2one('account.dta','Associated DTA', required=True, ondelete='cascade'),
'state' : fields.selection([('draft','Draft'),('cancel','Canceled'),('done','Done')],'State')
'state' : fields.selection([('draft','Draft'),('cancel','Error'),('done','Paid')],'State')
}
_defaults = {
'state' : lambda *a :'draft',

View File

@ -47,9 +47,10 @@
<tree string="DTA lines" editable="top">
<field name="name" />
<field name="partner_id" />
<field name="invoice_date" />
<field name="cashdisc_date" />
<field name="due_date" />
<field name="amount_invoice" />
<field name="cashdisc_date" />
<field name="amount_cashdisc" />
<field name="amount_to_pay" />
<field name="state" />
@ -67,7 +68,6 @@
<field name="bank" />
<field name="date" />
<field name="user_id" />
<field name="state" />
<field name="dta_line_ids" colspan="3"/>
<field name="note" colspan="3"/>
</form>

View File

@ -30,6 +30,8 @@ from base64 import b64encode
from osv import osv
import time
import pooler
import mx.DateTime
from mx.DateTime import RelativeDateTime, DateTime
def _bank_get(self, cr, uid, context={}):
pool = pooler.get_pool(cr.dbname)
@ -41,26 +43,21 @@ def _bank_get(self, cr, uid, context={}):
res = [(r['active'], r['name']) for r in res]
return res
def _journal_get(self, cr, uid, context={}):
pool= pooler.get_pool(cr.dbname)
obj= pool.get('account.journal')
ids= obj.search(cr, uid, [('type','=','cash')])
res= obj.read(cr, uid, ids, ['active', 'name'], context)
res= [(r['active'], r['name']) for r in res]
return res
ask_form = """<?xml version="1.0"?>
<form string="DTA file creation">
<separator colspan="4" string="Choose a bank account :" />
<field name="bank" colspan="3"/>
</form>
"""
ask_fields = {
'bank' : {
'string':'Bank Account',
'type':'selection',
'selection':_bank_get,
'required': True,
},
}
check_form = """<?xml version="1.0"?>
<form string="DTA file creation">
<separator colspan="4" string="DTA Details :" />
<field name="bank"/>
<field name="journal"/>
<field name="dta_line_ids" nolabel="1" colspan="4" />
</form>
"""
@ -70,6 +67,19 @@ check_fields = {
'type':'one2many',
'relation':'account.dta.line',
},
'bank' : {
'string':'Bank Account',
'type':'selection',
'selection':_bank_get,
'required': True,
},
'journal' : {
'string':'Journal',
'type':'selection',
'selection':_journal_get,
'required': True,
},
}
@ -112,11 +122,21 @@ def _cleaning(self,cr,uid,data,context):
def _get_dta_lines(self,cr,uid,data,context):
pool = pooler.get_pool(cr.dbname)
res= {}
user = pool.get('res.users').browse(cr,uid,[uid])[0]
company= user.company_id
if company.partner_id.bank_ids:
bank = company.partner_id.bank_ids[0]
res.update({'bank':bank.bank_name,'bank_iban':bank.iban or ''}) # 'city':'',
dta_line_obj = pool.get('account.dta.line')
lines=[]
id_dta= pool.get('account.dta').create(cr,uid,{
'bank':data['form']['bank'],
'date':time.strftime('%Y-%m-%d'),
'user_id':uid,
})
@ -126,24 +146,31 @@ def _get_dta_lines(self,cr,uid,data,context):
if i.dta_state != '2bpaid' or i.state in ['draft','cancel','paid']:
continue
discount = i.payment_term and i.payment_term.cash_discount_ids and i.payment_term.cash_discount_ids[0] or False
if discount and time.strftime('%Y-%m-%d') <= discount.date :
amount_to_pay = i.amount_total*(1-discount.discount)
else :
amount_to_pay = i.amount_total
discount_ids= i.payment_term and i.payment_term.cash_discount_ids and i.payment_term.cash_discount_ids
discount= ""
cash_disc_date=""
if discount_ids:
for d in discount_ids: # TODO a mettre en fct dans l'objet payment term
cash_disc_date= mx.DateTime.strptime(i.date_invoice,'%Y-%m-%d') +\
RelativeDateTime(days=d.delay+1)
if cash_disc_date >= mx.DateTime.now():
discount= d
break
lines.append(dta_line_obj.create(cr,uid,{
'name':i.id,
'partner_id':i.partner_id.id,
'due_date':i.date_due,
'cashdisc_date': discount and discount.date,
'amount_to_pay': amount_to_pay,
'amount_invoice':i.amount_total,
'name': i.id,
'partner_id': i.partner_id.id,
'due_date': i.date_due,
'invoice_date': i.date_invoice,
'cashdisc_date': discount and cash_disc_date.strftime('%Y-%m-%d') or None,
'amount_to_pay': discount and i.amount_total*(1-discount.discount) or i.amount_total,
'amount_invoice': i.amount_total,
'amount_cashdisc': discount and i.amount_total*(1-discount.discount),
'dta_id': id_dta,
}))
return {'dta_line_ids': lines,'dta_id': id_dta}
res.update({'dta_line_ids': lines,'dta_id': id_dta})
return res
def c_ljust(s, size):
"""
@ -181,6 +208,7 @@ def header(date,cpt_benef,creation_date,cpt_donneur,id_fich,num_seq,trans,type):
def total(header,tot):
return '01'+c_ljust(header,51)+c_ljust(tot,16)+''.ljust(59)
def _create_dta(self,cr,uid,data,context):
# pour generaliser (plus) facilement : utiliser un design patern
@ -196,9 +224,8 @@ def _create_dta(self,cr,uid,data,context):
# cree des gt836
creation_date= time.strftime('%y%m%d')
err_log=''
log=''
dta=''
valeur=''
pool = pooler.get_pool(cr.dbname)
bank= pool.get('res.partner.bank').browse(cr,uid,[data['form']['bank']])[0]
bank_name= bank.name or ''
@ -226,6 +253,9 @@ def _create_dta(self,cr,uid,data,context):
th_amount_tot= 0
dta_id=data['form']['dta_id']
# write the bank account for the dta object
pool.get('account.dta').write(cr,uid,[dta_id],{'bank':data['form']['bank']})
count = 0
for line in data['form']['dta_line_ids']:
if not line[1]:
@ -238,10 +268,17 @@ def _create_dta(self,cr,uid,data,context):
if not dta_id :
return {'note':'No dta line'}
# creation of a bank statement : TODO ajouter le partner
bk_st_id = pool.get('account.bank.statement').create(cr,uid,{
'journal_id':data['form']['journal'],
'balance_start':0,
'balance_end_real':0,
'state':'draft',
})
for dtal in dta_line_obj.browse(cr,uid,[ line[1] for line in data['form']['dta_line_ids'] ]):
dta_line = ""
i = dtal.name #dta_line.name = invoice's id
@ -264,56 +301,53 @@ def _create_dta(self,cr,uid,data,context):
partner_city= ''
partner_zip= ''
partner_country= ''
err_log= err_log +'\nNo address for the invoice partner. (invoice '+ (i.number or '??')+')'
log= log +'\nNo address for the invoice partner. (invoice '+ (i.number or '??')+')'
if not partner_bank_account:
err_log= err_log +'\nNo bank account for the invoice partner. (invoice '+ (i.number or '??')+')'
log= log +'\nNo bank account for the invoice partner. (invoice '+ (i.number or '??')+')'
continue
#header
date_value = dtal.cashdisc_date or dtal.due_date or ""
date_value = date_value and mx.DateTime.strptime( date_value,'%Y-%m-%d') or mx.DateTime.now()
#date_value = date_value.strftime("%y%m%d")
try:
#header
hdr= header('000000','',creation_date,company_iban,'idfi',seq,'836','0') # TODO id_file
# segment 01:
dta_line = ''.join([segment_01(hdr,company_dta,
number,company_iban,date_value.strftime("%y%m%d")
,currency,str(dtal.amount_to_pay)), # adresse donneur d'ordre
segment_02(company.name,co_addr.street,co_addr.zip,co_addr.city,country,cours=''),# donnees de la banque
segment_03(bank_name,'',bank_iban),# adresse du beneficiaire
segment_04(partner_name,partner_street,partner_zip,partner_city,partner_country,cours=''),# communication
#& reglement des frais
segment_05(motif='I',ref1='',ref2=i.reference or '',ref3='',format='0') ])#FIXME : motif
except Exception,e :
err_log= err_log +'\n'+ str(e)+'(invoice '+ (i.number or '??')+')'
dtal_line_obj.write(cr,uid,[dtal.id],{'state':'cancel'})
continue
# segment 01:
try:
dta_line = dta_line + segment_01(hdr,company_dta ,
number,company_iban,valeur,currency,str(dtal.amount_to_pay))
except Exception,e :
err_log= err_log +'\n'+ str(e)+'(invoice '+ (i.number or '??')+')'
dtal_line_obj.write(cr,uid,[dtal.id],{'state':'cancel'})
continue
# adresse donneur d'ordre
try:
dta_line = dta_line + segment_02(company.name,co_addr.street,co_addr.zip,co_addr.city,country,cours='')
except Exception,e :
err_log= err_log +'\n'+ str(e)+'(invoice '+ (i.number or '??')+')'
dtal_line_obj.write(cr,uid,[dtal.id],{'state':'cancel'})
continue
# donnees de la banque
try:
dta_line = dta_line + segment_03(bank_name,'',bank_iban)
except Exception,e :
err_log= err_log +'\n'+ str(e)+'(invoice '+ (i.number or '??')+')'
dtal_line_obj.write(cr,uid,[dtal.id],{'state':'cancel'})
continue
# adresse du beneficiaire
try:
dta_line = dta_line + segment_04(partner_name,partner_street,partner_zip,partner_city,partner_country,cours='')
except Exception,e :
err_log= err_log +'\n'+ str(e)+'(invoice '+ (i.number or '??')+')'
dtal_line_obj.write(cr,uid,[dtal.id],{'state':'cancel'})
continue
# communication & reglement des frais
try:
dta_line = dta_line + segment_05(motif='I',ref1='',ref2=i.reference or '',ref3='',format='0') #FIXME : motif
except Exception,e :
err_log= err_log +'\n'+ str(e)+'(invoice '+ (i.number or '??')+')'
dtal_line_obj.write(cr,uid,[dtal.id],{'state':'cancel'})
log= log +'\nERROR:'+ str(e)+'(invoice '+ (i.number or '??')+')'
dta_line_obj.write(cr,uid,[dtal.id],{'state':'cancel'})
#raise
continue
#logging
log = log + "Invoice : %s, Amount paid : %d %s, Value date : %s, State : Paid."%\
(i.number,dtal.amount_to_pay,currency,date_value.strftime('%Y-%m-%d'))
pool.get('account.bank.statement.line').create(cr,uid,{
'name':i.number,
'date':date_value.strftime('%Y-%m-%d'),
'amount':dtal.amount_to_pay,
'type':{'out_invoice':'customer','in_invoice':'supplier','out_refund':'customer','in_refund':'supplier'}[i.type],
'partner_id':i.partner_id.id,
'account_id':i.account_id.id,
'statement_id': bk_st_id,
})
dta = dta + dta_line
amount_tot += dtal.amount_to_pay
inv_obj.write(cr,uid,[i.id],{'dta_state':'paid'})
@ -321,34 +355,30 @@ def _create_dta(self,cr,uid,data,context):
seq += 1
# total
# bank statement updated with the total amount :
pool.get('account.bank.statement').write(cr,uid,[bk_st_id],{'balance_end_real': amount_tot})
# segment total
try:
if dta :
dta = dta + total(header('000000','',creation_date,company_iban,str(uid),seq,'890','0')\
, str(amount_tot))
except Exception,e :
err_log= err_log +'\n'+ str(e) + 'CORRUPTED FILE !\n'
log= log +'\n'+ str(e) + 'CORRUPTED FILE !\n'
#raise
err_log = err_log + "\nSummary :\nTotal amount paid : %.2f\nTotal amount expected : %.2f"%(amount_tot,th_amount_tot)
pool.get('account.dta').write(cr,uid,[dta_id],{'note':err_log,'name':b64encode(dta or "")})
log = log + "\n--\nSummary :\nTotal amount paid : %.2f\nTotal amount expected : %.2f"%(amount_tot,th_amount_tot)
pool.get('account.dta').write(cr,uid,[dta_id],{'note':log,'name':b64encode(dta or "")})
return {'note':err_log, 'dta': b64encode(dta)}
return {'note':log, 'dta': b64encode(dta)}
class wizard_dta_create(wizard.interface):
states = {
'init' : {
'actions' : [_get_bank],
'result' : {'type' : 'form',
'arch' : ask_form,
'fields' : ask_fields,
'state' : [('end', 'Cancel'),('check', 'Yes') ]}
},
'check':{
'init':{
'actions' : [_get_dta_lines],
'result' : {'type' : 'form',
'arch' : check_form,

View File

@ -218,6 +218,7 @@ def _v11_parsing(self, cr, uid, data, context):
raise Exception("No moves associated to invoice number "+ rec['invoice_ref'].lstrip('0'))
account_move_lines.append(line_id )
# TODO accpeter les reconciliation qui ne marche pas.
pool.get('account.move.line').reconcile(cr,uid,account_move_lines,
writeoff_acc_id=0,
writeoff_journal_id=0,