mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 13:15:43 +00:00 
			
		
		
		
	Update many tables
This commit is contained in:
		| @@ -37,6 +37,7 @@ | ||||
|                 field: 'pk', | ||||
|                 title: 'ID', | ||||
|                 visible: false, | ||||
|                 switchable: false, | ||||
|             }, | ||||
|             { | ||||
|                 field: 'symbol', | ||||
|   | ||||
| @@ -31,6 +31,7 @@ | ||||
|                 field: 'pk', | ||||
|                 title: 'ID', | ||||
|                 visible: false, | ||||
|                 switchable: false, | ||||
|             }, | ||||
|             { | ||||
|                 field: 'name', | ||||
|   | ||||
| @@ -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) { | ||||
|   | ||||
| @@ -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', | ||||
|   | ||||
| @@ -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, | ||||
|   | ||||
| @@ -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, | ||||
|   | ||||
| @@ -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: [ | ||||
|             { | ||||
|   | ||||
| @@ -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', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user