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