Edit / delete / add BOM items

- Remove x-editable inline editing
- Uses only bootstrap-table and modal forms
- Hide the 'part' field in the bom item edit
This commit is contained in:
Oliver Walters 2019-04-16 01:41:01 +10:00
parent 6e2b111b9c
commit bad46f85f4
5 changed files with 4147 additions and 63 deletions

View File

@ -78,8 +78,10 @@ class EditBomItemForm(HelperForm):
fields = [ fields = [
'part', 'part',
'sub_part', 'sub_part',
'quantity' 'quantity',
'note'
] ]
widgets = {'part': forms.HiddenInput()}
class EditSupplierPartForm(HelperForm): class EditSupplierPartForm(HelperForm):

View File

@ -17,6 +17,11 @@
<div><br></div> <div><br></div>
{% if editing_enabled %} {% if editing_enabled %}
<div class='btn-group' style='float: left;'>
<button class='btn btn-basic' type='button' id='bom-item-new'>New</button>
<button class='btn btn-basic' type='button' id='bom-item-new'>Edit</button>
<button class='btn btn-basic' type='button' id='bom-item-new'>Delete</button>
</div>
<div style='float: right;'> <div style='float: right;'>
<button class='btn btn-warning' type='button' id='editing-cancel'>Cancel</button> <button class='btn btn-warning' type='button' id='editing-cancel'>Cancel</button>
<button class='btn btn-success' type='button' id='editing-finish'>Save Changes</button> <button class='btn btn-success' type='button' id='editing-finish'>Save Changes</button>
@ -49,26 +54,17 @@
loadBomTable($("#bom-table"), { loadBomTable($("#bom-table"), {
editable: {{ editing_enabled }}, editable: {{ editing_enabled }},
bom_url: "{% url 'api-bom-list' %}", bom_url: "{% url 'api-bom-list' %}",
part_url: "{% url 'api-part-list' %}",
parent_id: {{ part.id }} parent_id: {{ part.id }}
}); });
{% if editing_enabled %}
$("#editing-finish").click(function() {
alert("Finished!");
location.href = "{% url 'part-bom' part.id %}";
});
$("#editing-cancel").click(function() {
alert("Cancelled!");
location.href = "{% url 'part-bom' part.id %}";
});
{% else %}
$("#edit-bom").click(function () { $("#edit-bom").click(function () {
{% if editing_enabled %}
location.href = "{% url 'part-bom' part.id %}";
{% else %}
location.href = "{% url 'part-bom' part.id %}?edit=True"; location.href = "{% url 'part-bom' part.id %}?edit=True";
{% endif %}
}); });
$("#export-bom").click(function () { $("#export-bom").click(function () {
@ -76,6 +72,8 @@
location.href = "{% url 'bom-export' part.id %}"; location.href = "{% url 'bom-export' part.id %}";
}); });
{% endif %} $("#bom-item-new").click(function () {
launchModalForm("{% url 'bom-item-create' %}?parent={{ part.id }}", {});
});
{% endblock %} {% endblock %}

File diff suppressed because it is too large Load Diff

View File

@ -18,6 +18,7 @@ function loadBomTable(table, options) {
* Following options are available: * Following options are available:
* editable - Should the BOM table be editable? * editable - Should the BOM table be editable?
* bom_url - Address to request BOM data from * bom_url - Address to request BOM data from
* part_url - Address to request Part data from
* parent_id - Parent ID of the owning part * parent_id - Parent ID of the owning part
* *
* BOM data are retrieved from the server via AJAX query * BOM data are retrieved from the server via AJAX query
@ -34,7 +35,14 @@ function loadBomTable(table, options) {
]; ];
if (options.editable) { if (options.editable) {
// TODO - Add checkbox column cols.push({
formatter: function(value, row, index, field) {
var bEdit = "<button class='btn btn-success bom-edit-button btn-sm' type='button' url='" + row.url + "edit'>Edit</button>";
var bDelt = "<button class='btn btn-danger bom-delete-button btn-sm' type='button' url='" + row.url + "delete'>Delete</button>";
return "<div class='btn-group'>" + bEdit + bDelt + "</div>";
}
});
} }
// Part column // Part column
@ -44,19 +52,7 @@ function loadBomTable(table, options) {
title: 'Part', title: 'Part',
sortable: true, sortable: true,
formatter: function(value, row, index, field) { formatter: function(value, row, index, field) {
if (options.editable) { return renderLink(value.name, value.url);
return renderEditable(value.name,
{
_pk: row.pk,
_type: 'select',
_title: 'Part',
_class: 'editable-part',
_value: 1,
});
}
else {
return renderLink(value.name, value.url);
}
} }
} }
); );
@ -76,18 +72,6 @@ function loadBomTable(table, options) {
title: 'Required', title: 'Required',
searchable: false, searchable: false,
sortable: true, sortable: true,
formatter: function(value, row, index, field) {
if (options.editable) {
return renderEditable(value,
{
_pk: row.pk,
_title: 'Quantity',
});
}
else {
return value;
}
}
} }
); );
@ -98,19 +82,6 @@ function loadBomTable(table, options) {
title: 'Notes', title: 'Notes',
searchable: true, searchable: true,
sortable: false, sortable: false,
formatter: function(value, row, index, field) {
if (options.editable) {
return renderEditable(value,
{
_pk: row.pk,
_title: 'Note',
_empty: 'Enter note',
});
}
else {
return value;
}
}
} }
); );
@ -145,6 +116,7 @@ function loadBomTable(table, options) {
table.bootstrapTable({ table.bootstrapTable({
sortable: true, sortable: true,
search: true, search: true,
clickToSelect: true,
queryParams: function(p) { queryParams: function(p) {
return { return {
part: options.parent_id, part: options.parent_id,
@ -154,19 +126,78 @@ function loadBomTable(table, options) {
url: options.bom_url url: options.bom_url
}); });
// In editing mode, attached editables to the appropriate table elements
if (options.editable) { if (options.editable) {
table.on('click', '.bom-delete-button', function() {
var button = $(this);
launchDeleteForm(button.attr('url'), {
success: function() {
reloadBomTable(table);
}
});
});
table.on('click', '.bom-edit-button', function() {
var button = $(this);
launchModalForm(button.attr('url'), {
success: function() {
reloadBomTable(table);
}
});
});
// Callback when the BOM data are successfully loaded // Callback when the BOM data are successfully loaded
table.on('load-success.bs.table', function() { table.on('load-success.bs.table', function() {
table.find('.editable-item').editable(); table.find('.editable-item').editable();
$("#bom-table").find('.editable-part').editable({
source: [ // Table has loaded - Request list of available parts
// Dummy data (for now) // Request list of parts which could (potentially) be added to this BOM
{value: 1, text: 'Apple'}, $.ajax({
{value: 2, text: 'Banana'}, url: options.part_url,
{value: 3, text: 'Carrot'}, method: 'GET',
] data: {
consumable: true, // Only list parts that can be used in other parts
},
success: function(result, status, xhr) {
// Convert returned data to select2 format
var data = $.map(result, function(obj) {
obj.id = obj.id || obj.pk; // Part ID is supplied as field 'pk'
obj.text = obj.text || obj.name; // Part text is supplied as field 'name'
return obj;
});
table.find('.part-select').select2({
data: data,
dropdownAutoWidth: true,
}).select2('val', 1);
/*
// Insert these data into each row drop-down
table.find('.editable-part').editable({
source: data,
select2: {
placeholder: 'Select Part',
minimumInputLength: 3,
dropdownAutoWidth: true,
}
}).on('shown', function(e, editable){
editable.input.$input.select2({
//data: data,
minimumResultsForSearch: Infinity,
dropdownAutoWidth: true,
dropdownParent: table,
});
editable.input.$input.select2('val', editable.input.$input.val());
});
*/
}
}); });
}); });
} }
} }

View File

@ -10,8 +10,9 @@
<!-- CSS --> <!-- CSS -->
<link rel="stylesheet" href="{% static 'css/bootstrap_3.3.7_css_bootstrap.min.css' %}"> <link rel="stylesheet" href="{% static 'css/bootstrap_3.3.7_css_bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'css/select2.css' %}">
<link rel="stylesheet" href="{% static 'css/bootstrap-table.css' %}"> <link rel="stylesheet" href="{% static 'css/bootstrap-table.css' %}">
<link rel="stylesheet" href="{% static 'css/select2.css' %}">
<link rel="stylesheet" href="{% static 'css/select2-bootstrap.css' %}">
<link rel="stylesheet" href="{% static 'css/inventree.css' %}"> <link rel="stylesheet" href="{% static 'css/inventree.css' %}">
{% block css %} {% block css %}