我正在使用 OpenERP 的工资模块,并因以下错误而生气。

这是我尝试过的:

  • 在休假类型中创建无薪休假并选择工资主管“LOP”并为相同的
  • 创建分析帐户
  • 一名员工从“休假申请部门”申请无薪休假
  • 在计算该员工的工资单时,会计算并在工资单中显示休假和休假扣除额。

  • 但是当我尝试批准工资单时,我收到错误消息:
    ProgrammingError: operator does not exist: integer = boolean
    LINE 1: ...d FROM "account_account" WHERE account_account.id IN (false)...
                                                                 ^
    HINT:  No operator matches the given name and argument type(s). You might need to add explicit type casts.
    

    仅当我在“休假类型”部分选择“无薪”休假时才会发生这种情况。

    最佳答案

    最后我找到了问题的解决方案..

    当 LOP 对应的帐户作为 False 输入到 db 时出现问题。

    要解决此问题,只需为 General Account 行中的 LOP 选择一个 salary structure Payslip 的 ojit_code 选项卡。

    关于python - OpenERP工资部分的休假扣除,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9532181/

    10-12 20:10