Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[17.0][FIX] purchase_request: changes in report layout #2250

Merged
merged 1 commit into from
May 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions purchase_request/reports/report_purchase_request.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,42 +13,44 @@
<span t-field="o.name" />
</h2>
<div class="row mt32 mb32">
<div class="col-auto">
<div class="col-2">
<strong>Request Reference:</strong>
<br />
<span t-field="o.name" />
</div>
<div class="col-auto">
<div class="col-2">
<strong>Creation Date:</strong>
<br />
<span t-field="o.date_start" />
</div>
<div class="col-auto">
<div class="col-2">
<strong>Source:</strong>
<br />
<span t-field="o.origin" />
</div>
<div class="col-auto">
<strong>Description:</strong>
<br />
<span t-field="o.description" />
</div>
<div class="col-auto">
<div class="col-2">
<strong>Requested by:</strong>
<br />
<span t-field="o.requested_by" />
</div>
<div class="col-auto">
<div class="col-2">
<strong>Assigned to:</strong>
<br />
<span t-field="o.assigned_to" />
</div>
<div class="col-auto">
<div class="col-2">
<strong>Picking Type:</strong>
<br />
<span t-field="o.picking_type_id" />
</div>
</div>
<div class="row mt32 mb32">
<div class="col-12">
<strong>Description:</strong>
<br />
<span t-field="o.description" />
</div>
</div>
<t t-if="o.line_ids">
<h3>Products</h3>
<table class="table table-condensed">
Expand Down
Loading