Update many tables

This commit is contained in:
Oliver Walters 2020-08-31 21:55:01 +10:00
parent 97ed70502c
commit 672936e2d4
11 changed files with 24 additions and 0 deletions

View File

@ -127,6 +127,7 @@ function setupCallbacks() {
$("#po-table").inventreeTable({
onPostBody: setupCallbacks,
name: 'purchaseorder',
formatNoMatches: function() { return "{% trans 'No line items found' %}"; },
queryParams: {
order: {{ order.id }},
@ -138,6 +139,7 @@ $("#po-table").inventreeTable({
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
field: 'part',

View File

@ -190,6 +190,7 @@ $("#so-lines-table").inventreeTable({
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
sortable: true,

View File

@ -29,6 +29,7 @@
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
field: 'part_detail',

View File

@ -37,6 +37,7 @@
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
field: 'symbol',

View File

@ -31,6 +31,7 @@
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
field: 'name',

View File

@ -111,6 +111,7 @@ function loadBomTable(table, options) {
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
];
@ -320,6 +321,7 @@ function loadBomTable(table, options) {
parentIdField: 'parentId',
treeShowField: 'sub_part',
showColumns: true,
name: 'bom',
sortable: true,
search: true,
rowStyle: function(row, index) {

View File

@ -21,12 +21,14 @@ function loadBuildTable(table, options) {
url: options.url,
queryParams: filters,
groupBy: false,
name: 'builds',
original: params,
columns: [
{
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
field: 'title',

View File

@ -27,16 +27,20 @@ function loadCompanyTable(table, url, options={}) {
queryParams: filters,
groupBy: false,
formatNoMatches: function() { return "{% trans "No company information found" %}"; },
showColumns: true,
name: 'company',
columns: [
{
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
field: 'name',
title: '{% trans "Company" %}',
sortable: true,
switchable: false,
formatter: function(value, row, index, field) {
var html = imageHoverIcon(row.image) + renderLink(value, row.url);
@ -97,11 +101,13 @@ function loadSupplierPartTable(table, url, options) {
url: url,
method: 'get',
queryParams: filters,
name: 'supplierparts',
groupBy: false,
formatNoMatches: function() { return "{% trans "No supplier parts found" %}"; },
columns: [
{
checkbox: true,
switchable: false,
},
{
sortable: true,

View File

@ -121,6 +121,7 @@ function loadPurchaseOrderTable(table, options) {
$(table).inventreeTable({
url: options.url,
queryParams: filters,
name: 'purchaseorder',
groupBy: false,
original: options.params,
formatNoMatches: function() { return "{% trans "No purchase orders found" %}"; },
@ -129,6 +130,7 @@ function loadPurchaseOrderTable(table, options) {
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
sortable: true,
@ -194,6 +196,7 @@ function loadSalesOrderTable(table, options) {
$(table).inventreeTable({
url: options.url,
queryParams: filters,
name: 'salesorder',
groupBy: false,
original: options.params,
formatNoMatches: function() { return "{% trans "No sales orders found" %}"; },
@ -202,6 +205,7 @@ function loadSalesOrderTable(table, options) {
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
sortable: true,

View File

@ -237,6 +237,7 @@ function loadPartTable(table, url, options={}) {
method: 'get',
queryParams: filters,
groupBy: false,
name: 'part',
original: params,
formatNoMatches: function() { return "{% trans "No parts found" %}"; },
columns: columns,
@ -338,6 +339,7 @@ function loadPartTestTemplateTable(table, options) {
},
url: "{% url 'api-part-test-template-list' %}",
queryParams: filters,
name: 'testtemplate',
original: original,
columns: [
{

View File

@ -73,6 +73,7 @@ function loadStockTestResultsTable(table, options) {
table.inventreeTable({
url: "{% url 'api-part-test-template-list' %}",
method: 'get',
name: 'testresult',
formatNoMatches: function() {
return "{% trans 'No test results found' %}";
},
@ -84,6 +85,7 @@ function loadStockTestResultsTable(table, options) {
field: 'pk',
title: 'ID',
visible: false,
switchable: false,
},
{
field: 'test_name',