我需要检查两个条件,并在报告上打印详细信息。但是问题是我无法返回这两个变量。我将提交代码,并在下面提及更多内容。
TaxDetailReport(classs.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')
我需要返回那些product_ids
和record_ids
。 generate_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)
上面提到的是主要类,需要从这里获取详细信息。
有什么解决办法吗?希望有人能帮忙。
答案 0 :(得分:1)
我不太清楚您的问题,但是如果您要在一个函数中返回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}
答案 1 :(得分:1)
据我了解,您想在报表中显示此数据。
因此,您需要了解报告中可以帮助您的内容。
您可以像在python代码中一样,在t-esc
或t-set
中调用方法。
所以可以说我想在报表中显示一个复杂的值,所以我要做的是:
我创建了一个只计算并返回要打印的值的方法。
@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
,依此类推。
希望你有主意