Ejemplo n.º 1
0
 public static void ShowWndApplyCardWithCurentCheck()
 {
     try
     {
         Utils.ToCardLog("ShowWndApplyCardWithCurentCheck");
         Check CurChk = AlohaTSClass.GetCheckById((int)AlohaTSClass.GetCurentCheckId());
         FayRetailCheckInfo FRCheckInfo = GetRetailCheckInfobyAlohaChk(CurChk);
         ShowWndApplyCard(FRCheckInfo);
     }
     catch (Exception e)
     {
         Utils.ToCardLog("Error ShowWndApplyCardWithCurentCheck " + e.Message);
     }
 }
Ejemplo n.º 2
0
 internal static void PrintCurentPrecheckOnFR()
 {
     try
     {
         Utils.ToCardLog("PrintCurentPrecheckOnFR ");
         int    chId = (int)AlohaTSClass.GetCurentCheckId();
         string s    = AlohaTSClass.GetFRPredcheck(chId);
         ToShtrih.PrintCardCheck(s, false);
     }
     catch (Exception e)
     {
         Utils.ToCardLog("Error PrintCurentPrecheckOnFR " + e.Message);
     }
 }
Ejemplo n.º 3
0
        public static FayRetailCheckInfo GetCurentFRCheck()
        {
            Check CurChk = AlohaTSClass.GetCheckById((int)AlohaTSClass.GetCurentCheckId());

            return(GetRetailCheckInfobyAlohaChk(CurChk));
        }