Esempio n. 1
0
 public static bool IsKeyEqual(AR.ARPayment payment, CABatchDetail detail)
 {
     return(detail.OrigModule == BatchModule.AR && payment.DocType == detail.OrigDocType && payment.RefNbr == detail.OrigRefNbr);
 }
 public virtual void Copy(AR.ARPayment payment)
 {
     this.OrigRefNbr  = payment.RefNbr;
     this.OrigDocType = payment.DocType;
     this.OrigModule  = GL.BatchModule.AR;
 }
Esempio n. 3
0
 public static bool IsKeyEqual(AR.ARPayment op1, CABatchDetail op2)
 {
     return(op2.OrigModule == BatchModule.AR && op1.DocType == op2.OrigDocType && op1.RefNbr == op2.OrigRefNbr);
 }