diff options
| -rw-r--r-- | indoteknik_custom/models/airway_bill_manifest.py | 11 |
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 |
