top of page
Search
  • ABS

iVend Addon - Get payment attribute

class PaymentModule : TransactionPaymentModuleBase

{

TransactionPayment m_Payment = null;

PaymentDetailEntryView paymentDetailEntryView;

public override void OnBeforeAddPayment(object sender,

Retail.Extensibility.EventArgs<SubSystem.Transaction.Transaction,

SubSystem.Transaction.TransactionPayment> args)

{

MessageBox.Show(paymentDetailEntryView.m_PaymentInfoVGrid.Rows["m_EditorRowAmount"].Properties.Value.ToString());

m_Payment = args.ChildItem;

base.OnBeforeAddPayment(sender, args);

}

2 views0 comments

Recent Posts

See All

SAP B1/iVend- Query Inventory In SAP

Check inventory audit in SAP select  a.CreateDate, b.USER_CODE as [User], a.TransType SAP_DocType, case when a.TransType = 13 then  'Sale Invoice' when a.TransType = 14 then  'Sale Credit Note' when a

ivend-SAP Integration Monitor from SBO to ivend Query

Select IntegrationKey,Cast(SourceType AS Varchar(20)) As SourceType,SourceKey, OperationType, isNull(LogDatetime, getdate()) As LogDatetime, Case isNull(Status, 0) When 0 Then 'Not Processed' Else 'Fa

Post: Blog2_Post
bottom of page