We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# Bug description
When attemping to import stockLevel, the value of "Stock" in the front end table views is not altered (remains 0).
To test, we use a fairly minimal import field mapping preset:
PartKeepr.PartBundle.Entity.Part > name PartKeepr.PartBundle.Entity.Part > description PartKeepr.PartBundle.Entity.Part > comment PartKeepr.PartBundle.Entity.Part > internalPartNumber PartKeepr.PartBundle.Entity.Part > category PartKeepr.PartBundle.Entity.Part > storageLocation
partPartKeeprStockBundleEntityStockEntries > [x] create new item partPartKeeprStockBundleEntityStockEntries > stockLevel
Looks like this...
When importing, everything except stockLevel was imported.
The text was updated successfully, but these errors were encountered:
WORKAROUND (hack)....
Instead of using stockLevel because it's broken/bugged
instead map your quantity to the field status (assuming you don't use/need status. Or map to something else)
Then your import will work, and status will represent qty on hand.
Next go into phpmyadmin and run query:
UPDATE `Part` SET `stockLevel` = `status` WHERE `status` >0
So anything where status is >0 will be mapped to "stockLevel" as you want.
You can then blank all your status back to 0 (be careful - if you use status for something you probably don't want to do this)
UPDATE `Part` SET `status` = 0 WHERE `status` IS NOT NULL
Sorry, something went wrong.
No branches or pull requests
# Bug description
When attemping to import stockLevel, the value of "Stock" in the front end table views is not altered (remains 0).
To test, we use a fairly minimal import field mapping preset:
PartKeepr.PartBundle.Entity.Part > name
PartKeepr.PartBundle.Entity.Part > description
PartKeepr.PartBundle.Entity.Part > comment
PartKeepr.PartBundle.Entity.Part > internalPartNumber
PartKeepr.PartBundle.Entity.Part > category
PartKeepr.PartBundle.Entity.Part > storageLocation
partPartKeeprStockBundleEntityStockEntries > [x] create new item
partPartKeeprStockBundleEntityStockEntries > stockLevel
Looks like this...
When importing, everything except stockLevel was imported.
System Information
The text was updated successfully, but these errors were encountered: