mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
ParametricPartTable Updates (#6692)
* Add parameter units to ParametricPartTable * Fix conversion aliases
This commit is contained in:
parent
b33314659b
commit
891c4fef6a
@ -39,9 +39,9 @@ def reload_unit_registry():
|
||||
reg = pint.UnitRegistry(autoconvert_offset_to_baseunit=True)
|
||||
|
||||
# Aliases for temperature units
|
||||
reg.define('@alias degC = celsius = Celsius')
|
||||
reg.define('@alias degF = fahrenheit = Fahrenheit')
|
||||
reg.define('@alias degK = kelvin = Kelvin')
|
||||
reg.define('@alias degC = Celsius')
|
||||
reg.define('@alias degF = Fahrenheit')
|
||||
reg.define('@alias degK = Kelvin')
|
||||
|
||||
# Define some "standard" additional units
|
||||
reg.define('piece = 1')
|
||||
|
@ -43,9 +43,15 @@ export default function ParametricPartTable({
|
||||
let data = categoryParmeters.data ?? [];
|
||||
|
||||
return data.map((template: any) => {
|
||||
let title = template.name;
|
||||
|
||||
if (template.units) {
|
||||
title += ` [${template.units}]`;
|
||||
}
|
||||
|
||||
return {
|
||||
accessor: `parameter_${template.pk}`,
|
||||
title: template.name,
|
||||
title: title,
|
||||
sortable: true,
|
||||
render: (record: any) => {
|
||||
// Find matching template parameter
|
||||
|
Loading…
x
Reference in New Issue
Block a user