Adjusted csv upload javascript to use the config

This commit is contained in:
Candifloss 2025-02-10 14:22:22 +05:30
parent ef951cbb91
commit 3762534c65
2 changed files with 8 additions and 12 deletions

View File

@ -1,25 +1,21 @@
function collectEditedData(event) {
const headers = [...document.querySelectorAll('.table-new-assets thead th')].map(th => th.dataset.attrib);
const rows = document.querySelectorAll('.table-new-assets tbody tr');
const assets = [];
rows.forEach(row => {
const cells = row.querySelectorAll('td');
assets.push({
assettag: cells[0].innerText,
hostname: cells[1].innerText,
warrantyfrom: cells[2].innerText,
status: cells[3].innerText,
staffnum: cells[4].innerText
});
let asset = {};
headers.forEach((attrib, i) => asset[attrib] = cells[i].innerText);
assets.push(asset);
});
// Add edited data to a hidden input
const input = document.createElement('input');
input.type = 'hidden';
input.name = 'assets';
input.value = JSON.stringify(assets);
document.querySelector('form').appendChild(input);
event.target.submit(); // Submit the form after attaching data
event.target.submit();
return true;
}

View File

@ -16,7 +16,7 @@
<thead>
<tr>
{% for attrib, config in item_attributes.items() %}
<th>{{ config.display_name }}</th>
<th data-attrib="{{ attrib }}">{{ config.display_name }}</th>
{% endfor %}
</tr>
</thead>