Acumatica - Adding Image in Sales Order Line
问题 I am working on making a thumbnail image on the Sales Order lines for the Document Details when the InventoryID is selected. The image however does not populate to the grid whenever I select the InventoryID in the line. Here is what I have so far: DAC Extension: namespace PX.Objects.IN { public class InventoryItemExt : PXCacheExtension<InventoryItem> { #region ThumbnailURL public abstract class thumbnailURL : IBqlField { } [PXString] public string ThumbnailURL { get; set; } #endregion } }