-
-
Notifications
You must be signed in to change notification settings - Fork 181
Description
Hello, I currently have a lot of parts from vendors that supply json formatted data matrix codes on the received part (as well as order sheet). This json provides part name, quantity as well as description. This is generally really useful if I want to bulk add new parts, which sometimes happens. For this usecase I had made a simple program interpreting the code and communicating with the API to import these codes. However that in my opinion is quite a lot of work, especially if working with many different vendors.
The feature proposal is to have some sort of automated, scanner focused, part creation functionality in the UI level with custom format definitions. This could for example work as follows:
- User selects format type (JSON, XML, Other?)
- User matches fields from the format to fields in the part (for example
{"name": "partname", "data": {"quantity":2, "resistance": 470}}could then be field matched by inputting "name" as the value for the name field and "data.quantity" for stocks fields) - The user goes to a add new part dialog and scans a vendor code (pre-selected vendor code type since auto detection might be a lot of work)
- The part gets created according to the format rules
A system like this would be very versatile and would save a lot of time when having to import hundreds of components when only their physical labels are available.