smerp-quotation-engine 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e68a4952af18e9ffec00956f56cb0beaf544c8ed4783a1d2400eb69a9220e5f1
|
4
|
+
data.tar.gz: 2a1118364f1bf7805682a2a3c3bb7bb7b19d73991fe2c0947a64e1fdadc35e4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1430c6d5fabc1c1dd0bcd229c50e1242161725b0cbf758a89116b8076097356eb7e1520d4258d5e147b87ce6a7415e1eb39e100443675081fdc7119aec08b48a
|
7
|
+
data.tar.gz: b4a38634a219d77c1e6240fc9cafd6d6265905e0de2237648f36e0b65982623d156ca22ee785654c526fb7b08d90c45468974a89bb9dbb9886b1406a617db884
|
@@ -18,10 +18,17 @@
|
|
18
18
|
<% end %>
|
19
19
|
|
20
20
|
<table class="table">
|
21
|
-
<% if
|
22
|
-
|
23
|
-
<
|
24
|
-
|
21
|
+
<% if quotation_item.new_record? %>
|
22
|
+
<% if not @parent.nil? %>
|
23
|
+
<tr style="background-color: #8EFEC1">
|
24
|
+
<th>Parent Item : </th>
|
25
|
+
<td colspan="4"><%= @parent.name %></td>
|
26
|
+
</tr>
|
27
|
+
<% end %>
|
28
|
+
<% else %>
|
29
|
+
<tr>
|
30
|
+
<th>Parent : </th>
|
31
|
+
<td colspan="4"><%= form.select :parent_id, quotation_item.quotation.quotation_items.where(["id != ?", quotation_item.id]).order(:name).collect { |e| [e.name, e.id] }.unshift([" - ", nil]), {}, class: "form-control" %></td>
|
25
32
|
</tr>
|
26
33
|
<% end %>
|
27
34
|
|