Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
2281 Lượt xem

I need the invoice looks a bit differente, i need customize

can i, if so how?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hello,

You can customize code of invoice. You need to create your own module.

If you want to add any column then in .py file add following:

class account_invoice(osv.osv):
    _inherit = 'account.invoice'

    _columns = {
       #Fields you want to add
    }

#Function for your calculated columns(If needed)

account_invoice()

In .xml file inherit proper view according to your need. You can view many examples to inherit view in addons.

Thanks.

Ảnh đại diện
Huỷ bỏ