mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2026-02-13 17:13:59 -05:00
Compare commits
4 Commits
35e303d54b
...
a741cd0217
| Author | SHA1 | Date | |
|---|---|---|---|
| a741cd0217 | |||
| b096244454 | |||
| 4983cd661c | |||
| 5f6fb4af27 |
@@ -93,6 +93,7 @@ To enable automatic Time Activity entries for an Issue, you simply need to assig
|
|||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
* Separate Vehicles into a separate plugin (I use Redmine for my automotive shop management 😉)
|
* Separate Vehicles into a separate plugin (I use Redmine for my automotive shop management 😉)
|
||||||
|
* Checkout branch dev-6 for a stripped down version
|
||||||
|
|
||||||
* MORE Stuff as I make it up...
|
* MORE Stuff as I make it up...
|
||||||
|
|
||||||
|
|||||||
@@ -37,8 +37,11 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th><%=t(:field_notes)%></th>
|
<th colspan="2"><h4><%=t(:field_notes)%></hr></th>
|
||||||
<td>
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
<pre id="note-display" style="text-align: left; white-space: pre-wrap; font-family: inherit;">
|
<pre id="note-display" style="text-align: left; white-space: pre-wrap; font-family: inherit;">
|
||||||
<%= customer.notes %>
|
<%= customer.notes %>
|
||||||
</pre>
|
</pre>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<div class="splitcontent">
|
<div class="splitcontent">
|
||||||
<div class="splitcontentleft">
|
<div class="splitcontentleft">
|
||||||
<h4><%=t(:label_customer)%>:</h4>
|
<h4><%=t(:field_customer)%>:</h4>
|
||||||
<%= render :partial => 'customers/details', locals: {customer: @customer} %>
|
<%= render :partial => 'customers/details', locals: {customer: @customer} %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -2,12 +2,14 @@
|
|||||||
|
|
||||||
<%= form_with(url: invoice_path, method: :get) do |form| %>
|
<%= form_with(url: invoice_path, method: :get) do |form| %>
|
||||||
|
|
||||||
|
<% if @customer.invoices.count > 1 %>
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<%= check_box_tag "select-all-invoices", "1", false, id: "select-all-invoices" %>
|
<%= check_box_tag "select-all-invoices", "1", false, id: "select-all-invoices" %>
|
||||||
<%= label_tag "select-all-invoices", t(:label_select_all) %>
|
<%= label_tag "select-all-invoices", t(:label_select_all) %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<% @customer.invoices.order(id: :desc).each do |invoice| %>
|
<% @customer.invoices.order(id: :desc).each do |invoice| %>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@@ -16,8 +18,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% if @customer.invoices.count > 1 %>
|
||||||
<%= form.submit t(:button_bulk_pdf) %>
|
<%= form.submit t(:button_bulk_pdf) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<% else %>
|
<% else %>
|
||||||
<p><%=t(:label_no_invoices)%>.</p>
|
<p><%=t(:label_no_invoices)%>.</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user