Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Salary calculation on the basis of hours the employees worked

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
2 Odpowiedzi
12519 Widoki
Awatar
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
Awatar
Odrzuć
Awatar
Paresh Wagh
Najlepsza odpowiedź

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
Awatar
Odrzuć
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!

Awatar
Emilio San Jose
Najlepsza odpowiedź

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

0
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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