mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-30 20:55:42 +00:00 
			
		
		
		
	Hide the "part" field when editing manufacturer part and supplier part objects
This commit is contained in:
		| @@ -483,7 +483,6 @@ class SupplierPart(models.Model): | |||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  |  | ||||||
|  |  | ||||||
|     class Meta: |     class Meta: | ||||||
|         unique_together = ('part', 'supplier', 'SKU') |         unique_together = ('part', 'supplier', 'SKU') | ||||||
|  |  | ||||||
|   | |||||||
| @@ -54,8 +54,12 @@ function editManufacturerPart(part, options={}) { | |||||||
|  |  | ||||||
|     var url = `/api/company/part/manufacturer/${part}/`; |     var url = `/api/company/part/manufacturer/${part}/`; | ||||||
|  |  | ||||||
|  |     var fields = manufacturerPartFields(); | ||||||
|  |  | ||||||
|  |     fields.part.hidden = true; | ||||||
|  |  | ||||||
|     constructForm(url, { |     constructForm(url, { | ||||||
|         fields: manufacturerPartFields(), |         fields: fields, | ||||||
|         title: '{% trans "Edit Manufacturer Part" %}', |         title: '{% trans "Edit Manufacturer Part" %}', | ||||||
|         onSuccess: options.onSuccess |         onSuccess: options.onSuccess | ||||||
|     }); |     }); | ||||||
| @@ -157,8 +161,13 @@ function createSupplierPart(options={}) { | |||||||
|  |  | ||||||
| function editSupplierPart(part, options={}) { | function editSupplierPart(part, options={}) { | ||||||
|  |  | ||||||
|  |     var fields = supplierPartFields(); | ||||||
|  |  | ||||||
|  |     // Hide the "part" field | ||||||
|  |     fields.part.hidden = true; | ||||||
|  |  | ||||||
|     constructForm(`/api/company/part/${part}/`, { |     constructForm(`/api/company/part/${part}/`, { | ||||||
|         fields: supplierPartFields(), |         fields: fields, | ||||||
|         title: '{% trans "Edit Supplier Part" %}', |         title: '{% trans "Edit Supplier Part" %}', | ||||||
|         onSuccess: options.onSuccess |         onSuccess: options.onSuccess | ||||||
|     }); |     }); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user