diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2023-08-23 11:59:53 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2023-08-23 11:59:53 +0700 |
| commit | a4352ddc19c392e0ed5f30d350ce928d98f5b6e2 (patch) | |
| tree | 17d1efdf0c3a46f5db06ed469275963275a7496c /indoteknik_custom/models/po_sync_price.py | |
| parent | 40b3ae941bce5c822d7297c8ccfc1c752409e21c (diff) | |
mail po & note
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 |
