880 lines
40 KiB
C#
880 lines
40 KiB
C#
|
using System;
|
|||
|
using System.Text;
|
|||
|
using System.Drawing;
|
|||
|
using System.Windows.Forms;
|
|||
|
using System.Collections;
|
|||
|
|
|||
|
using Cosmos.Win;
|
|||
|
using Cosmos.BaseFrame;
|
|||
|
using Cosmos.UserFrame;
|
|||
|
using Cosmos.ServiceProvider;
|
|||
|
using Cosmos.Common;
|
|||
|
using Cosmos.CommonManager;
|
|||
|
|
|||
|
/*-----------------------------------------------------------------------------------------------*/
|
|||
|
// 설 명 : 포인트 사용(해피포인트) - 중국
|
|||
|
// 작 성 자 :
|
|||
|
// 변경 이력 :
|
|||
|
/*-----------------------------------------------------------------------------------------------*/
|
|||
|
namespace Cosmos.Win
|
|||
|
{
|
|||
|
public partial class frmPntHappyPointSave_China : frm_PayMainBack
|
|||
|
{
|
|||
|
|
|||
|
#region 변수 선언
|
|||
|
|
|||
|
private SManager sManager = new SManager(); // 이 객체를 통해 업무 Service 호출
|
|||
|
private StateServer StateObject = (StateServer)StateServer.GetInstance(); // StateObject : StateServer Object (객체)
|
|||
|
private PosStatus m_cPosStatus = new PosStatus(); // 기본정보 참조
|
|||
|
private TranStatus m_cTrnStatus = new TranStatus(); // 거래정보 참조
|
|||
|
private DeviceStatus m_cDevStatus = new DeviceStatus(); // 디바이스 관리
|
|||
|
private PosOLEDevice.DelegateOlePos delegatePos;
|
|||
|
|
|||
|
private IICReaderUs m_cDeviceICReader = null;
|
|||
|
private ISignPadUs m_cDeviceSignPad = null;
|
|||
|
private IDataProcessUs m_cDataService = null; // 거래데이터 합계금액 계산 및 관리
|
|||
|
private IDataCommonUs m_cDataCommon = null; // POS 공통함수 인터페이스
|
|||
|
private IPaymentUs m_cHappyPoint = null;
|
|||
|
private ICampaignUs m_cCampaingMain = null; // 캠페인 관리
|
|||
|
|
|||
|
private bool bNotDoubleClik = false; // 더블 클릭 방지용
|
|||
|
|
|||
|
private string m_sPosMenuKey;
|
|||
|
/// <summary>
|
|||
|
/// 포인트 사용(해피포인트)
|
|||
|
/// </summary>
|
|||
|
public string SetPosMenuKey { set { this.m_sPosMenuKey = value; } }
|
|||
|
|
|||
|
private string m_sHappyPointSave;
|
|||
|
/// <summary>
|
|||
|
/// 해피포인트 카드등록 구분(0:카드등록, 1:적립등록)
|
|||
|
/// </summary>
|
|||
|
public string SetHappyPointSave { set { this.m_sHappyPointSave = value; } }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 입력구분
|
|||
|
/// </summary>
|
|||
|
private string m_sInPutType = "";
|
|||
|
/// <summary>
|
|||
|
/// 입력데이터
|
|||
|
/// </summary>
|
|||
|
private string m_sInPutData = "";
|
|||
|
/// <summary>
|
|||
|
/// 마스킹데이터
|
|||
|
/// </summary>
|
|||
|
private string m_sInMaskData = "";
|
|||
|
/// <summary>
|
|||
|
/// 카드데이터(암호화)
|
|||
|
/// </summary>
|
|||
|
private string m_sInEncData = "";
|
|||
|
/// <summary>
|
|||
|
/// 비밀번호 사용 여부
|
|||
|
/// </summary>
|
|||
|
private bool m_bPassWord = false;
|
|||
|
/// <summary>
|
|||
|
/// 결제포인트 금액
|
|||
|
/// </summary>
|
|||
|
private double m_nUsePoint;
|
|||
|
/// <summary>
|
|||
|
/// 받을금액
|
|||
|
/// </summary>
|
|||
|
private double m_nRemainPayAmt;
|
|||
|
/// <summary>
|
|||
|
/// 조회 성공 여부
|
|||
|
/// </summary>
|
|||
|
private bool m_bSearchSuccess = false;
|
|||
|
|
|||
|
private double m_nDestAmt = 0;
|
|||
|
|
|||
|
#endregion 변수 선언
|
|||
|
|
|||
|
#region 생성자 & 소멸자 & 폼초기화
|
|||
|
public frmPntHappyPointSave_China()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
|
|||
|
base.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint | ControlStyles.ResizeRedraw, true);
|
|||
|
//this.UpdateStyles();
|
|||
|
|
|||
|
m_cPosStatus = (PosStatus)StateObject.POS; // POS 기본정보
|
|||
|
m_cTrnStatus = (TranStatus)StateObject.TRAN; // POS 거래정보
|
|||
|
m_cDevStatus = (DeviceStatus)StateObject.DEVICE;
|
|||
|
|
|||
|
m_cDeviceICReader = (IICReaderUs)sManager.InitServiceInstance(ServiceLists.AGENT_OLEDEVICE.DLL, ServiceLists.AGENT_OLEDEVICE.DEVICE_ICREADER);
|
|||
|
m_cDeviceSignPad = (ISignPadUs)sManager.InitServiceInstance(ServiceLists.AGENT_OLEDEVICE.DLL, ServiceLists.AGENT_OLEDEVICE.DEVICE_SIGNPAD);
|
|||
|
m_cDataService = (IDataProcessUs)sManager.InitServiceInstance(ServiceLists.ASV_DATA_PROCESS.DLL, ServiceLists.ASV_DATA_PROCESS.DATA_SERVICE);
|
|||
|
m_cDataCommon = (IDataCommonUs)sManager.InitServiceInstance(ServiceLists.ASV_DATA_PROCESS.DLL, ServiceLists.ASV_DATA_PROCESS.DATA_COMMON);
|
|||
|
m_cHappyPoint = (IPaymentUs)sManager.InitServiceInstance(ServiceLists.BSV_PAYMENT.DLL, ServiceLists.BSV_PAYMENT.POINTHAPPYPOINT_SAVE_CHINA);
|
|||
|
|
|||
|
delegatePos = new PosOLEDevice.DelegateOlePos(OnDeviceEvent);
|
|||
|
}
|
|||
|
|
|||
|
private void frmPntHappyPointSave_China_Load(object sender, EventArgs e)
|
|||
|
{
|
|||
|
UserLog.WriteLogFile(UserCom.LOG_IOS, System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", "");
|
|||
|
|
|||
|
InitControl();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
private void frmPntHappyPointSave_China_Activated(object sender, EventArgs e)
|
|||
|
{
|
|||
|
PosOLEDevice.SetEventHandle(delegatePos);
|
|||
|
}
|
|||
|
|
|||
|
private void frmPntHappyPointSave_China_Deactivate(object sender, EventArgs e)
|
|||
|
{
|
|||
|
PosOLEDevice.SetEventHandle(null);
|
|||
|
}
|
|||
|
|
|||
|
private void frmPntHappyPointSave_China_FormClosing(object sender, FormClosingEventArgs e)
|
|||
|
{
|
|||
|
InDataToZeroFill();
|
|||
|
UserLog.WriteLogFile(UserCom.LOG_IOS, System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", lblTitle.Text);
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 폼 컨트롤 초기화
|
|||
|
/// </summary>
|
|||
|
private void InitControl()
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
this.Location = new Point(0, 50);
|
|||
|
this.Size = new Size(1024, 525);
|
|||
|
// 이미지 로딩 처리
|
|||
|
//picBack.Image = ImageManager.GetImage(BaseCom.NxImgPath, ImageManager.POP_SIZE_S);
|
|||
|
//picBack.Location = new Point(216, 123);
|
|||
|
FormManager.SetFormAllControlFont(this, m_cPosStatus.Base.FONT);
|
|||
|
FormManager.SetTextBoxGlobalInfo(this, m_cPosStatus.Global.m_stCultureMaster.nGroupingDigits, m_cPosStatus.Global.m_stCultureMaster.strGroupingSymbol
|
|||
|
, m_cPosStatus.Global.m_stCultureMaster.nDecimalDigits, m_cPosStatus.Global.m_stCultureMaster.strDecimalSymbol);
|
|||
|
|
|||
|
btnExit.Image = ImageManager.GetImage(BaseCom.NxImgPath, ImageManager.BTN_CLOSE);
|
|||
|
if (btnExit.Image != null) btnExit.Text = "";
|
|||
|
|
|||
|
btnEnter.BackColor = CmUtil.GetColorToString(m_cPosStatus.ScnMst.ThemeColor);
|
|||
|
|
|||
|
if (m_sPosMenuKey == PosKey.MENU_KEY.HAPPY_POINT_USE_CHINA) lblTitle.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0770);
|
|||
|
else if (m_sPosMenuKey == PosKey.MENU_KEY.HAPPY_POINT_SAVE_CHINA) lblTitle.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0794);
|
|||
|
|
|||
|
//lblRemainAmt.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0037);
|
|||
|
lblCardNo.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0051);
|
|||
|
lblUsablePoint.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0070);
|
|||
|
lblUsePoint.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0728);
|
|||
|
lblSaleAmt.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0098);
|
|||
|
|
|||
|
btnSearch.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0004);
|
|||
|
btnEnter.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0126);
|
|||
|
|
|||
|
if (m_sHappyPointSave == "1") // 해피포인트 카드등록 구분(0:카드등록, 1:적립등록)
|
|||
|
{
|
|||
|
// 해피포인트 적립
|
|||
|
btnEnter.Text = MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0134);
|
|||
|
}
|
|||
|
|
|||
|
m_nRemainPayAmt = m_cTrnStatus.Sale.RemainPayAmt;
|
|||
|
|
|||
|
InitPayMainBack(m_cPosStatus, m_cDataCommon, m_sPosMenuKey, PosConst.MOT_MSG_TYPE.PAY_STEP_1, "");
|
|||
|
|
|||
|
ClearCardInfo(); // 카드 입력 정보 클리어
|
|||
|
bNotDoubleClik = false;
|
|||
|
|
|||
|
// 해피포인트 카드 등록 여부 체크
|
|||
|
ArrayList alTrEtc = (ArrayList)StateObject.GetItemObject(Column.TR_ETC.ITEM);
|
|||
|
foreach (Column.TR_ETC.DATA cEtcItem in alTrEtc)
|
|||
|
{
|
|||
|
if (cEtcItem.CANCEL_DIV == PosConst.CANCEL_DIV.CANCEL) continue;
|
|||
|
|
|||
|
if (cEtcItem.ETC_WAY_CD == ItemConst.TR_ITEM_ID.ETC_INFO_ITEM && cEtcItem.ETC_DTL_CD_01 == ItemConst.TR_ITEM_ID.ETC_INFO.POINT_SAVE_CHINA)
|
|||
|
{
|
|||
|
m_sInPutType = cEtcItem.OCCUR_ENTRY_05; // 입력구분
|
|||
|
m_sInPutData = cEtcItem.OCCUR_ENTRY_01; // 입력데이터
|
|||
|
m_sInMaskData = cEtcItem.OCCUR_ENTRY_01; // 마스킹
|
|||
|
m_sInEncData = cEtcItem.CanFiller1; // 카드데이터
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// 해피포인트 기본적립 대상 금액 획득
|
|||
|
m_cTrnStatus.Head.AftSavePoint = m_cDataService.GetPluTagetAmount(PosKey.MENU_KEY.HAPPY_POINT_SAVE_CHINA);
|
|||
|
m_nDestAmt = m_cTrnStatus.Head.AftSavePoint; // 적립대상금액
|
|||
|
txtSaleAmt.Text = m_cPosStatus.Global.NumericTOCurrency(m_nDestAmt);
|
|||
|
|
|||
|
//ICampaignUs cCampaingMain = (ICampaignUs)sManager.InitServiceInstance(ServiceLists.ASV_CAMPAIGN.DLL, ServiceLists.ASV_CAMPAIGN.CAMPAIGN_MAIN);
|
|||
|
//cCampaingMain.ExecuteCampaignHappyPointSave(PosConst.CAMPAIGN_PAY_KEY.HP_SAVE, null);
|
|||
|
|
|||
|
double nSavePoint = CmUtil.MathRounds(CmUtil.MathAmtPercent(m_cTrnStatus.Head.AftSavePoint, m_cPosStatus.Mst.HpyPntAccumRate), PosConst.MATH_ROUND.CEILING, 2);
|
|||
|
//double nSavePoint = m_cDataCommon.ExecTermCoopCmpPayDc(ItemConst.TR_ITEM_ID.ETC_INFO_ITEM, ItemConst.TR_ITEM_ID.ETC_INFO.POINT_SAVE_CHINA, "", m_nDestAmt); // 적립예정 포인트
|
|||
|
txtUsePoint.Text = m_cPosStatus.Global.NumericTOCurrency(nSavePoint);
|
|||
|
|
|||
|
// 기능 버튼 설정 체크
|
|||
|
FormManager.SetbtnMenu(txtCardNo, m_cDevStatus.ICReader.UseYn, btnMenu1, btnMenu2, btnMenu3, btnMenu4);
|
|||
|
|
|||
|
txtCardNo.Value = m_sInMaskData;
|
|||
|
txtCardNo.ReadOnly = false;
|
|||
|
|
|||
|
if (m_sInPutData != "")
|
|||
|
{
|
|||
|
if (SearchTxtInPut() == true)
|
|||
|
txtCardNo.Select();
|
|||
|
else
|
|||
|
txtCardNo.Select();
|
|||
|
}
|
|||
|
else
|
|||
|
txtCardNo.Select();
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 카드 입력 정보 클리어
|
|||
|
/// </summary>
|
|||
|
private void ClearCardInfo()
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
m_sInPutType = ""; // 입력구분
|
|||
|
m_sInPutData = ""; // 입력데이터
|
|||
|
m_sInMaskData = ""; // 마스킹
|
|||
|
m_sInEncData = ""; // 카드데이터
|
|||
|
|
|||
|
m_nUsePoint = 0; // 결제포인트
|
|||
|
m_bSearchSuccess = false;
|
|||
|
|
|||
|
txtUsablePoint.Text = "";
|
|||
|
txtUsePoint.Text = "";
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 버튼 입력 처리
|
|||
|
/// <summary>
|
|||
|
/// 버튼 입력 처리
|
|||
|
/// </summary>
|
|||
|
/// <param name="sender"></param>
|
|||
|
/// <param name="e"></param>
|
|||
|
private void btnProc_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
if (bNotDoubleClik) return;
|
|||
|
bNotDoubleClik = true;
|
|||
|
if (((Cosmos.UI.CsmButton)sender) == btnSearch) // 조회
|
|||
|
{
|
|||
|
SearchTxtInPut();
|
|||
|
}
|
|||
|
else if (((Cosmos.UI.CsmButton)sender) == btnEnter) // 승인
|
|||
|
{
|
|||
|
CompleteTxtInPut();
|
|||
|
}
|
|||
|
else if (((Cosmos.UI.CsmButton)sender) == btnExit)
|
|||
|
{
|
|||
|
ArrayList alTrEtc = (ArrayList)StateObject.GetItemObject(Column.TR_ETC.ITEM);
|
|||
|
foreach (Column.TR_ETC.DATA cEtcItem in alTrEtc)
|
|||
|
{
|
|||
|
if (cEtcItem.CANCEL_DIV == PosConst.CANCEL_DIV.CANCEL) continue;
|
|||
|
|
|||
|
if (cEtcItem.ETC_WAY_CD == ItemConst.TR_ITEM_ID.ETC_INFO_ITEM && cEtcItem.ETC_DTL_CD_01 == ItemConst.TR_ITEM_ID.ETC_INFO.POINT_SAVE_CHINA)
|
|||
|
{
|
|||
|
cEtcItem.CANCEL_DIV = PosConst.CANCEL_DIV.CANCEL;
|
|||
|
if (m_sHappyPointSave != "1") // 해피포인트 카드등록 구분(0:카드등록, 1:적립등록))
|
|||
|
{
|
|||
|
// 캠페인 취소 처리
|
|||
|
ICampaignUs cCampaingMain = (ICampaignUs)sManager.InitServiceInstance(ServiceLists.ASV_CAMPAIGN.DLL, ServiceLists.ASV_CAMPAIGN.CAMPAIGN_MAIN);
|
|||
|
cCampaingMain.ExecuteCampaignPluHappyPoint("", false, "", "", "", ""); // 상품 캠페인 계산
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
bNotDoubleClik = false;
|
|||
|
|
|||
|
this.DialogResult = DialogResult.Cancel;
|
|||
|
this.Close();
|
|||
|
return;
|
|||
|
}
|
|||
|
//padInPut.SetActiveFocus();
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
bNotDoubleClik = false;
|
|||
|
}
|
|||
|
bNotDoubleClik = false;
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 텍스트박스 키 입력 이벤트 처리
|
|||
|
/// <summary>
|
|||
|
/// 텍스트박스 키 입력 이벤트 처리
|
|||
|
/// </summary>
|
|||
|
/// <param name="sender"></param>
|
|||
|
/// <param name="sFuncValue"></param>
|
|||
|
private void txtEditBox_EditBoxKeyDownEvent(object sender, string sFuncValue)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
if (bNotDoubleClik) return;
|
|||
|
bNotDoubleClik = true;
|
|||
|
|
|||
|
try
|
|||
|
{
|
|||
|
if (sFuncValue == PosKey.MENU_KEY.ENTER)
|
|||
|
{
|
|||
|
if (sender == null || sender is Cosmos.UI.CsmPosEditBox)
|
|||
|
{
|
|||
|
if (((Cosmos.UI.CsmPosEditBox)sender) == txtCardNo)
|
|||
|
{
|
|||
|
if (txtCardNo.Text == "")
|
|||
|
{
|
|||
|
if (GetIcCardData() == false) return; // 카드정보 읽기
|
|||
|
}
|
|||
|
|
|||
|
if (CheckTxtInPut(sender) == false) return;
|
|||
|
if (SearchTxtInPut() == false) return; // 조회
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if (sender == null || sender is Cosmos.UI.CsmLabel)
|
|||
|
{
|
|||
|
if (((Cosmos.UI.CsmLabel)sender) == txtUsePoint)
|
|||
|
{
|
|||
|
if (CheckTxtInPut(sender) == false) return;
|
|||
|
|
|||
|
CompleteTxtInPut(); // 승인 처리
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
else if (sFuncValue == PosKey.MENU_KEY.CLEAR)
|
|||
|
{
|
|||
|
if (((Cosmos.UI.CsmPosEditBox)sender) == txtCardNo) ClearCardInfo(); // 카드 입력 정보 클리어
|
|||
|
|
|||
|
if (((Cosmos.UI.CsmPosEditBox)sender).ReadOnly == false) ((Cosmos.UI.CsmPosEditBox)sender).Text = "";
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
finally
|
|||
|
{
|
|||
|
bNotDoubleClik = false;
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
bNotDoubleClik = false;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 텍스트박스 활성화 처리
|
|||
|
/// </summary>
|
|||
|
/// <param name="sender"></param>
|
|||
|
/// <param name="e"></param>
|
|||
|
private void txtEditBox_EnterEvent(object sender, EventArgs e)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
padInPut.SetActiveControl = (Control)sender;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 텍스트박스 입력 유효성 체크
|
|||
|
/// <summary>
|
|||
|
/// 텍스트박스 입력 유효성 체크
|
|||
|
/// </summary>
|
|||
|
/// <param name="sender"></param>
|
|||
|
/// <returns></returns>
|
|||
|
private bool CheckTxtInPut(object sender)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
// 특정 문자값 제거
|
|||
|
try
|
|||
|
{
|
|||
|
if (m_cDevStatus.Msr.STX != "" && txtCardNo.Value.StartsWith(m_cDevStatus.Msr.STX)) txtCardNo.Value = txtCardNo.Value.Substring(1);
|
|||
|
|
|||
|
int iLastEtx = txtCardNo.Value.LastIndexOf(m_cDevStatus.Msr.ETX);
|
|||
|
if (m_cDevStatus.Msr.ETX != "" && iLastEtx > 0) txtCardNo.Value = CmUtil.MidH(txtCardNo.Value, 0, iLastEtx);
|
|||
|
}
|
|||
|
catch { }
|
|||
|
|
|||
|
// 카드번호 길이 체크
|
|||
|
if (sender == null || sender is Cosmos.UI.CsmPosEditBox)
|
|||
|
{
|
|||
|
if (sender == null || ((Cosmos.UI.CsmPosEditBox)sender) == txtCardNo)
|
|||
|
{
|
|||
|
if (txtCardNo.Value.Length < 10)
|
|||
|
{
|
|||
|
WinManager.ErrorMessage(POS_MESSAGE.ERROR.MSG_0037);
|
|||
|
txtCardNo.Focus();
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
//#Rhee,20171101 중국 위쳇전자전표,해피포인트 코드 구분 하여 카드 번호 체크 start
|
|||
|
// 리딩한 카드 번호 로그저장
|
|||
|
if (m_cPosStatus.Base.CmpCd.ToUpper().Equals("PCCN"))
|
|||
|
{
|
|||
|
UserLog.WriteLogFile(UserCom.LOG_OP, System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", "@@Reading CardNo=" + txtCardNo.Value);
|
|||
|
}
|
|||
|
|
|||
|
if ((m_sPosMenuKey == PosKey.MENU_KEY.HAPPY_POINT_USE_CHINA) || (m_sPosMenuKey == PosKey.MENU_KEY.HAPPY_POINT_SAVE_CHINA))
|
|||
|
// 중국 해피포인트(사용, 적립) 이면.. 카드번호 16자리로 보정.
|
|||
|
{
|
|||
|
txtCardNo.Value = CmUtil.MidH(txtCardNo.Value, 0, 16);
|
|||
|
}
|
|||
|
//#Rhee,20171101 중국 위쳇전자전표,해피포인트 코드 구분 하여 카드 번호 체크 end
|
|||
|
|
|||
|
|
|||
|
if (m_sInEncData == "")
|
|||
|
{
|
|||
|
if (m_sInPutData == "")
|
|||
|
{
|
|||
|
//#Rhee,20170905 중국 위쳇전자전표(해피포인트) 바코드 결제오류 수정 start
|
|||
|
// 바코드 : 0000013621204186D73297726 (D문자 누락되어 추가 함-바코더리더 컴포넌트에서 문자 삭제로 추정)
|
|||
|
|
|||
|
// 변경
|
|||
|
if (CmUtil.MidH(txtCardNo.Value, 0, 4) == "0000" && txtCardNo.Value.Length > 16)
|
|||
|
// 위쳇전자전표(해피포인트) 바코드 이면..
|
|||
|
{
|
|||
|
m_sInPutData = CmUtil.MidH(txtCardNo.Value, 0, 16) + "D" + CmUtil.RightH(txtCardNo.Value, 8);
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
m_sInPutData = txtCardNo.Value;
|
|||
|
}
|
|||
|
// 기존
|
|||
|
//m_sInPutData = txtCardNo.Value;
|
|||
|
|
|||
|
//#Rhee,20170905 중국 위쳇전자전표(해피포인트) 바코드 결제오류 수정 End
|
|||
|
|
|||
|
if (m_sInPutData.IndexOf("=") > 0)
|
|||
|
{
|
|||
|
m_sInPutType = PosConst.POS_VAN_MASTER.INPUT_TYPE.VAN_SWIP;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
m_sInPutType = PosConst.POS_VAN_MASTER.INPUT_TYPE.VAN_KEYIN;
|
|||
|
}
|
|||
|
}
|
|||
|
if (EncryptedCardNo(m_sInPutData, ref m_sInMaskData, ref m_sInEncData) == false) return false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if (sender == null || sender is Cosmos.UI.CsmLabel)
|
|||
|
{
|
|||
|
// 결제포인트 체크
|
|||
|
if (sender == null || ((Cosmos.UI.CsmLabel)sender) == txtUsePoint)
|
|||
|
{
|
|||
|
//if (m_cDataService.DoubleParse(txtUsablePoint.Text) == 0)
|
|||
|
//{
|
|||
|
// WinManager.ErrorMessage(POS_MESSAGE.ERROR.MSG_0327);
|
|||
|
// txtCardNo.Focus();
|
|||
|
// return false;
|
|||
|
//}
|
|||
|
if (m_cDataService.DoubleParse(txtSaleAmt.Text) == 0)
|
|||
|
{
|
|||
|
WinManager.ErrorMessage(POS_MESSAGE.ERROR.MSG_0597);
|
|||
|
//txtUsePoint.Focus();
|
|||
|
return false;
|
|||
|
}
|
|||
|
//if (CmUtil.AmountCut(m_cDataService.DoubleParse(txtUsePoint.Text), CmUtil.IntParse(m_cPosStatus.Mst.PayRudDwLoc)) != m_cDataService.DoubleParse(txtUsePoint.Text))
|
|||
|
//{
|
|||
|
// WinManager.ErrorMessage(POS_MESSAGE.ERROR.MSG_0036); // 입력한 금액은 입력 불가 단위 입니다.
|
|||
|
// txtUsePoint.Focus();
|
|||
|
// return false;
|
|||
|
//}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 입력 완료 처리
|
|||
|
/// <summary>
|
|||
|
/// 포인트 조회 처리
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
private bool SearchTxtInPut()
|
|||
|
{
|
|||
|
string sRet = UserCom.RST_ERR;
|
|||
|
try
|
|||
|
{
|
|||
|
if (CheckTxtInPut(txtCardNo) == false) return false;
|
|||
|
|
|||
|
m_nUsePoint = 0; // 결제포인트
|
|||
|
|
|||
|
txtUsablePoint.Text = "";
|
|||
|
txtUsePoint.Text = "";
|
|||
|
m_bSearchSuccess = false;
|
|||
|
|
|||
|
// 조회
|
|||
|
string[] saRecvdData = null;
|
|||
|
sRet = m_cHappyPoint.SearchPayment(new string[] { m_sPosMenuKey, m_sInPutType, m_sInPutData, "0" }, ref saRecvdData);
|
|||
|
if (sRet != UserCom.RST_OK) return false;
|
|||
|
|
|||
|
Column.TR_ETC.DATA cEtcItem = (Column.TR_ETC.DATA)m_cHappyPoint.GetPayment(new string[] { });
|
|||
|
|
|||
|
// 해피포인트 기본적립 대상 금액 획득
|
|||
|
m_cTrnStatus.Head.AftSavePoint = m_cDataService.GetPluTagetAmount(PosKey.MENU_KEY.HAPPY_POINT_SAVE_CHINA);
|
|||
|
|
|||
|
//// 캠페인(해피포인트 적립) 설정 처리
|
|||
|
//ICampaignUs cCampaingMain = (ICampaignUs)sManager.InitServiceInstance(ServiceLists.ASV_CAMPAIGN.DLL, ServiceLists.ASV_CAMPAIGN.CAMPAIGN_MAIN);
|
|||
|
//cCampaingMain.ExecuteCampaignHappyPointSave(PosConst.CAMPAIGN_PAY_KEY.HP_SAVE, cEtcItem);
|
|||
|
|
|||
|
m_nDestAmt = m_cTrnStatus.Head.AftSavePoint; // 적립대상금액
|
|||
|
txtSaleAmt.Text = m_cPosStatus.Global.NumericTOCurrency(m_nDestAmt);
|
|||
|
|
|||
|
// 적립예정포인트
|
|||
|
double nSavePoint = CmUtil.MathRounds(CmUtil.MathAmtPercent(m_cTrnStatus.Head.AftSavePoint, m_cPosStatus.Mst.HpyPntAccumRate), PosConst.MATH_ROUND.CEILING, 2);
|
|||
|
//double nSavePoint = m_cDataCommon.ExecTermCoopCmpPayDc(cEtcItem.ETC_WAY_CD, cEtcItem.ETC_DTL_CD_01, "", m_cTrnStatus.Head.AftSavePoint); // 적립예정 포인트
|
|||
|
txtUsePoint.Text = m_cPosStatus.Global.NumericTOCurrency(nSavePoint);
|
|||
|
|
|||
|
//if (m_cTrnStatus.Head.AftSavePoint < 1000) // 적립 대상금액 없음
|
|||
|
//{
|
|||
|
// WinManager.ErrorMessage(POS_MESSAGE.ERROR.MSG_0448);
|
|||
|
// txtCardNo.SelectText();
|
|||
|
// return false;
|
|||
|
//}
|
|||
|
|
|||
|
// 가용포인트
|
|||
|
txtUsablePoint.Text = m_cPosStatus.Global.NumericTOCurrency(cEtcItem.AMT_ENTRY_04);
|
|||
|
|
|||
|
m_bSearchSuccess = true;
|
|||
|
return true;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 포인트 사용 승인 처리
|
|||
|
/// </summary>
|
|||
|
/// <param name="nFlowMode"></param>
|
|||
|
/// <returns></returns>
|
|||
|
private bool CompleteTxtInPut()
|
|||
|
{
|
|||
|
string sRet = UserCom.RST_ERR;
|
|||
|
try
|
|||
|
{
|
|||
|
if (CheckTxtInPut(null) == false) return false;
|
|||
|
|
|||
|
if (m_bSearchSuccess == false)
|
|||
|
{
|
|||
|
// 조회
|
|||
|
if (SearchTxtInPut() == false) return false;
|
|||
|
}
|
|||
|
|
|||
|
// 포인트 사용 승인 처리
|
|||
|
sRet = m_cHappyPoint.SetPayment(new string[] { m_sPosMenuKey, m_sInPutType, m_sInPutData, m_nDestAmt.ToString(), m_sHappyPointSave });
|
|||
|
//sRet = m_cHappyPoint.SetPayment(new string[] { m_sPosMenuKey, m_sInPutType, m_sInPutData, m_cDataService.DoubleParse(txtUsePoint.Text).ToString(), m_sHappyPointSave });
|
|||
|
if (sRet != UserCom.RST_OK) return false;
|
|||
|
|
|||
|
this.DialogResult = DialogResult.OK;
|
|||
|
this.Close();
|
|||
|
|
|||
|
return true;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region DeviceEvent 관련
|
|||
|
/// <summary>
|
|||
|
/// DeviceEvent 관련
|
|||
|
/// </summary>
|
|||
|
/// <param name="sDevice"></param>
|
|||
|
/// <param name="sData1"></param>
|
|||
|
/// <param name="sData2"></param>
|
|||
|
/// <param name="sData3"></param>
|
|||
|
public void OnDeviceEvent(string sDevice, string sData1, string sData2, string sData3)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
if (bNotDoubleClik) return;
|
|||
|
bNotDoubleClik = true;
|
|||
|
|
|||
|
switch (sDevice)
|
|||
|
{
|
|||
|
case PosConst.OPOS_DEVICE.MSR:
|
|||
|
this.Invoke(new EventHandler(OnMSREvent));
|
|||
|
break;
|
|||
|
case PosConst.OPOS_DEVICE.SCANNER:
|
|||
|
this.Invoke(new EventHandler(OnScannerEvent));
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
bNotDoubleClik = false;
|
|||
|
}
|
|||
|
bNotDoubleClik = false;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// MSR Event
|
|||
|
/// </summary>
|
|||
|
/// <param name="source"></param>
|
|||
|
/// <param name="e"></param>
|
|||
|
private void OnMSREvent(object source, EventArgs e)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
string sMsrData = m_cDevStatus.Msr.Track2Data;
|
|||
|
if (sMsrData.Length > 0)
|
|||
|
{
|
|||
|
m_sInEncData = "";
|
|||
|
m_sInPutType = PosConst.POS_VAN_MASTER.INPUT_TYPE.VAN_SWIP;
|
|||
|
m_sInPutData = sMsrData;
|
|||
|
|
|||
|
txtCardNo.Value = m_sInPutData.Length > 16 ? m_sInPutData.Substring(0, 16) : m_sInPutData;
|
|||
|
|
|||
|
txtEditBox_EditBoxKeyDownEvent(txtCardNo, PosKey.MENU_KEY.ENTER);
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// 스캐너 이벤트 처리
|
|||
|
/// </summary>
|
|||
|
/// <param name="source"></param>
|
|||
|
/// <param name="e"></param>
|
|||
|
private void OnScannerEvent(object source, EventArgs e)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
string sScanData = m_cDevStatus.Scanner.DataLabel;
|
|||
|
if (sScanData.Length > 0)
|
|||
|
{
|
|||
|
m_sInEncData = "";
|
|||
|
m_sInPutData = sScanData;
|
|||
|
if (m_sInPutData.Length > 16 && CmUtil.IsNumber(m_sInPutData.Substring(16, 1)) == false)
|
|||
|
{
|
|||
|
m_sInPutType = PosConst.POS_VAN_MASTER.INPUT_TYPE.VAN_MOBILE_SWIP;
|
|||
|
txtCardNo.Value = m_sInPutData.Substring(0, 16);
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
m_sInPutType = PosConst.POS_VAN_MASTER.INPUT_TYPE.VAN_KEYIN;
|
|||
|
txtCardNo.Value = m_sInPutData;
|
|||
|
}
|
|||
|
|
|||
|
txtEditBox_EditBoxKeyDownEvent(txtCardNo, PosKey.MENU_KEY.ENTER);
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 카드 번호 암호화
|
|||
|
/// </summary>
|
|||
|
/// <param name="sInData"></param>
|
|||
|
/// <param name="sInMaskData"></param>
|
|||
|
/// <param name="sInEncData"></param>
|
|||
|
/// <returns></returns>
|
|||
|
private bool EncryptedCardNo(string sInData, ref string sInMaskData, ref string sInEncData)
|
|||
|
{
|
|||
|
string sEncData = sInData;
|
|||
|
|
|||
|
try
|
|||
|
{
|
|||
|
sEncData = m_cDeviceICReader.GetEncryptedCardNo(sInData).Trim();
|
|||
|
if (CmUtil.MidH(sEncData, 0, 2) == "00")
|
|||
|
{
|
|||
|
sInEncData = CmUtil.MidH(sEncData, 2, 512).Trim(); // 암호화 데이터
|
|||
|
sInMaskData = CmUtil.MidH(sEncData, 514, sEncData.Length - 514).Trim(); // 마스킹 데이터
|
|||
|
|
|||
|
return true;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
//암호화 처리 실패!
|
|||
|
UserLog.WriteLogFile(UserCom.LOG_ERROR, System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", "Fail =>" + sInData);
|
|||
|
WinManager.ErrorMessage(POS_MESSAGE.ERROR.MSG_0280);
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// IC 카드 정보 입력 처리
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
private bool GetIcCardData()
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
txtCardNo.Value = "";
|
|||
|
ClearCardInfo(); // 카드 입력 정보 클리어
|
|||
|
|
|||
|
string sRsvStr = "";
|
|||
|
if (m_cDeviceICReader.GetCardInfo_ICReader(PosConst.IC_READER_TRAN_TYPE.POINT, CmUtil.IntParse(txtUsePoint.Text), ref sRsvStr) == true)
|
|||
|
{
|
|||
|
if (CmUtil.MidH(sRsvStr, 0, 2) == "00")
|
|||
|
{
|
|||
|
m_sInEncData = CmUtil.MidH(sRsvStr, 6, 512).Trim();
|
|||
|
m_sInMaskData = CmUtil.MidH(sRsvStr, 1030, 37).Trim();
|
|||
|
m_sInPutData = m_sInMaskData;
|
|||
|
m_sInPutType = PosConst.POS_VAN_MASTER.INPUT_TYPE.VAN_SWIP;
|
|||
|
|
|||
|
txtCardNo.Value = m_sInPutData.Length > 16 ? m_sInPutData.Substring(0, 16) : m_sInPutData;
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|
|||
|
// WinManager.ErrorMessage(POS_MESSAGE.ERROR.MSG_0321);
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// RF 카드 정보 입력 처리
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
private bool GetRfCardData()
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
txtCardNo.Value = "";
|
|||
|
ClearCardInfo(); // 카드 입력 정보 클리어
|
|||
|
|
|||
|
//카드 정보 입력
|
|||
|
string sRsvStr = "";
|
|||
|
if (m_cDeviceICReader.GetRfCreditCardInfo("1", m_cTrnStatus.Head.NetSaleAmt.ToString(), "", "", "", ref sRsvStr) == false)
|
|||
|
{
|
|||
|
if (sRsvStr != "") WinManager.ErrorMessage(sRsvStr);
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
m_sInEncData = CmUtil.MidH(sRsvStr, 2, 512).Trim();
|
|||
|
m_sInMaskData = CmUtil.MidH(sRsvStr, 514, 40).Trim();
|
|||
|
|
|||
|
m_sInPutData = m_sInMaskData;
|
|||
|
m_sInPutType = PosConst.POS_VAN_MASTER.INPUT_TYPE.VAN_RF;
|
|||
|
|
|||
|
txtCardNo.Value = m_sInPutData.Length > 16 ? m_sInPutData.Substring(0, 16) : m_sInPutData;
|
|||
|
return true;
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 비밀번호 입력 처리
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
private bool GetPinPadData()
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
//txtPassword.Text = "";
|
|||
|
|
|||
|
string sPassWord = "";
|
|||
|
if (m_cDeviceSignPad.GetMsg_SignPad(false, MessageManager.GetLabelMessage(POS_MESSAGE.LABEL.MSG_0013), ref sPassWord, 4) == true)
|
|||
|
{
|
|||
|
//txtPassword.Text = sPassWord;
|
|||
|
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
WinManager.ExceptionMessage(System.Reflection.Assembly.GetExecutingAssembly().ManifestModule.Name,
|
|||
|
System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "()", ex.Message);
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 여전법 대응
|
|||
|
/// <summary>
|
|||
|
/// ZeroFill 초기화
|
|||
|
/// </summary>
|
|||
|
private void InDataToZeroFill()
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
|
|||
|
//여전법 대응!
|
|||
|
//////////////////////////////////////////////////////////////////////////////////
|
|||
|
CmUtil.ZeroFillClear(ref m_sInPutData);
|
|||
|
CmUtil.ZeroFillClear(ref m_sInEncData);
|
|||
|
CmUtil.ZeroFillClear(ref m_sInMaskData);
|
|||
|
//////////////////////////////////////////////////////////////////////////////////
|
|||
|
|
|||
|
txtCardNo.Value = string.Empty;
|
|||
|
}
|
|||
|
catch (Exception) { }
|
|||
|
|
|||
|
}
|
|||
|
#endregion 여전법 대응
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|