mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-30 20:55:42 +00:00 
			
		
		
		
	Merge pull request #2075 from SchrodingersGat/default-supplier-fix
Default supplier fix
This commit is contained in:
		| @@ -94,7 +94,12 @@ function partFields(options={}) { | ||||
|         }, | ||||
|         default_location: { | ||||
|         }, | ||||
|         default_supplier: {}, | ||||
|         default_supplier: { | ||||
|             filters: { | ||||
|                 part_detail: true, | ||||
|                 supplier_detail: true, | ||||
|             } | ||||
|         }, | ||||
|         default_expiry: { | ||||
|             icon: 'fa-calendar-alt', | ||||
|         }, | ||||
| @@ -315,6 +320,9 @@ function editPart(pk) { | ||||
|         edit: true | ||||
|     }); | ||||
|  | ||||
|     // Filter supplied parts by the Part ID | ||||
|     fields.default_supplier.filters.part = pk; | ||||
|  | ||||
|     var groups = partGroups({}); | ||||
|  | ||||
|     constructForm(url, { | ||||
| @@ -338,6 +346,9 @@ function duplicatePart(pk, options={}) { | ||||
|                 duplicate: pk, | ||||
|             }); | ||||
|  | ||||
|             // Remove "default_supplier" field | ||||
|             delete fields['default_supplier']; | ||||
|  | ||||
|             // If we are making a "variant" part | ||||
|             if (options.variant) { | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user