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