Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
5 Odpowiedzi
17069 Widoki

How can I delete or cancel a confirmed PaySlip (hr.payslip) in Openerp? There is no Cancel Option in Menus

Awatar
Odrzuć
Najlepsza odpowiedź

One workaround is:

  1. connect to your server
  2. change into postgres user sudo su - postgres
  3. open psql terminal with your database (psql [database name])
  4. write sql command:

    update hr_payslip set state = 'draft';

that sets all the existing payslips into draft after that you can delete them. If you don't want to set all the payslips into draft you can add there condition:

where id=[id of the payslip you want to set into draft]

This condition has to be put before semicolon (";").

Awatar
Odrzuć
Najlepsza odpowiedź

I am trying to delete the payslip but it says you can only refund. Not sure if the mass_editing work or not.

Awatar
Odrzuć
Najlepsza odpowiedź

https://apps.openerp.com/apps/modules/8.0/hr_payroll_cancel

This link will help for cancel the payslip for an employee 

Awatar
Odrzuć
Najlepsza odpowiedź

Any other answer ???

Awatar
Odrzuć
Najlepsza odpowiedź

You can not delete the payslip, you can only refund it.

Awatar
Odrzuć
Autor

Well you can, if you get mass_editing http://v6apps.openerp.com/addon/8139 module got working in OE 7

Powiązane posty Odpowiedzi Widoki Czynność
5
lip 20
10672
1
mar 15
6033
1
mar 15
5579
1
mar 15
6305
1
mar 16
32649