From 3a008e900f7684843f7bc07109d484f77939e4c7 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Thu, 6 Jul 2023 13:21:08 +0700 Subject: Add airway bill manifest model --- indoteknik_custom/models/airway_bill_manifest.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 indoteknik_custom/models/airway_bill_manifest.py diff --git a/indoteknik_custom/models/airway_bill_manifest.py b/indoteknik_custom/models/airway_bill_manifest.py new file mode 100644 index 00000000..29a76303 --- /dev/null +++ b/indoteknik_custom/models/airway_bill_manifest.py @@ -0,0 +1,11 @@ +from odoo import models, fields + + +class AirwayBillManifest(models.Model): + _name = 'airway.bill.manifest' + + waybill_id = fields.Many2one('airway.bill') + code = fields.Char('Code') + description = fields.Char('Description') + datetime = fields.Datetime('Datetime') + city = fields.Char('city') \ No newline at end of file -- cgit v1.2.3