You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After many hours of debugging, I finally found out what the issue was. For me, Chromis was trying to determine if the CentralGuid was the same as the current SiteGuid. The result to this was false which would not show the Location Combo Box beside the Barcode textfield. In that case, the code in ProductFilterWithSite.java specifically says to select the first item in the list which would be the current site.
if (!dlSync.isCentral()) {
m_LocationsModel.setSelectedFirst();
}
But then, the site is selected but not refreshed as it should be for whatever reason (I'm still working on that). So the workaround I found for now is to set the value of jSites.isVisible(dlSync.isCentral) to jSites.isVisible(true) in ProductFilterWithSite.java like this :
public ProductFilterWithSite(Boolean isCentral) {
initComponents();
jSites.setVisible(true); // Workaround to always see the sites panel
//jSites.setVisible(isCentral);
}
And then, when you go to Stock -> Products, you should see the By Store Details in the upper left corner of the window. When you select your site again from the drop down menu, your products should now appear!
As someone on SourceForge pointed out, you just need to manually refresh the table by clicking on the refresh button (curved arrow) in order to show the products.
When you start to add products on the inventory panel, the products already added doesnt show up on list
![image](https://user-images.githubusercontent.com/2581610/38699672-0c7c545e-3e6f-11e8-86db-bd491c78bfbc.png)
The text was updated successfully, but these errors were encountered: