Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Calculate total Business days within a given date range on payslip - CE V13

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
payslipsalary_rulesWORK100payrollodoo13
2 Antwoorden
6247 Weergaven
Avatar
Michael

Hi, I want to generate the total business days within a given date range(payslip.date_from and payslip.date_to) and use it for calculation of basic salary on payslip. I want to compare total business days(no_of_days) with WORK100.number_of_days(which is manually entered on payslip) and calculate the basic salary(contract.wage)


Below is the logic:

if no_of_days = worked_days.WORK100.number_of_days

result = contract.wage

elif no_of_days> worked_days.WORK100.number_of_days

result = ((contract.wage / 22) * (22 - (no_of_days- actual_days)))


*WHERE "no_of_days" is the total business days within a given date range (payslip.date_from and payslip.date_to)

Thank you in advance

1
Avatar
Annuleer
Avatar
Paresh Wagh
Beste antwoord

Hi Michael:

It looks like you want to define a "daily wage" which is currently not provided in the system. You can add a custom field on the Contract to capture the daily wage rate and use the custom field in your Salary Rule. Once you add the custom field the rule will be like so.

For example, if the custom field is called x_daily_wage, the rule will be

result = contract.x_daily_wage * worked_days.WORK100.number_of_days
0
Avatar
Annuleer
Michael
Auteur

Thanks for the response. What I really want is to calculate the number of business within any given date range on the payslip (payslip.date_from and payslip.date_to).In my case, Actual days worked / Total attendance (WORK100) for any employee will be entered manually. I need to compare that number with total business days within "payslip.date_from" and "payslip.date_to" to generate an accurate BASIC

Paresh Wagh

Hi Michael: Can you elaborate on what you mean by "Actual days worked / Total attendance (WORK100) for any employee will be entered manually" ? For example, which variable is being used to capture this information in the payslip ?

Avatar
Michael
Auteur Beste antwoord

I found this code in the forum to generate the total business days but i always get an error when I run it.

########

datej = str (payslip.date_to)

datek = str (payslip.date_from)

dj = datej [-2:]

x = 0

new = 0

while (x <= 31):

x = x + 1

if str (x) == dj or "0" + str (x) == dj:

new = x

dk = datek [-2:]

y = 0

old = 0

while (y <= 31):

y = y + 1

if str (y) == dk or "0" + str (y) == dk:

old = y

no_of_days = new-old + 1

###### 


if no_of_days = worked_days.WORK100.number_of_days

result = contract.wage

elif no_of_days> worked_days.WORK100.number_of_days

result = ((contract.wage / 22) * (22 - (no_of_days- actual_days)))

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Call a function in salary rules payslip
payslip salary_rules
Avatar
0
nov. 16
5352
Update the automatically generated payslip name Opgelost
server payslip onchange payrollodoo13
Avatar
Avatar
1
dec. 22
4963
How can I add 2 payslips on Odoo 14?
payroll payslip salary_rules v14
Avatar
0
mrt. 22
3235
i want to add salary rule for overtime in payslip
payslip overtime salary_rules odoo
Avatar
Avatar
Avatar
2
apr. 18
6838
How To Calculate Payslip Calculation without using Salary Structure?
payroll payslip salary_rules odoo
Avatar
0
jun. 17
4067
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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