GoodERP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
594B

  1. from odoo import models, fields, api
  2. class SaveBomMemory(models.TransientModel):
  3. _name = 'save.bom.memory'
  4. _description = '另存为新的物料清单'
  5. name = fields.Char('物料清单名称')
  6. company_id = fields.Many2one(
  7. 'res.company',
  8. string='公司',
  9. change_default=True,
  10. default=lambda self: self.env.company)
  11. def save_bom(self):
  12. for bom in self:
  13. models = self.env[self.env.context.get('active_model')].browse(
  14. self.env.context.get('active_ids'))
  15. return models.save_bom(bom.name)
上海开阖软件有限公司 沪ICP备12045867号-1