[IMP] hr_payroll_account: set the basis for the new version of hr_payroll_account based on our new vision of hr_payroll

bzr revid: qdp-launchpad@openerp.com-20110512080147-emqikvpp8idhiwnx
This commit is contained in:
Quentin (OpenERP) 2011-05-12 10:01:47 +02:00
parent 3682e3df40
commit b653a74923
1 changed files with 18 additions and 306 deletions

View File

@ -27,184 +27,17 @@ from osv import fields, osv
from tools import config
from tools.translate import _
#def prev_bounds(cdate=False):
# when = date.fromtimestamp(time.mktime(time.strptime(cdate,"%Y-%m-%d")))
# this_first = date(when.year, when.month, 1)
# month = when.month + 1
# year = when.year
# if month > 12:
# month = 1
# year += 1
# next_month = date(year, month, 1)
# prev_end = next_month - timedelta(days=1)
# return this_first, prev_end
class hr_payroll_structure(osv.osv):
_inherit = 'hr.payroll.structure'
_description = 'Salary Structure'
_columns = {
'account_id':fields.many2one('account.analytic.account', 'Analytic Account'),
}
hr_payroll_structure()
class hr_employee(osv.osv):
'''
Employee
'''
_inherit = 'hr.employee'
_description = 'Employee'
_columns = {
'property_bank_account': fields.property(
'account.account',
type='many2one',
relation='account.account',
string="Bank Account",
method=True,
domain="[('type', '=', 'liquidity')]",
view_load=True,
help="Select Bank Account from where Salary Expense will be Paid, to be used for payslip verification."),
'salary_account':fields.property(
'account.account',
type='many2one',
relation='account.account',
string="Salary Account",
method=True,
domain="[('type', '=', 'other')]",
view_load=True,
help="Expense account when Salary Expense will be recorded"),
'employee_account':fields.property(
'account.account',
type='many2one',
relation='account.account',
string="Employee Account",
method=True,
domain="[('type', '=', 'payable')]",
view_load=True,
help="Employee Payable Account"),
'analytic_account':fields.property(
'account.analytic.account',
type='many2one',
relation='account.analytic.account',
string="Analytic Account",
method=True,
view_load=True,
help="Analytic Account for Salary Analysis"),
}
hr_employee()
#class payroll_register(osv.osv):
# _inherit = 'hr.payroll.register'
# _description = 'Payroll Register'
#
# _columns = {
# 'journal_id': fields.many2one('account.journal', 'Expense Journal'),
# 'bank_journal_id': fields.many2one('account.journal', 'Bank Journal'),
# 'period_id': fields.many2one('account.period', 'Force Period', domain=[('state','<>','done')], help="Keep empty to use the period of the validation(Payslip) date."),
# }
#
# def compute_sheet(self, cr, uid, ids, context=None):
# emp_pool = self.pool.get('hr.employee')
# slip_pool = self.pool.get('hr.payslip')
# func_pool = self.pool.get('hr.payroll.structure')
# slip_line_pool = self.pool.get('hr.payslip.line')
# wf_service = netsvc.LocalService("workflow")
# vals = self.browse(cr, uid, ids, context=context)[0]
# emp_ids = emp_pool.search(cr, uid, [])
#
# for emp in emp_pool.browse(cr, uid, emp_ids, context=context):
# old_slips = slip_pool.search(cr, uid, [('employee_id','=', emp.id), ('date','=',vals.date)])
# if old_slips:
# slip_pool.write(cr, uid, old_slips, {'register_id':ids[0]})
# for sid in old_slips:
# wf_service.trg_validate(uid, 'hr.payslip', sid, 'compute_sheet', cr)
# else:
# res = {
# 'employee_id':emp.id,
# 'basic':0.0,
# 'register_id':ids[0],
# 'name':vals.name,
# 'date':vals.date,
# 'journal_id':vals.journal_id.id,
# 'bank_journal_id':vals.bank_journal_id.id
# }
# slip_id = slip_pool.create(cr, uid, res)
# wf_service.trg_validate(uid, 'hr.payslip', slip_id, 'compute_sheet', cr)
#
# number = self.pool.get('ir.sequence').get(cr, uid, 'salary.register')
# self.write(cr, uid, ids, {'state':'draft', 'number':number})
# return True
#
#payroll_register()
#class payroll_advice(osv.osv):
# _inherit = 'hr.payroll.advice'
# _description = 'Bank Advice Note'
#
# _columns = {
# 'account_id': fields.many2one('account.account', 'Account'),
# }
#payroll_advice()
class contrib_register(osv.osv):
_inherit = 'hr.contribution.register'
_description = 'Contribution Register'
def _total_contrib(self, cr, uid, ids, field_names, arg, context=None):
# line_pool = self.pool.get('hr.contibution.register.line')
period_id = self.pool.get('account.period').search(cr,uid,[('date_start','<=',time.strftime('%Y-%m-%d')),('date_stop','>=',time.strftime('%Y-%m-%d'))])[0]
fiscalyear_id = self.pool.get('account.period').browse(cr, uid, period_id, context=context).fiscalyear_id
res = {}
# for cur in self.browse(cr, uid, ids, context=context):
# current = line_pool.search(cr, uid, [('period_id','=',period_id),('register_id','=',cur.id)])
# years = line_pool.search(cr, uid, [('period_id.fiscalyear_id','=',fiscalyear_id.id), ('register_id','=',cur.id)])
#
# e_month = 0.0
# c_month = 0.0
# for i in line_pool.browse(cr, uid, current, context=context):
# e_month += i.emp_deduction
# c_month += i.comp_deduction
#
# e_year = 0.0
# c_year = 0.0
# for j in line_pool.browse(cr, uid, years, context=context):
# e_year += i.emp_deduction
# c_year += i.comp_deduction
#
# res[cur.id]={
# 'monthly_total_by_emp':e_month,
# 'monthly_total_by_comp':c_month,
# 'yearly_total_by_emp':e_year,
# 'yearly_total_by_comp':c_year
# }
return res
_columns = {
'account_id': fields.many2one('account.account', 'Account'),
'analytic_account_id':fields.many2one('account.analytic.account', 'Analytic Account'),
'yearly_total_by_emp': fields.function(_total_contrib, method=True, multi='dc', store=True, string='Total By Employee', digits=(16, 4)),
'yearly_total_by_comp': fields.function(_total_contrib, method=True, multi='dc', store=True, string='Total By Company', digits=(16, 4)),
}
contrib_register()
#class contrib_register_line(osv.osv):
# _inherit = 'hr.contibution.register.line'
# _description = 'Contribution Register Line'
#
# _columns = {
# 'period_id': fields.many2one('account.period', 'Period'),
# }
#contrib_register_line()
#class hr_holidays_status(osv.osv):
# _inherit = 'hr.holidays.status'
# _columns = {
# 'account_id': fields.many2one('account.account', 'Account'),
# 'analytic_account_id':fields.many2one('account.analytic.account', 'Analytic Account'),
# }
#hr_holidays_status()
class hr_payslip(osv.osv):
'''
Pay Slip
@ -213,12 +46,10 @@ class hr_payslip(osv.osv):
_description = 'Pay Slip'
_columns = {
'journal_id': fields.many2one('account.journal', 'Expense Journal',states={'draft': [('readonly', False)]}, readonly=True),
'bank_journal_id': fields.many2one('account.journal', 'Bank Journal', states={'draft': [('readonly', False)]}, readonly=True),
'move_ids':fields.one2many('hr.payslip.account.move', 'slip_id', 'Accounting vouchers'),
'move_line_ids':fields.many2many('account.move.line', 'payslip_lines_rel', 'slip_id', 'line_id', 'Accounting Lines', readonly=True),
'move_payment_ids':fields.many2many('account.move.line', 'payslip_payment_rel', 'slip_id', 'payment_id', 'Payment Lines', readonly=True),
'period_id': fields.many2one('account.period', 'Force Period',states={'draft': [('readonly', False)]}, readonly=True, domain=[('state','<>','done')], help="Keep empty to use the period of the validation(Payslip) date."),
'journal_id': fields.many2one('account.journal', 'Expense Journal',states={'draft': [('readonly', False)]}, readonly=True),
#TOCHECK: should we have a link to account.move or account.move.line?
#'move_line_ids':fields.many2many('account.move.line', 'payslip_lines_rel', 'slip_id', 'line_id', 'Accounting Lines', readonly=True),
'account_move_ids': fields.many2many('account.move', 'payslip_move_rel', 'slip_id', 'move_id', 'Accounting Entries', readonly=True),
}
@ -229,15 +60,7 @@ class hr_payslip(osv.osv):
res['value'].update({'journal_id': journal_id})
return res
# def onchange_employee_id(self, cr, uid, ids, date_from, date_to, employee_id=False, contract_id=False, context=None):
# contract_obj = self.pool.get('hr.contract')
# res = super(hr_payslip, self).onchange_employee_id(cr, uid, ids, date_from=date_from, date_to=date_to, employee_id=employee_id, contract_id=contract_id, context=context)
# contract_id = res['value']['contract_id']
# if res['value']['contract_id']:
# journal_id = contract_obj.browse(cr, uid, res['value']['contract_id'], context=context).journal_id.id
# res['value'].update({'journal_id': journal_id})
# return res
#FIXME: we need to overwrite a smaller code
def get_payslip_lines(self, cr, uid, contract_ids, payslip_id, context):
journal_obj = self.pool.get('account.journal')
rule_obj = self.pool.get('hr.salary.rule')
@ -279,17 +102,7 @@ class hr_payslip(osv.osv):
value['analytic_account_id'] = rule.analytic_account_id.id
return result
def create_voucher(self, cr, uid, ids, name, voucher, sequence=5):
slip_move = self.pool.get('hr.payslip.account.move')
for slip in ids:
res = {
'slip_id':slip,
'move_id':voucher,
'sequence':sequence,
'name':name
}
slip_move.create(cr, uid, res)
#TODO: to correct
def cancel_sheet(self, cr, uid, ids, context=None):
move_pool = self.pool.get('account.move')
slip_move = self.pool.get('hr.payslip.account.move')
@ -304,6 +117,7 @@ class hr_payslip(osv.osv):
slip_move.unlink(cr, uid, move_ids, context=context)
return self.write(cr, uid, ids, {'state':'cancel'}, context=context)
#TODO: to correct
def process_sheet(self, cr, uid, ids, context=None):
move_pool = self.pool.get('account.move')
movel_pool = self.pool.get('account.move.line')
@ -386,69 +200,6 @@ class hr_payslip(osv.osv):
}
line_ids += [movel_pool.create(cr, uid, cre_rec, context=context)]
# other_pay = slip.other_pay
#Process all Reambuse Entries
# for line in slip.line_ids:
# if line.type == 'otherpay' and line.expanse_id.invoice_id:
# if not line.expanse_id.invoice_id.move_id:
# raise osv.except_osv(_('Warning !'), _('Please Confirm all Expense Invoice appear for Reimbursement'))
# invids = [line.expanse_id.invoice_id.id]
# amount = line.total
# acc_id = slip.bank_journal_id.default_credit_account_id and slip.bank_journal_id.default_credit_account_id.id
# period_id = slip.period_id.id
# journal_id = slip.bank_journal_id.id
# name = '[%s]-%s' % (slip.number, line.name)
# invoice_pool.pay_and_reconcile(cr, uid, invids, amount, acc_id, period_id, journal_id, False, period_id, False, context, name)
# other_pay -= amount
# #TODO: link this account entries to the Payment Lines also Expense Entries to Account Lines
# l_ids = movel_pool.search(cr, uid, [('name','=',name)], context=context)
# line_ids += l_ids
#
# l_ids = movel_pool.search(cr, uid, [('invoice','=',line.expanse_id.invoice_id.id)], context=context)
# exp_ids += l_ids
#Process for Other payment if any
# other_move_id = False
# if slip.other_pay > 0:
# narration = 'Payment of Other Payeble amounts to %s' % (slip.employee_id.name)
# move = {
# 'journal_id': slip.bank_journal_id.id,
# 'period_id': period_id,
# 'date': slip.date_from,
# 'type':'bank_pay_voucher',
# 'ref':slip.number,
# 'narration': narration
# }
# other_move_id = move_pool.create(cr, uid, move, context=context)
# self.create_voucher(cr, uid, [slip.id], narration, move_id)
#
# name = "To %s account" % (slip.employee_id.name)
# ded_rec = {
# 'move_id':other_move_id,
# 'name':name,
# 'date':slip.date_from,
# 'account_id':slip.employee_id.property_bank_account.id,
# 'debit': 0.0,
# 'credit': other_pay,
# 'journal_id':slip.journal_id.id,
# 'period_id':period_id,
# 'ref':slip.number
# }
# line_ids += [movel_pool.create(cr, uid, ded_rec, context=context)]
# name = "By %s account" % (slip.employee_id.property_bank_account.name)
# cre_rec = {
# 'move_id':other_move_id,
# 'name':name,
# 'partner_id':partner_id,
# 'date':slip.date_from,
# 'account_id':partner.property_account_payable.id,
# 'debit': other_pay,
# 'credit':0.0,
# 'journal_id':slip.journal_id.id,
# 'period_id':period_id,
# 'ref':slip.number
# }
# line_ids += [movel_pool.create(cr, uid, cre_rec, context=context)]
rec = {
'state':'done',
@ -462,12 +213,15 @@ class hr_payslip(osv.osv):
return True
#TODO: to clean
def account_check_sheet(self, cr, uid, ids, context=None):
return self.write(cr, uid, ids, {'state':'accont_check'}, context=context)
#TODO: to clean
def hr_check_sheet(self, cr, uid, ids, context=None):
return self.write(cr, uid, ids, {'state':'hr_check'}, context=context)
#TODO: to clean
def verify_sheet(self, cr, uid, ids, context=None):
move_pool = self.pool.get('account.move')
movel_pool = self.pool.get('account.move.line')
@ -542,7 +296,6 @@ class hr_payslip(osv.osv):
'account_id': slip.employee_id.salary_account.id,
'debit': basic_amt,
'credit': 0.0,
# 'quantity':slip.working_days,
'journal_id': slip.journal_id.id,
'period_id': period_id,
'analytic_account_id': False,
@ -565,7 +318,6 @@ class hr_payslip(osv.osv):
'date': slip.date_from,
'account_id': slip.employee_id.employee_account.id,
'debit': 0.0,
# 'quantity':slip.working_days,
'credit': basic_amt,
'journal_id': slip.journal_id.id,
'period_id': period_id,
@ -577,10 +329,6 @@ class hr_payslip(osv.osv):
continue
name = "[%s] - %s / %s" % (line.code, line.name, slip.employee_id.name)
amount = line.total
# if line.type == 'leaves':
# continue
rec = {
'move_id': move_id,
'name': name,
@ -598,10 +346,6 @@ class hr_payslip(osv.osv):
#Setting Analysis Account for Salary Slip Lines
if line.analytic_account_id:
rec['analytic_account_id'] = line.analytic_account_id.id
# else:
# rec['analytic_account_id'] = slip.deg_id.account_id.id
# if line.type == 'allowance' or line.type == 'otherpay':
if line.category_id.name == 'Allowance' :
rec['debit'] = amount
if not partner.property_account_payable:
@ -641,9 +385,6 @@ class hr_payslip(osv.osv):
}
line_ids += [movel_pool.create(cr, uid, ded_rec, context=context)]
line_ids += [movel_pool.create(cr, uid, rec, context=context)]
# if self._debug:
# for contrib in line.category_id.contribute_ids:
# _log.debug("%s %s %s %s %s", contrib.name, contrub.code, contrub.amount_type, contrib.contribute_per, line.total)
adj_move_id = False
if total_deduct > 0:
move = {
@ -695,39 +436,24 @@ class hr_payslip(osv.osv):
if not slip.period_id:
rec['period_id'] = period_id
# dates = prev_bounds(slip.date)
exp_ids = exp_pool.search(cr, uid, [('date_valid','>=',slip.date_from), ('date_valid','<=',slip.date_to), ('state','=','invoiced')], context=context)
# if exp_ids:
# acc = property_pool.get(cr, uid, 'property_account_expense_categ', 'product.category')
# for exp in exp_pool.browse(cr, uid, exp_ids, context=context):
# exp_res = {
# 'name':exp.name,
# 'amount_type':'fix',
# 'type':'otherpay',
# 'category_id':exp.category_id.id,
# 'amount':exp.amount,
# 'slip_id':slip.id,
# 'expanse_id':exp.id,
# 'account_id':acc
# }
# payslip_pool.create(cr, uid, exp_res, context=context)
self.write(cr, uid, [slip.id], rec, context=context)
return True
hr_payslip()
class hr_payslip_line(osv.osv):
_inherit = 'hr.payslip.line'
_columns = {
'account_id': fields.many2one('account.account', 'General Account'),
'analytic_account_id':fields.many2one('account.analytic.account', 'Analytic Account'),
}
hr_payslip_line()
#TODO: remove, i don't think it's worth having that information on the payslip line rather than on the salary rule
#class hr_payslip_line(osv.osv):
# _inherit = 'hr.payslip.line'
# _columns = {
# 'account_id': fields.many2one('account.account', 'General Account'),
# 'analytic_account_id':fields.many2one('account.analytic.account', 'Analytic Account'),
# }
#hr_payslip_line()
class hr_salary_rule(osv.osv):
_inherit = 'hr.salary.rule'
_columns = {
# 'account_id': fields.many2one('account.account', 'General Account'),
'analytic_account_id':fields.many2one('account.analytic.account', 'Analytic Account'),
'account_tax_id':fields.many2one('account.tax.code', 'Tax Code'),
'account_debit': fields.many2one('account.account', 'Debit Account'),
@ -735,27 +461,13 @@ class hr_salary_rule(osv.osv):
}
hr_salary_rule()
class account_move_link_slip(osv.osv):
'''
Account Move Link to Pay Slip
'''
_name = 'hr.payslip.account.move'
_description = 'Account Move Link to Pay Slip'
_columns = {
'name':fields.char('Name', size=256, required=True, readonly=False),
'move_id':fields.many2one('account.move', 'Expense Entries', required=False, readonly=True),
'slip_id':fields.many2one('hr.payslip', 'Pay Slip', required=False),
'sequence': fields.integer('Sequence'),
}
account_move_link_slip()
class hr_contract(osv.osv):
_inherit = 'hr.contract'
_description = 'Employee Contract'
_columns = {
'analytic_account_id':fields.many2one('account.analytic.account', 'Analytic Account'),
'journal_id': fields.many2one('account.journal', 'Journal'),
'journal_id': fields.many2one('account.journal', 'Salary Journal'),
}
hr_contract()