Skip to content

Instantly share code, notes, and snippets.

@Dioris
Created July 25, 2022 23:47

Revisions

  1. Dioris created this gist Jul 25, 2022.
    11 changes: 11 additions & 0 deletions SOOrderNotRMFields.cs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    [PXProjection(typeof(Select2<SOOrder,
    InnerJoin<SOOrderType, On<SOOrderType.orderType, Equal< SOOrder.orderType>>>,
    Where<SOOrderType.behavior, NotEqual<SOBehavior.rM>>>>))]
    public partial class SOOrderNotRM: IBlTable
    {
    ////Other fields
    public abstract class requireLotSerial : PX.Data.BQL.BqlBool.Field<requireLotSerial> { }

    [PXDBBool(BqlField = typeof(SOOrderType.requireLotSerial))]
    public virtual bool? RequireLotSerial { get; set; }
    }