示例#1
0
 protected void btnConfirm_Click(object sender, EventArgs e)
 {
     try
     {
         PUNAcknowledgementInformation acknowledgement         = (PUNAcknowledgementInformation)PUNADataEditor.DataSource;
         PUNAcknowledgementInformation originalAcknowledgement = ginProcess.GINProcessInformation.PUNAcknowledgement;
         //AuditTrailWrapper auditTrail = new AuditTrailWrapper("Inverntory Verification",
         //    new object[][]{new object[]{originalAcknowledgement, acknowledgement}});
         GINProcessWrapper.SaveAvailabilityVerification(acknowledgement);//, auditTrail);
         GINProcessWrapper.CompleteAvailabilityVerification();
         GINProcessWrapper.RemoveGINProcessInformation();
         transferedData.Return();
     }
     catch (Exception ex)
     {
         Utility.LogException(ex);
         errorDisplayer.ShowErrorMessage(ex.Message);
     }
 }