mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
12 lines
320 B
Plaintext
12 lines
320 B
Plaintext
<% if @customer.present? %>
|
|
|
|
<% @customer.invoices.order(doc_number: :desc).each do |invoice| %>
|
|
<div class="row">
|
|
<b><%= link_to "##{invoice.doc_number}", invoice_path(invoice), target: :_blank %></b> <%= invoice.txn_date %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% else %>
|
|
<p><%=t(:label_no_invoices)%>.</p>
|
|
<% end %>
|