我想显示如下数据:
No | Code | Brand | Cost
------------------------
1 | 201 | |
------------------------
| | A | 200
| | B | 350
------------------------
2 | 202 | |
------------------------
| | C | 100
| | D | 110
这是我在py和xml中的代码:
py代码:
report=self.env['report']
document=self._get_pos_report_one(data)
docss=self._get_pos_report_two(data)
ctx=self._context.copy()
object=self.env['report.wizard'].browse([ctx['active_id']])
data={'o':object,
'docs':document,
'docss':docss}
return report.render('report.report_sales', data)
<tr t-foreach="docs" t-as="row" class="line_bottom line_top pb_font_10 text_bold">
<td class="pb_text_center line_left">
<t t-set="num" t-value="num + 1"/>
<t t-esc="num"/>
</td>
<td class="pb_text_left line_left">
<span t-esc="row['code']"/>
</td>
<tr t-foreach="docss" t-as="row_detail" class="pb_font_10">
<td class="pb_text_center line_left">
</td>
<td class="pb_text_left line_left">
</td>
<td class="pb_text_left line_left">
<span t-esc="row_detail['brand']"/>
</td>
<td class="pb_text_left line_left">
<span t-esc="row_detail['cost']"/>
</td>
</tr>
</tr>
这是我的代码(py和xml)的当前结果:
No | Code | Brand | Cost
------------------------
1 | 201 | |
------------------------
| | A | 200
| | B | 350
| | C | 100
| | D | 110
------------------------
2 | 202 | |
------------------------
| | A | 200
| | B | 350
| | C | 100
| | D | 110
我试过代码
-docss。代码等等。
希望有人能帮助我。
谢谢你!