アカウントの請求書フォームに両方の列を表示しようとしました:
請求明細行の合計、税抜き
請求明細行の合計、税込み。
税対象を商品価格に含めるか除外するかを設定できることは知っていますが、請求書フォームで両方を表示する方法がわかりません。
私はすでに次のようにaccount.invoice.lineを拡張しました:
from openerp import api, models, fields
import openerp.addons.decimal_precision as dp
class cap_account_invoice_line(models.Model):
_inherit = 'account.invoice.line'
price_with_tax = fields.Float(string='Prix TTC', digits= dp.get_precision('Product Price'), store=True, readonly=True,)
"""
@api.multi
def button_reset_taxes(self):
#I guess I should override this method but i don't know how
#to calculate and load the total line with included tax
#into the field 'price_with_tax'
"""
よろしくお願いいたします。
ビクター