payroll module for middle east countires

Asked by Bushair

Hi,
Is there is anyway that i can do the salary for middle east countries where there is no tax

Question information

Language:
English Edit question
Status:
Answered
For:
Odoo Addons (MOVED TO GITHUB) Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
Vinay Rana (OpenERP) (vra-openerp) said :
#1

Hello,

Payroll module is under process in following related branch :
https://code.launchpad.net/~openerp-community/+junk/payroll

it is under development so When it will be completed then it will be merge.

Thanks.

Revision history for this message
Bushair (bushairka) said :
#2

Hi,
Can you please tell me when will this be merged?
i mean approximate date?

Revision history for this message
Jay Vora (Serpent Consulting Services) (jayvora) said :
#3

Hello Bushair,

You may look upon this branch and the module hr_payroll.

https://code.launchpad.net/~openerp-commiter/openobject-addons/trunk-extra-addons.

It is made for the generic processes.

Thank you.

Revision history for this message
Mantavya Gajjar (Open ERP) (mga) said :
#4

Hello,

Take the payroll module from https://code.launchpad.net/~openerp-commiter/openobject-addons/trunk-extra-addons.

now this is integrated with the
Contract
Holiday Module
HR Expanse

Revision history for this message
Riza Kurniawan (rizabisnis) said :
#5

Hello,
I've install hr_payroll to my openerp 5.0.x, but I've got error message when I try to configure "Allowance/Deduction Heads". summary of error message is:
ProgrammingError: column hr_allounce_deduction_categoty.state does not exist
LINE 1: ...y.id from "hr_allounce_deduction_categoty" where (hr_allounc...

so.. what must I do to fix this problem
Thank's

Revision history for this message
Vinay Rana (OpenERP) (vra-openerp) said :
#6

Hello,

When did you get this error, means did you change some thing in head allowance or create new ?
Can you provide me example what you had used to reproduce this error?

Because from my side i can not reproduce this.

Thanks.

Revision history for this message
oogii (orkhon) said :
#7

Hello,

I was installing hr_payroll module to my openerp 5.0.7, but I've got error message
ValidateError message.
Error message is: The value "per" for the field "amount_type" is not in the selection

so.. what must I do to fix this problem
Thank's

Revision history for this message
Vinay Rana (OpenERP) (vra-openerp) said :
#8

Hello,

The problem will be solved by applying the following patch:

=== modified file 'hr_payroll/hr_payroll.py'
--- hr_payroll/hr_payroll.py 2010-02-18 10:55:27 +0000
+++ hr_payroll/hr_payroll.py 2010-03-23 06:10:48 +0000
@@ -527,7 +527,7 @@
                'state':fields.char('Label', size=64, required=False, readonly=False),
         'company_id':fields.many2one('res.company', 'Company', required=False),
         'amount_type':fields.selection([
-# ('per','Percentage (%)'),
+ ('per','Percentage (%)'),
             ('fix','Fixed Amount'),
             ('func','Function Calculation'),
         ],'Amount Type', select=True),

Hope this will help you.
Thanks.

Revision history for this message
oogii (orkhon) said :
#9

Thank you vra for reply me.

I fixed previous ValidateError message error. But i nave got new error when i was installing hr_payroll module.
Error message is:

Environment Information :
System : Windows-XP-5.1.2600-SP2
OS Name : nt
Operating System Release : XP
Operating System Version : 5.1.2600
Operating System Architecture : 32bit
Operating System Locale : en_US.cp1252
Python Version : 2.5.2
OpenERP-Client Version : 5.0.7
Last revision No. & ID :Bazaar Package not Found !Traceback (most recent call last):
  File "C:\OpenERP\server\bin\netsvc.py", line 244, in dispatch
    result = LocalService(service_name)(method, *params)
  File "C:\OpenERP\server\bin\netsvc.py", line 73, in __call__
    return getattr(self, method)(*params)
  File "C:\OpenERP\server\bin\service\web_services.py", line 632, in execute
    return self._execute(db, uid, wiz_id, datas, action, context)
  File "C:\OpenERP\server\bin\service\web_services.py", line 612, in _execute
    return wiz.execute(db, uid, self.wiz_datas[wiz_id], action, context)
  File "C:\OpenERP\server\bin\wizard\__init__.py", line 178, in execute
    res = self.execute_cr(cr, uid, data, state, context)
  File "C:\OpenERP\server\bin\wizard\__init__.py", line 73, in execute_cr
    action_res = action(self, cr, uid, data, context)
  File "C:\OpenERP\server\bin\addons\base\module\wizard\wizard_module_upgrade.py", line 92, in _upgrade_module
    db, pool = pooler.restart_pool(cr.dbname, update_module=True)
  File "C:\OpenERP\server\bin\pooler.py", line 62, in restart_pool
    return get_db_and_pool(db_name, force_demo, status, update_module=update_module)
  File "C:\OpenERP\server\bin\pooler.py", line 40, in get_db_and_pool
    addons.load_modules(db, force_demo, status, update_module)
  File "C:\OpenERP\server\bin\addons\__init__.py", line 740, in load_modules
    r = load_module_graph(cr, graph, status, report=report)
  File "C:\OpenERP\server\bin\addons\__init__.py", line 642, in load_module_graph
    tools.convert_xml_import(cr, m, fp, idref, mode=mode, noupdate=True, **kwargs)
  File "C:\OpenERP\server\bin\tools\convert.py", line 873, in convert_xml_import
    obj.parse(doc.getroot())
  File "C:\OpenERP\server\bin\tools\convert.py", line 770, in parse
    self._tags[rec.tag](self.cr, rec, n)
  File "C:\OpenERP\server\bin\tools\convert.py", line 742, in _tag_record
    id = self.pool.get('ir.model.data')._update(cr, self.uid, rec_model, self.module, res, rec_id or False, not self.isnoupdate(data_node), noupdate=self.isnoupdate(data_node), mode=self.mode )
  File "C:\OpenERP\server\bin\addons\base\ir\ir_model.py", line 515, in _update
    res_id = model_obj.create(cr, uid, values, context=context)
  File "C:\OpenERP\server\bin\addons\account\project\project.py", line 236, in create
    return super(account_analytic_account, self).create(cr, uid, vals, context=context)
  File "C:\OpenERP\server\bin\osv\orm.py", line 2863, in create
    self.pool.get(object)._store_set_values(cr, user, ids, fields2, context)
  File "C:\OpenERP\server\bin\osv\orm.py", line 2910, in _store_set_values
    if self._columns[f]._multi not in keys:
KeyError: 'currency_id'

so.. what must I do to fix this problem
Thank's

Revision history for this message
Vinay Rana (OpenERP) (vra-openerp) said :
#10

Hello,

Can you provide me module list you did install in your database?
I am not able to reproduce it my end.
Are you using latest code of stable server and addons?

Thanks.

Revision history for this message
oogii (orkhon) said :
#11

Hello,
I removed some unnecessary module such as analytic then I successfully installed hr_payroll module.

Thanks.

Can you help with this problem?

Provide an answer of your own, or ask Bushair for more information if necessary.

To post a message you must log in.