Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Salary calculation on the basis of hours the employees worked

Odebírat

Get notified when there's activity on this post

This question has been flagged
2 Odpovědi
12518 Zobrazení
Avatar
Victor Cardozo

Hello, 


I am trying to set up the payroll app to make all the calculations automatically for employees whose salary is in a $/hour basis. problem is, I cant find the right python expressions for it to work (I am using the enterprise and I do not have access to the py file) therefore, I can only change in the payroll app and all I am giving is the following: 



                    # Available variables:

                    #----------------------

                    # payslip: object containing the payslips

                    # employee: hr.employee object

                    # contract: hr.contract object

                    # rules: object containing the rules code (previously computed)

                    # categories: object containing the computed salary rule categories (sum of amount of all rules belonging to that category).

                    # worked_days: object containing the computed worked days.

                    # inputs: object containing the computed inputs.


                    # Note: returned value have to be set in the variable 'result'


                    result = ___________________________


What would need to be written in the blank above so the system can multiply the worked hours times the salary?


Thank you very much! 

2
Avatar
Zrušit
Avatar
Paresh Wagh
Nejlepší odpověď

Hi Victor:

Try this.

result = contract.hourly_wage * worked_days.WORK100.number_of_hours

NOTE: WORK100 refers to the Attendance object.

You may also want to see how the Worker Pay Salary Rule is set up in the demo data. It provides an example of how to set up a payslip for an hourly worker.

1
Avatar
Zrušit
Victor Cardozo
Autor

Thank you very much! this was super helpful!

Victor Cardozo
Autor

I have another question and after looking at the demo I couldn't find it anywhere.

If I have a contract with an employee where he earns 5$/hour up to 40 hours a week. But then, 7$/hour after the 40th hour. How could I make that command?

Ex.

the employee worked 46 hours this week

I'd like the command to perform the following equation = (46hrs - 40 hrs) 8 7$/ hr = 42$

Thank you!

Paresh Wagh

There are different ways to do this.

If you are able to capture the hours separately as regular hours and extra hours, you could create a Work Entry type called "Extra Hours" that you could use in your calculations. However, you may need to do a customization to capture the additional rate for the extra hours in the Contract or use one of the input types to specify it in the Payslip.

The other way would be to adjust your formula to apply the extra rate in the formula itself. I wouldn't recommend this option since it would lead to hard coding unless you have a standard overtime rate like a percentage that applies to all hourly employees/contractors.

Victor Cardozo
Autor

That is my problem precisely, I cant find a way to separate extra hours from regular hours. the contract is giving me only the option to add the base salary, nothing more. I was thinking about using "if functions" in python expressions but couldnt find the right command (if there is one)

Victor Cardozo
Autor

I managed to add different Extra hours for my payroll by defining them as different work entries and using the same equation you showed me in your answer (thanks by the way) However, in my company, I have different kinds of Extra hour rates (night shift, Day shift, sunday shift and so on...) and I am adding them all to my payroll structure.

Since I have them as "Condition always true" when I run a payslip with no Extra hours gives me an error since that condition cant be met

How could I write a python expression that applies the Extra hours rules "IF" there is extra hours in the payslip?

is there a python expression I could use in the conditions to make this work?

Thank you very much!

Paresh Wagh

Please post a screenshot of how you have currently defined the calculation for the extra hours. You can upload the screenshot to one of the image sharing sites like imgur and post the link here.

Victor Cardozo
Autor

Sure! https://imgur.com/gallery/JhM9suz

Victor Cardozo
Autor

forgot to say in the previous comment. HED100 (Extra Hour for Daytime) is the name for a work entry which Im using to compute the extra hours!

Avatar
Emilio San Jose
Nejlepší odpověď

Just want to add that the Attendance object in version 14 seems to be "WORK" and not "WORK100"

0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Přihlásit se
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now