summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-07-06 13:21:08 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-07-06 13:21:08 +0700
commit3a008e900f7684843f7bc07109d484f77939e4c7 (patch)
treeabb1fee13e2dcb21ff6ebf4be4839178e034704f
parent3b246a800c9bec73300b8b0f75d4b84c5aa1ffec (diff)
Add airway bill manifest model
-rw-r--r--indoteknik_custom/models/airway_bill_manifest.py11
1 files changed, 11 insertions, 0 deletions
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