예제 #1
0
        public static StmasImportVM ToViewModel(this Stmas stmas, List <Istab> stkgrp_list, List <Istab> qucod_list)
        {
            if (stmas == null)
            {
                return(null);
            }

            var grp    = stkgrp_list.Where(i => i.typcod.Trim() == stmas.stkgrp.Trim()).FirstOrDefault();
            var stkgrp = new IstabVM
            {
                TabTyp = ((int)ISTAB_TABTYP.STKGRP).ToString(),
                TypCod = stmas.stkgrp.Trim()
            };

            if (grp != null)
            {
                stkgrp.AbbreviateTh = grp.shortnam.Trim();
                stkgrp.AbbreviateEn = grp.shortnam2.Trim();
                stkgrp.TypDesTh     = grp.typdes.Trim();
                stkgrp.TypDesEn     = grp.typdes2.Trim();
            }
            else
            {
                stkgrp.AbbreviateTh = "";
                stkgrp.AbbreviateEn = "";
                stkgrp.TypDesTh     = "";
                stkgrp.TypDesEn     = "";
            }

            var qu    = qucod_list.Where(i => i.typcod.Trim() == stmas.qucod.Trim()).FirstOrDefault();
            var qucod = new IstabVM
            {
                TabTyp = ((int)ISTAB_TABTYP.QUCOD).ToString(),
                TypCod = stmas.qucod.Trim()
            };

            if (qu != null)
            {
                qucod.AbbreviateTh = qu.shortnam.Trim();
                qucod.AbbreviateEn = qu.shortnam2.Trim();
                qucod.TypDesTh     = qu.typdes.Trim();
                qucod.TypDesEn     = qu.typdes2.Trim();
            }
            else
            {
                qucod.AbbreviateTh = "";
                qucod.AbbreviateEn = "";
                qucod.TypDesTh     = "";
                qucod.TypDesEn     = "";
            }

            StmasImportVM st = new StmasImportVM
            {
                Stkcod   = stmas.stkcod,
                StkDesTh = stmas.stkdes,
                StkDesEn = stmas.stkdes2,
                Barcod   = stmas.barcod,
                StkTyp   = stmas.stktyp,
                //StkGrp = stmas.StkGrp,
                //Qucod = stmas.Qucod,
                Sellpr1 = (decimal)stmas.sellpr1,
                Sellpr2 = (decimal)stmas.sellpr2,
                Sellpr3 = (decimal)stmas.sellpr3,
                Sellpr4 = (decimal)stmas.sellpr4,
                Sellpr5 = (decimal)stmas.sellpr5,
                //ProductImg = stmas.ProductImg,
                _StkGrp = stkgrp,
                _QuCod  = qucod
            };

            return(st);
        }
예제 #2
0
        public static List <Stmas> ToList(this DataTable stmas_dbf)
        {
            List <Stmas> stmas = new List <Stmas>();

            foreach (DataRow row in stmas_dbf.Rows)
            {
                //Console.WriteLine(" .. >> numelem is null : " + row.IsNull("numelem"));

                try
                {
                    Stmas s = new Stmas
                    {
                        stkcod   = row.Field <string>("stkcod"),
                        stkdes   = row.Field <string>("stkdes"),
                        stkdes2  = row.Field <string>("stkdes2"),
                        stktyp   = row.Field <string>("stktyp"),
                        stklev   = row.Field <string>("stklev"),
                        stkgrp   = row.Field <string>("stkgrp"),
                        barcod   = row.Field <string>("barcod"),
                        stkcods  = row.Field <string>("stkcods"),
                        acccod   = row.Field <string>("acccod"),
                        isinv    = row.Field <string>("isinv"),
                        stkclass = row.Field <string>("stkclass"),
                        negallow = row.Field <string>("negallow"),
                        qucod    = row.Field <string>("qucod"),
                        cqucod   = row.Field <string>("cqucod"),
                        cfactor  = row.Field <double>("cfactor"),
                        stnpr    = row.Field <double>("stnpr"),
                        ispur    = row.Field <string>("ispur"),
                        pqucod   = row.Field <string>("pqucod"),
                        pfactor  = row.Field <double>("pfactor"),
                        lpurqu   = row.Field <string>("lpurqu"),
                        lpurfac  = row.Field <double>("lpurfac"),
                        lpurpr   = row.Field <double>("lpurpr"),
                        lpdisc   = row.Field <string>("lpdisc"),
                        lpurdat  = row.Field <DateTime?>("lpurdat"),
                        supcod   = row.Field <string>("supcod"),
                        issal    = row.Field <string>("issal"),
                        squcod   = row.Field <string>("squcod"),
                        sfactor  = row.Field <double>("sfactor"),
                        sellpr1  = row.Field <double>("sellpr1"),
                        sellpr2  = row.Field <double>("sellpr2"),
                        sellpr3  = row.Field <double>("sellpr3"),
                        sellpr4  = row.Field <double>("sellpr4"),
                        sellpr5  = row.Field <double>("sellpr5"),
                        tracksal = row.Field <string>("tracksal"),
                        vatcod   = row.Field <string>("vatcod"),
                        iscom    = row.Field <string>("iscom"),
                        comrat   = row.Field <string>("comrat"),
                        lsellqu  = row.Field <string>("lsellqu"),
                        lsellfac = row.Field <double>("lsellfac"),
                        lsellpr  = row.Field <double>("lsellpr"),
                        lsdisc   = row.Field <string>("lsdisc"),
                        lseldat  = row.Field <DateTime?>("lseldat"),
                        numelem  = row.Field <decimal?>("numelem"),
                        totbal   = row.Field <double>("totbal"),
                        totval   = row.Field <double>("totval"),
                        totreo   = row.Field <double>("totreo"),
                        totres   = row.Field <double>("totres"),
                        opnbal   = row.Field <double>("opnbal"),
                        unitpr   = row.Field <double>("unitpr"),
                        opnval   = row.Field <double>("opnval"),
                        lasupd   = row.Field <DateTime?>("lasupd"),
                        packing  = row.Field <string>("packing"),
                        mlotnum  = row.Field <string>("mlotnum"),
                        mrembal  = row.Field <double>("mrembal"),
                        mremval  = row.Field <double>("mremval"),
                        remark   = row.Field <string>("remark"),
                        dat1     = row.Field <DateTime?>("dat1"),
                        dat2     = row.Field <DateTime?>("dat2"),
                        num1     = row.Field <double>("num1"),
                        str1     = row.Field <string>("str1"),
                        str2     = row.Field <string>("str2"),
                        str3     = row.Field <string>("str3"),
                        str4     = row.Field <string>("str4"),
                        creby    = row.Field <string>("creby"),
                        credat   = row.Field <DateTime?>("credat"),
                        userid   = row.Field <string>("userid"),
                        chgdat   = row.Field <DateTime?>("chgdat"),
                        status   = row.Field <string>("status"),
                        inactdat = row.Field <DateTime?>("inactdat")
                    };
                    stmas.Add(s);
                }
                catch (Exception ex)
                {
                    Console.WriteLine("Error for stkcod : " + row.Field <string>("stkcod"));
                    Console.WriteLine(" ... >> " + ex.Message);
                    continue;
                }
            }

            return(stmas);
        }