我如何 return Odoo 中的两个变量?

How can I return two variables in Odoo?

我需要检查两个条件并在报告上打印详细信息。但问题是我无法 return 这两个变量。我将提交代码并在下面提及更多。

class 税务详情报告(models.TransientModel): _name = 'tax.detail.report'

start_date = fields.Datetime(required=True)
end_date = fields.Datetime(required=True)
vat_oman_id = fields.Many2one('vat.oman.import', string="VAT Oman ID")

@api.multi
def generate_report(self):
    for file in self:
        if file.start_date and file.end_date:
            record_ids = self.env['vat.oman.import'].search([('date', '>=', self.start_date),
                                                             ('date', '<=', self.end_date),
                                                             ('account_tax_id.type_tax_use', '=', 'sale')
                                                             ])
            purchase_ids = self.env['vat.oman.import'].search([('date', '>=', self.start_date),
                                                             ('date', '<=', self.end_date),
                                                             ('account_tax_id.type_tax_use', '=', 'purchase')
                                                             ])
        else:
            raise UserError("Record does not exist")

        result['file'] = {'print': [(record_ids,purchase_ids)]}
    return self.env["report"].get_action(result, 'kg_oman_vat.report_tax_details')

我需要 return 那些 product_idsrecord_idsgenerate_report 是向导中的按钮。

class VATOmanImport(models.Model):
    _name = 'vat.oman.import'
    _rec_name = 'partner_id'
    _description = 'Oman VAT Import'

    partner_id = fields.Many2one('res.partner', string="Name", required=True)
    invoice_desc = fields.Char(string="Description", help="Invoice Description")
    date = fields.Date(string="Date")
    account_tax_id = fields.Many2one('account.tax', string="Tax Type")
    state_id = fields.Many2one('res.country.state', string="State", required=True,
                               domain="[('country_id', '=','Oman')]")
    invoice_amount = fields.Float(string="Invoice Amount", required=True)
    tax_amount = fields.Float(string="Total Tax", compute='_compute_tax_amount')
    company_id = fields.Many2one('res.company', string='Company', index=True,
                                 default=lambda self: self.env.user.company_id)

以上只是主要的class,需要从这里获取详细信息。

有什么解决办法吗?希望有人能帮忙。

我不能很好地理解你的问题,但是如果你想 return 一个函数中有 2 个参数,你有 2 个选择。

1.

def function_name():
  a=1
  b=2
  return a,b

2.

def function_name():
      a=1
      b=2
      return {a':a,'b':b}

据我了解,您想在报告中显示这些数据。

所以您需要了解报告中的一些内容,以帮助您。

您可以在 t-esct-set 中调用方法,就像在 python 代码中一样。

假设我想在我的报告中显示一个复杂的值,那么我所做的是:

我创建了一个方法来计算 return 我想要打印的值。

  @api.multi
  def calculate_complicated_value(self):
       .....
       .....
       .....
       return value

并且在我的模板中,我可以调用此方法并打印 value

  <t t-foreach="docs" t-as="rec">

      <!-- I prefer always to save it in a variable first -->
      <t t-set='result'  t-value='rec.calculate_complicated_value()'/>
      <!-- And here I can loop on my result or handle anything the method call returns -->

我更喜欢这种技术,而不是像 Odoo 开发人员在标准模块中那样在我的 get_action 调用中传递数据。

您可以看到如何将数据传递到您的报告模板并向他们展示您需要创建额外的 AbstractModel 并且名称必须以 report.

开头

在你的情况下,你可以尝试这个解决方案:

     _name = 'tax.detail.report'

     @api.multi
     def generate_report(self):
                                 # in report docs = self
     return return self.env["report"].get_action(self, 'kg_oman_vat.report_tax_details')


     @api.multi
     def compute_purschaces(self):
            # i don't think you need to loop here because you are calling
            # the method with one record in the report
            # you can refactor it later if you want
            for file in self:
                if file.start_date and file.end_date:
                    record_ids = self.env['vat.oman.import'].search([('date', '>=', self.start_date),
                                                                     ('date', '<=', self.end_date),
                                                                     ('account_tax_id.type_tax_use', '=', 'sale')
                                                                     ])
                    purchase_ids = self.env['vat.oman.import'].search([('date', '>=', self.start_date),
                                                                     ('date', '<=', self.end_date),
                                                                     ('account_tax_id.type_tax_use', '=', 'purchase')
                                                                     ])
                    return {'record_ids': record_ids, 'purchase_ids': purchase_ids}
                else:
                    # raising error from report calls is not a good thing the message will look ugly ^^
                    # try to add this check in generate_report so the message look nice for your user
                    raise UserError("Record does not exist")
            return False    

在你的模板中

           <t t-foreach="docs" t-as="rec">

               <t t-set="result" t-value="rec.compute_purschaces()"/>

               <!-- now if you want to show record_ids in table or something you can access like this result['record_ids'] -->
               <t t-foreach="result['record_ids']" t-as="record">
                    ........
                    .......

在你报告的动作中模型应该是:'tax.detail.report'

  <report
    ...
    ...
    model="tax.detail.report"
   .....
   .....
   ./>

我就是这样做的,它比将额外的参数 data 传递给 get_action 调用并创建那个特殊的 AbstractModel 更容易 在数据进入模板之前处理数据以确保 docs 设置正确等等。 希望你明白了