Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
3901 Näkymät

I did some changes one of the method on accounting report in OpenERP. My problem now is how can i make some item invisible or delete? In particular, I want to hide the "Liability" and its balance on the report.

I tried something like this on get_lines method:


     for report in lines:

          if report["name"].lower().replace(" ","") == 'liability':

                 del report["name"]

                 del report["balance"]


but when i tried to generate Balance sheet report. It says:

(<type 'exceptions.KeyError'>,KeyError('name',), <traceback object at 0x7f6c4c2903f8>)

Any help is much appreciated.

Avatar
Hylkää
Tekijä

This might not be the best solution or it might the wierd solution, but this is what i did. Instead of trying to delete report["name"] and report["balance"], i just assign a white space on it that is: report["name"] = " " and report["balance"] = " ", this time Liability and its balance is no longer shown on the report.

Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
0
heinäk. 25
509
2
helmik. 23
1923
2
kesäk. 16
5786
0
kesäk. 25
487
0
lokak. 24
1307