Need 4 additional fields from Contract Detail store

Issue No: CT-369
Created 9/24/2015 3:23:56 AM
Type Bug
Priority Major
Status Closed
Resolution Fixed
Fixed Version 15.3
Description We need 4 additional fields to come from your store 'ContractManagement.store.ContractDetailViewBuffered':   * intSubLocationId * strSubLocationName * intStorageLocationId * strStorageLocationName   You can refer to the query I made below..   SELECT ItemLocation.intSubLocationId , SubLocation.strSubLocationName , ItemLocation.intStorageLocationId , strStorageLocationName = StorageLocation.strName FROM tblICItemLocation ItemLocation LEFT JOIN tblSMCompanyLocationSubLocation SubLocation ON SubLocation.intCompanyLocationSubLocationId = ItemLocation.intSubLocationId LEFT JOIN tblICStorageLocation StorageLocation ON StorageLocation.intStorageLocationId = ItemLocation.intStorageLocationId