Beispiel #1
0
        /// <summary>
        /// Печатаем чек
        /// </summary>
        /// <param name="check">Строка для печати</param>
        /// <returns>Напечатался или нет</returns>
        public bool PrintFromBytes(byte[] check)
        {
            switch (PrnModel)
            {
            case Model.T400:
                if (t400 == null)
                {
                    if (this.port != null)
                    {
                        t400 = new T400(this.port);
                    }
                    else
                    {
                        Initialize();
                    }
                }

                if (t400 == null)
                {
                    return(false);
                }

                return(t400.PrintFromBytes(check));

            case Model.ICT:
                if (ict == null)
                {
                    if (this.port != null)
                    {
                        ict = new ICT(this.port);
                    }
                    else
                    {
                        Initialize();
                    }
                }
                if (ict == null)
                {
                    return(false);
                }

                return(ict.PrintFromBytes(check));

            case Model.VKP80:
                if (vkp == null)
                {
                    if (this.port != null)
                    {
                        vkp = new VKP80(this.port);
                    }
                    else
                    {
                        Initialize();
                    }
                }
                if (vkp == null)
                {
                    return(false);
                }


                return(vkp.PrintFromBytes(check));

            case Model.AV268:
                if (av == null)
                {
                    if (this.port != null)
                    {
                        av = new AV286(this.port);
                    }
                    else
                    {
                        Initialize();
                    }
                }
                if (av == null)
                {
                    return(false);
                }

                return(av.PrintFromBytes(check));

            case Model.CITIZEN:
                if (cit == null)
                {
                    if (this.port != null)
                    {
                        cit = new Citizen(this.port);
                    }
                    else
                    {
                        Initialize();
                    }
                }
                if (cit == null)
                {
                    return(false);
                }

                return(cit.PrintFromBytes(check));

            case Model.TUP900:
                if (tup == null)
                {
                    if (this.port != null)
                    {
                        tup = new Tup900(this.port);
                    }
                    else
                    {
                        Initialize();
                    }
                }
                if (tup == null)
                {
                    return(false);
                }

                return(tup.PrintFromBytes(check));
            }
            return(false);
        }
Beispiel #2
0
        /// <summary>
        /// Тестируем принтер чека
        /// </summary>
        /// <returns>Результат теста прошел/не прошел</returns>
        public bool Test()
        {
            bool p;

            try
            {
                switch (PrnModel)
                {
                case Model.T400:
                    if (t400 == null)
                    {
                        if (this.port != null)
                        {
                            t400 = new T400(this.port);
                        }
                        else
                        {
                            Initialize();
                        }
                    }

                    if (t400 == null)
                    {
                        return(false);
                    }


                    return(t400.Test());

                case Model.ICT:
                    if (ict == null)
                    {
                        if (this.port != null)
                        {
                            ict = new ICT(this.port);
                        }
                        else
                        {
                            Initialize();
                        }
                    }

                    if (ict == null)
                    {
                        return(false);
                    }


                    return(ict.Test());

                case Model.VKP80:
                    if (vkp == null)
                    {
                        if (this.port != null)
                        {
                            vkp = new VKP80(this.port);
                        }
                        else
                        {
                            Initialize();
                        }
                    }

                    if (vkp == null)
                    {
                        return(false);
                    }

                    p            = vkp.Test();
                    ErrorMessage = vkp.ErrMsg;
                    return(p);

                case Model.AV268:
                    if (av == null)
                    {
                        if (this.port != null)
                        {
                            av = new AV286(this.port);
                        }
                        else
                        {
                            Initialize();
                        }
                    }

                    if (av == null)
                    {
                        return(false);
                    }

                    p            = av.Test();
                    ErrorMessage = av.ErrMsg;
                    return(p);

                case Model.CITIZEN:
                    if (cit == null)
                    {
                        if (this.port != null)
                        {
                            cit = new Citizen(this.port);
                        }
                        else
                        {
                            Initialize();
                        }
                    }

                    if (cit == null)
                    {
                        return(false);
                    }

                    p            = cit.Test();
                    ErrorMessage = cit.ErrMsg;
                    return(p);

                case Model.TUP900:
                    if (tup == null)
                    {
                        if (this.port != null)
                        {
                            tup = new Tup900(this.port);
                        }
                        else
                        {
                            Initialize();
                        }
                    }

                    if (tup == null)
                    {
                        return(false);
                    }

                    p            = tup.Test();
                    ErrorMessage = tup.ErrMsg;
                    return(p);
                }
            }
            catch
            {
                return(false);
            }

            return(false);
        }
Beispiel #3
0
        /// <summary>
        /// Печатаем чек
        /// </summary>
        /// <param name="check">Строка для печати</param>
        /// <returns>Напечатался или нет</returns>
        public bool Print(string check)
        {
            switch (PrnModel)
            {
            case Model.T400:
                if (t400 == null)
                {
                    if (this.port != null)
                    {
                        t400 = new T400(this.port);
                    }
                    else
                    {
                        Initialize("");
                    }
                }

                if (t400 == null)
                {
                    return(false);
                }

                return(t400.Print(check));

            case  Model.ICT:
                if (ict == null)
                {
                    if (this.port != null)
                    {
                        ict = new ICT(this.port);
                    }
                    else
                    {
                        Initialize("");
                    }
                }
                if (ict == null)
                {
                    return(false);
                }

                return(ict.Print(check));

            case Model.VKP80:
                if (vkp == null)
                {
                    if (this.port != null)
                    {
                        vkp = new VKP80(this.port);
                    }
                    else
                    {
                        Initialize("");
                    }
                }
                if (vkp == null)
                {
                    return(false);
                }


                return(vkp.Print(check));

            case Model.AV268:
                if (av == null)
                {
                    if (this.port != null)
                    {
                        av = new  AV286(this.port);
                    }
                    else
                    {
                        Initialize("");
                    }
                }
                if (av == null)
                {
                    return(false);
                }

                return(av.Print(check));

            case Model.CITIZEN:
                if (cit == null)
                {
                    if (this.port != null)
                    {
                        cit = new Citizen(this.port);
                    }
                    else
                    {
                        Initialize("");
                    }
                }
                if (cit == null)
                {
                    return(false);
                }

                return(cit.Print(check));

            case Model.TUP900:
                if (tup == null)
                {
                    if (this.port != null)
                    {
                        tup = new Tup900(this.port);
                    }
                    else
                    {
                        Initialize("");
                    }
                }
                if (tup == null)
                {
                    return(false);
                }

                return(tup.Print(check));

            case Model.PRIM21K:
                if (prim21k == null)
                {
                    if (this.port != null)
                    {
                        prim21k = new PRIM21KNF();
                        prim21k.Initialize(this.port);
                    }
                    else
                    {
                        Initialize("prim21k");
                    }
                }

                if (prim21k == null)
                {
                    return(false);
                }

                if (prim21k.PrintPND(check) == 0)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            return(false);
        }
Beispiel #4
0
        public void Initialize()
        {
            List <string> cmports = new List <string>();

            try
            {
                RegistryKey comdevices = Registry.LocalMachine.OpenSubKey("HARDWARE").OpenSubKey("DEVICEMAP").OpenSubKey("SERIALCOMM");
                string[]    devices    = comdevices.GetValueNames();

                foreach (string s in devices)
                {
                    Match m = Regex.Match(s, @"QCUSB_COM", RegexOptions.IgnoreCase);

                    if (m.Success)
                    {
                        Object o1 = comdevices.GetValue(s);
                        cmports.Add(o1.ToString());
                    }
                }
            }
            catch
            {
            }

            string[] availableCom = System.IO.Ports.SerialPort.GetPortNames();

            for (int i = 0; i < availableCom.Length; i++)
            {
                if (cmports.Count > 0)
                {
                    string s = cmports.Find(p => p == availableCom[i]);

                    if (!String.IsNullOrEmpty(s))
                    {
                        continue;
                    }
                }

                try
                {
                    t400 = new T400(availableCom[i]);
                    System.Threading.Thread.Sleep(100);
                    if (t400.Test())
                    {
                        PrnModel = Model.T400;
                        port     = availableCom[i];
                        break;
                    }
                    if (t400 != null)
                    {
                        if (t400.IsOpen())
                        {
                            t400.Close();
                        }
                    }
                }
                catch
                {
                    if (t400 != null)
                    {
                        if (t400.IsOpen())
                        {
                            t400.Close();
                        }
                    }
                }
                try
                {
                    ict = new ICT(availableCom[i]);

                    if (ict.Test())
                    {
                        port     = availableCom[i];
                        PrnModel = Model.ICT;
                        break;
                    }
                    if (ict != null)
                    {
                        if (ict.IsOpen())
                        {
                            ict.Close();
                        }
                    }
                }
                catch
                {
                    if (ict != null)
                    {
                        if (ict.IsOpen())
                        {
                            ict.Close();
                        }
                    }
                }
                System.Threading.Thread.Sleep(100);
                try
                {
                    vkp = new VKP80(availableCom[i]);
                    System.Threading.Thread.Sleep(100);
                    if (vkp.GetVersion() == "VKP80")
                    {
                        PrnModel = Model.VKP80;
                        port     = availableCom[i];
                        break;
                    }
                    if (vkp != null)
                    {
                        if (vkp.IsOpen())
                        {
                            vkp.Close();
                        }
                    }
                }
                catch
                {
                    if (vkp != null)
                    {
                        if (vkp.IsOpen())
                        {
                            vkp.Close();
                        }
                    }
                }
                try
                {
                    av = new AV286(availableCom[i]);
                    System.Threading.Thread.Sleep(100);
                    if (av.Version.IndexOf("AV") != -1)
                    {
                        PrnModel = Model.AV268;
                        port     = availableCom[i];
                        break;
                    }
                    if (av != null)
                    {
                        if (av.IsOpen())
                        {
                            av.Close();
                        }
                    }
                }
                catch
                {
                    if (av != null)
                    {
                        if (av.IsOpen())
                        {
                            av.Close();
                        }
                    }
                }
                try
                {
                    cit = new Citizen(availableCom[i]);
                    System.Threading.Thread.Sleep(100);
                    cit.Test();
                    if (cit.Version.IndexOf("1000") != -1 || cit.Version.IndexOf("700") != -1 || cit.Version.IndexOf("2000") != -1)
                    {
                        PrnModel = Model.CITIZEN;
                        port     = availableCom[i];
                        break;
                    }
                    if (cit != null)
                    {
                        if (cit.IsOpen())
                        {
                            cit.Close();
                        }
                    }
                }
                catch
                {
                    if (cit != null)
                    {
                        if (cit.IsOpen())
                        {
                            cit.Close();
                        }
                    }
                }
                try
                {
                    tup = new Tup900(availableCom[i]);
                    //System.Threading.Thread.Sleep(100);
                    if (tup.Test())
                    {
                        PrnModel = Model.TUP900;
                        port     = availableCom[i];
                        break;
                    }
                    if (tup != null)
                    {
                        tup.Close();
                    }
                }
                catch
                {
                    if (tup != null)
                    {
                        tup.Close();
                    }
                }
            }
        }
Beispiel #5
0
        /// <summary>
        /// Тестируем принтер чека
        /// </summary>
        /// <returns>Результат теста прошел/не прошел</returns>
        public bool Test()
        {
            bool res = false;

            try
            {
                switch (PrnModel)
                {
                case Model.T400:
                    if (t400 == null)
                    {
                        if (this.port != null)
                        {
                            t400 = new T400(this.port);
                        }
                        else
                        {
                            Initialize("");
                        }
                    }

                    if (t400 == null)
                    {
                        return(false);
                    }

                    return(t400.Test());

                case Model.ICT:
                    if (ict == null)
                    {
                        if (this.port != null)
                        {
                            ict = new ICT(this.port);
                        }
                        else
                        {
                            Initialize("");
                        }
                    }

                    if (ict == null)
                    {
                        return(false);
                    }

                    return(ict.Test());

                case Model.VKP80:
                    if (vkp == null)
                    {
                        if (this.port != null)
                        {
                            vkp = new VKP80(this.port);
                        }
                        else
                        {
                            Initialize("");
                        }
                    }

                    if (vkp == null)
                    {
                        return(false);
                    }

                    res          = vkp.Test();
                    ErrorMessage = vkp.ErrMsg;
                    return(res);

                case Model.AV268:
                    if (av == null)
                    {
                        if (this.port != null)
                        {
                            av = new AV286(this.port);
                        }
                        else
                        {
                            Initialize("");
                        }
                    }

                    if (av == null)
                    {
                        return(false);
                    }

                    res          = av.Test();
                    ErrorMessage = av.ErrMsg;
                    return(res);

                case Model.CITIZEN:
                    if (cit == null)
                    {
                        if (this.port != null)
                        {
                            cit = new Citizen(this.port);
                        }
                        else
                        {
                            Initialize("");
                        }
                    }

                    if (cit == null)
                    {
                        return(false);
                    }

                    res          = cit.Test();
                    ErrorMessage = cit.ErrMsg;
                    return(res);

                case Model.TUP900:
                    if (tup == null)
                    {
                        if (this.port != null)
                        {
                            tup = new Tup900(this.port);
                        }
                        else
                        {
                            Initialize("");
                        }
                    }

                    if (tup == null)
                    {
                        return(false);
                    }

                    res          = tup.Test();
                    ErrorMessage = tup.ErrMsg;
                    return(res);

                case Model.PRIM21K:
                    if (prim21k == null)
                    {
                        if (this.port != null)
                        {
                            prim21k = new PRIM21KNF();
                            prim21k.Initialize(this.port);
                        }
                        else
                        {
                            Initialize("prim21k");
                        }
                    }

                    if (prim21k == null)
                    {
                        return(false);
                    }

                    return(true);
                }
            }
            catch
            {
                return(false);
            }

            return(false);
        }