Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

Update the automatically generated payslip name

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
serverpaysliponchangepayrollodoo13
1 Balas
4968 Tampilan
Avatar
Wale

Hello, I have been stuck trying to update the payslip name generated when the employee is changed;

This is my code:

    def onchange_employee_id(self, date_from, date_to, employee_id=False, contract_id=False):


        # defaults

        res = {

            'value': {

                'line_ids': [],

                # delete old input lines

                'input_line_ids': [(2, x,) for x in self.input_line_ids.ids],

                # delete old worked days lines

                'worked_days_line_ids': [(2, x,) for x in self.worked_days_line_ids.ids],

                # 'details_by_salary_head':[], TODO put me back

                'name': '',

                'contract_id': False,

                'struct_id': False,

            }

        }

        if (not employee_id) or (not date_from) or (not date_to):

            return res

        ttyme = datetime.combine(fields.Date.from_string(date_from), time.max)

        employee = self.env['hr.employee'].browse(employee_id)

        locale = self.env.context.get('lang') or 'en_US'

        res['value'].update({

            'name': _('Pay Slip of %s for %s') % (

            employee.name, tools.ustr(babel.dates.format_date(date=ttyme, format='MMMM-y', locale=locale))),

            'company_id': employee.company_id.id,

        })


        if not self.env.context.get('contract'):

            # fill with the first contract of the employee

            contract_ids = self.get_contract(employee, date_from, date_to)

        else:

            if contract_id:

                # set the list of contract for which the input have to be filled

                contract_ids = [contract_id]

            else:

                # if we don't give the contract, then the input to fill should be for all current contracts of the employee

                contract_ids = self.get_contract(employee, date_from, date_to)


        if not contract_ids:

            return res

        contract = self.env['hr.contract'].browse(contract_ids[0])

        res['value'].update({

            'contract_id': contract.id

        })

        struct = contract.struct_id

        if not struct:

            return res

        res['value'].update({

            'struct_id': struct.id,

        })

        # computation of the salary input

        contracts = self.env['hr.contract'].browse(contract_ids)

        worked_days_line_ids = self.get_worked_day_lines(contracts, date_from, date_to)

        input_line_ids = self.get_inputs(contracts, date_from, date_to)

        res['value'].update({

            'worked_days_line_ids': worked_days_line_ids,

            'input_line_ids': input_line_ids,

        })

        return res

>> I changed the original payslip name and the time function but still, nothing changes

0
Avatar
Buang
Wale
Penulis

Hello Sudir, thanks for the response. Any edit on the code doesn't seem to change anything on the payslip so I am beginning to think the file I am editing is the wrong file.

This is the location of the file I am editing - /odoo/custom/addons/hr_payroll_community/models/hr_payslip.py

Avatar
Sudhir Arya (ERP Harbor Consulting Services)
Jawaban Terbai

 Try the following code:

#OCA (if you are using OCA payroll module)

@api.onchange("employee_id", "date_from", "date_to")
def onchange_employee(self):
super(YourClassName, self)._onchange_employee()
if (not self.employee_id) or (not self.date_from) or (not self.date_to):
return
self.name = _('Pay Slip of %s for %s') % (employee.name, tools.ustr(babel.dates.format_date(date=ttyme, format='MMMM-y', locale=locale)))

#Enterprise (if you are using enterprise module)

@api.onchange('employee_id', 'struct_id', 'contract_id', 'date_from', 'date_to')
def _onchange_employee(self):
super(YourClassName, self)._onchange_employee()
if (not self.employee_id) or (not self.date_from) or (not self.date_to):
return
self.name = _('Pay Slip of %s for %s') % (employee.name, tools.ustr(babel.dates.format_date(date=ttyme, format='MMMM-y', locale=locale)))


4
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Calculate total Business days within a given date range on payslip - CE V13
payslip salary_rules WORK100 payrollodoo13
Avatar
Avatar
2
Jul 20
6258
V10 Passing One2Many values into Transient Model One2Many (TypeError from onchange & DataError from default)
one2many payslip onchange passing transientmodel
Avatar
0
Apr 20
5682
HostNoc as My Go-To Server Provider – Sharing My Experience
server
Avatar
0
Jun 25
2
How can I get the number of days of the period in Payslip
payslip
Avatar
0
Des 23
1824
trying to auto correct a wrong users value
onchange
Avatar
Avatar
1
Okt 23
2887
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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