/// <summary> /// Procesa un mensaje de tipo Receipt /// </summary> /// <param name="msg">El mensaje Receipt</param> public void ProcessReceipt(ReceiptType receipt) { decimal?price = null; if (receipt.ReceiptCode == receiptCodeType.Item0 && receipt.ReferenceId.Length > 0) { //Era un recibo correspondiente a un REQUERIMIENTO? var sprm = new ShipPositionRequestDataAccess(); if (sprm.RequestExists(receipt.ReferenceId) == true) { var pman = new PricingManager(); price = pman.GetPriceForRequest(receipt.ReferenceId, receipt.Originator); if (price == null) { log.Warn(string.Format("ProcessReceipt: Se recibio un receipt codigo 0 {0}, no podemos poner precio", receipt.MessageId)); } } else { log.Warn(string.Format("ProcessReceipt: recibo 0 {0} no referido a Requerimiento", receipt.MessageId)); } } using (var dao = new ReceiptDataAccess()) { dao.Create(TypeHelper.Map2DB(receipt), 0, price); } log.Info(string.Format("Receipt successfully processed: price {0}", price)); }
/// <summary> /// Envia un mensaje de tipo Receipt al IDE /// </summary> /// <param name="msg">Mensaje Receipt</param> private string SendReceipt(Message msg) { DataCenterLogic.DataCenterTypesIDE.ReceiptType receipt = (DataCenterLogic.DataCenterTypesIDE.ReceiptType)(msg.Body); //Send to IDE if (System.Configuration.ConfigurationManager.AppSettings["send2servers"] != "False") { receipt.test = DataCenterLogic.DataCenterTypesIDE.testType.Item0; ideClient.Receipt(receipt); log.Info("SendReceipt: receipt sent to IDE"); } //Get price for receipt //El codigo 0 dice todo, si es codigo 0 quiere decir que este recibo se esta mandando por que no se pudo mandar una posicion //Por lo tanto el request debe existir o sino fue de una standing order. decimal?price = null; if (receipt.ReceiptCode == 0) { var pman = new PricingManager(); price = pman.GetPriceForRequest(receipt.ReferenceId, receipt.Originator); if (price == null) { log.Warn(string.Format("SendReceipt: Se manda un receipt codigo 0 {0} sin precio", receipt.MessageId)); } } //Guarda el mensaje en la base de datos using (var dao = new ReceiptDataAccess()) { dao.Create(TypeHelper.Map2DB(receipt), 1, price); } log.Info(string.Format("Receipt stored: price {0}", price)); return(receipt.MessageId); }