diff options
Diffstat (limited to 'indoteknik_custom/models/po_sync_price.py')
| -rw-r--r-- | indoteknik_custom/models/po_sync_price.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/indoteknik_custom/models/po_sync_price.py b/indoteknik_custom/models/po_sync_price.py new file mode 100644 index 00000000..3e0ef621 --- /dev/null +++ b/indoteknik_custom/models/po_sync_price.py @@ -0,0 +1,14 @@ +from odoo import fields, models, api + + +class POSyncPrice(models.Model): + _name = "po.sync.price" + _description = "PO Sync Price" + + order_line_id = fields.Many2one('purchase.order.line', string='Purchase Order') + # purchase_order_id = fields.Many2one('purchase.order', string='Purchase Order') + # product_variant_id = fields.Many2one('product.product', string='Product Variant') + # manufacture_id = fields.Many2one('x_manufactures',string="Brand") + # unit_price = fields.Float(string="Unit Price") + # vendor_price = fields.Float(string="Vendor Price") + # created = fields.Datetime(string="Create Date")
\ No newline at end of file |
