から継承された売上請求書に追加のフィールドを追加したいと考えていaccount.invoice
ます。具体的には、delivery_date
各請求書の項目にフィールドを追加したいと考えています。
from odoo import api, fields, models, _
from odoo.exceptions import ValidationError
from datetime import date
class ReadyMixSalesInvoice(models.Model):
_inherit = 'account.invoice'
_name = 'account.invoice'
delivery_date = fields.Datetime(string='Delivery Date', required=True, readonly=True, index=True,
states={'draft': [('readonly', False)], 'sent': [('readonly', False)]},
help='Item delivery date.')
@api.constrains('delivery_date')
def _delivery_date_check(self):
for record in self:
if record.delivery_date and record.delivery_date.split(' ', 1)[0] < str(date.today()):
raise ValidationError(_("Delivery Date must be after current date."))
XML は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="invoice_form_inherit_sale_ready_mix" model="ir.ui.view">
<field name="name">account.invoice.form.readymix</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_form"/>
<field name="arch" type="xml">
<data>
<xpath expr="//field[@name='price_unit']" position="after">
<field name="delivery_date"/>
</xpath>
<xpath expr="//tree/field[@name='price_unit']" position="after">
<field name="delivery_date"/>
</xpath>
</data>
</field>
</record>
</odoo>