Merge pull request #1149 from SchrodingersGat/bom-upload-speed

Vastly improved speed of BOM upload
This commit is contained in:
Oliver 2020-11-27 15:25:46 +11:00 committed by GitHub
commit a8f605c2e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@
{% endfor %} {% endfor %}
</select> </select>
{% if col.duplicate %} {% if col.duplicate %}
<p class='help-inline'>Duplicate column selection</p> <p class='help-inline'>{% trans "Duplicate column selection" %}</p>
{% endif %} {% endif %}
</td> </td>
{% endfor %} {% endfor %}

View File

@ -63,7 +63,7 @@
<option value=''>--- {% trans "Select Part" %} ---</option> <option value=''>--- {% trans "Select Part" %} ---</option>
{% for part in row.part_options %} {% for part in row.part_options %}
<option value='{{ part.id }}' {% if part.id == row.part.id %} selected='selected' {% elif part.id == row.part_match.id %} selected='selected' {% endif %}> <option value='{{ part.id }}' {% if part.id == row.part.id %} selected='selected' {% elif part.id == row.part_match.id %} selected='selected' {% endif %}>
{{ part }} - {{ part.available_stock }} {{ part }}
</option> </option>
{% endfor %} {% endfor %}
</select> </select>