summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/stock_vendor.py
blob: 78baf14c9fd62d5fa20d434ba03f6144f0b403bd (plain)
1
2
3
4
5
6
7
8
9
10
from odoo import fields, models


class StockVendor(models.Model):
    _name = "stock.vendor"
    _description = "Stock Vendor"
    _rec_name = "product_variant_id"

    product_variant_id = fields.Many2one("product.product", string="Product Variant")
    quantity = fields.Integer(string="Quantity")