콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
5 답글
17378 화면

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

아바타
취소
베스트 답변

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 (";").

아바타
취소
베스트 답변

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

아바타
취소
베스트 답변

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

This link will help for cancel the payslip for an employee 

아바타
취소
베스트 답변

Any other answer ???

아바타
취소
베스트 답변

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

아바타
취소
작성자

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

관련 게시물 답글 화면 활동
5
7월 20
10987
1
3월 15
6287
1
3월 15
5848
1
3월 15
6621
1
3월 16
32955