我想为Product Master创建一个单独的视图。我创建了一个新模型并尝试了这样。但是当我在database
中检查时,我的新模型中没有数据。
码
class QuotationCreation(models.Model):
_name='quotation.creation'
xn_product_id = fields.Many2one('product.template')
product=fields.Char(related = 'xn_product_id.name',string='Product')
如何将产品主数据中的所有数据传输到此模型。我想用现有数据创建一个新模型。我该怎么做?提前致谢