Ejemplo n.º 1
0
        private void FillHeader()
        {
            System.Text.StringBuilder x = new System.Text.StringBuilder();

            Rpt.Judul(x, comp, judul);



            string status = "";

            if (StatusS != "")
            {
                status = StatusS;
            }
            if (StatusA != "")
            {
                status = StatusA;
            }
            if (StatusI != "")
            {
                status = StatusI;
            }

            Rpt.SubJudul(x
                         , "Status : " + status
                         );

            Rpt.SubJudul(x
                         , "Nama : " + Nama.Replace("-", ",").TrimEnd(',')
                         );

            if (Input != "SEMUA")
            {
                string[] str = Input.Split('-');


                Rpt.SubJudul(x
                             , "Periode Input : " + Cf.NamaBln(str[1]) + " " + str[0]
                             );
            }
            else
            {
                Rpt.SubJudul(x
                             , "Periode Input : SEMUA"
                             );
            }

            Rpt.SubJudul(x
                         , "Principal : " + Principal
                         );

            Rpt.SubJudul(x
                         , "Tipe : " + Tipe
                         );

            string legend = "";

            //Rpt.Header(rpt, x);
            Rpt.HeaderReport(headReport, legend, x);
        }
Ejemplo n.º 2
0
    IEnumerator ShowText()
    {
        Nama.GetComponent <UnityEngine.UI.Text>().text = jeneng;
        for (int i = 0; i < tuturan.Length; i++)
        {
            enter = false;
            nxtbtn.SetActive(false);
            currentText = tuturan.Substring(0, i + 1);
            Sentences.GetComponent <UnityEngine.UI.Text>().text = currentText;
            yield return(new WaitForSeconds(delay));

            if (Input.GetMouseButton(0))
            {
                Sentences.GetComponent <UnityEngine.UI.Text>().text = tuturan;
                break;
            }
        }
        enter = true;
        nxtbtn.SetActive(true);
    }
 public void NaikGaji()
 {
     Console.WriteLine("{0} {1} {2} {3}", No.PadRight(2), Nik.PadRight(11), Nama.PadRight(10), (GajiBulanan * 110 / 100));
 }
 public void DataKaryawan()
 {
     Console.WriteLine("{0} {1} {2} {3}", No.PadRight(2), Nik.PadRight(11), Nama.PadRight(10), GajiBulanan);
 }
Ejemplo n.º 5
0
        private void Fill()
        {
            string nStatus = "";

            if (StatusA != "")
            {
                nStatus = " AND A.Status = 'A'";
            }
            if (StatusI != "")
            {
                nStatus = " AND A.Status = 'I'";
            }


            //change parameter
            string str = String.Empty;

            str = Nama.Replace("-", "").ToLower();
            char[] characters = str.ToCharArray();


            string str2 = "";

            foreach (var t in characters)
            {
                str2 += "'" + t + "',";
            }
            str2 = str2.TrimEnd(',');


            string aq = "";

            if (Nama != "")
            {
                aq = aq + " AND LEFT(A.Nama,1) IN (" + str2 + ")";
            }


            string nInput = "";

            if (Input != "SEMUA")
            {
                string[] z = Input.Split('-');
                nInput = " AND YEAR(A.TglInput) = " + z[0]
                         + " AND MONTH(A.TglInput) = " + z[1];
            }

            string nTipe = "";

            if (Tipe != "SEMUA")
            {
                nTipe = " AND A.SalesTipe = '" + Cf.Str(Tipe) + "'";
            }

            string nProject = "";

            if (Project != "SEMUA")
            {
                nProject = " AND A.Project IN ('" + Project.Replace(",", "','") + "')";
            }


            string strSql = "SELECT "
                            + " A.NoAgent"
                            //+ ",A.Nama"
                            + ",A.KodeSales AS [Kode Sales]"
                            + ",A.Nama AS [Nama Lengkap]"
                            + ",A.SalesTipe"
                            + ",A.SalesLevel"
                            + ",A.Atasan"
                            + ",A.Alamat"
                            + ",A.Kontak"
                            + ",A.Handphone"
                            + ",A.Whatsapp"
                            + ",A.NPWP"
                            + ",A.Email"
                            + ",A.RekBank"
                            + ",A.Rekening"
                            + ",A.AtasNama"
                            + ",A.TglInput"
                            + ",A.Status"
                            + ",A.Principal"
                            //+ ",Skema0"
                            + ",B.Tipe AS [Tipe Agent]"
                            + ",C.Nama AS [Nama Agent]"
                            + " FROM MS_AGENT A INNER JOIN REF_AGENT_TIPE B ON A.SalesTipe = B.ID"
                            + " INNER JOIN REF_AGENT_LEVEL C ON A.SalesLevel = C.LevelID"
                            + " WHERE 1=1 "
                            + nProject
                            + nStatus
                            + aq
                            + nInput
                            + nTipe
                            + " ORDER BY A.Nama, A.NoAgent";

            DataTable rs = Db.Rs(strSql);

            for (int i = 0; i < rs.Rows.Count; i++)
            {
                if (!Response.IsClientConnected)
                {
                    break;
                }

                TableRow  r = new TableRow();
                TableCell c;

                r.VerticalAlign            = VerticalAlign.Top;
                r.Attributes["ondblclick"] = "popEditAgent('" + rs.Rows[i]["NoAgent"] + "')";

                string inaktif = "";
                if (rs.Rows[i]["Status"].ToString() == "I")
                {
                    inaktif = " **";
                }

                c                 = new TableCell();
                c.Text            = (i + 1).ToString();
                c.HorizontalAlign = HorizontalAlign.Center;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Tipe Agent"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Nama Agent"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = Db.SingleString("SELECT Nama FROM MS_AGENT WHERE Atasan = '" + rs.Rows[i]["Atasan"].ToString() + "'");
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["NoAgent"].ToString().PadLeft(5, '0');
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c      = new TableCell();
                c.Text = rs.Rows[i]["Nama Lengkap"].ToString()
                         + inaktif;
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Alamat"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Email"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Kontak"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Handphone"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Whatsapp"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["NPWP"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Rekening"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["RekBank"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["AtasNama"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);
                rpt.Rows.Add(r);
            }
        }
Ejemplo n.º 6
0
        private void Header()
        {
            System.Text.StringBuilder x = new System.Text.StringBuilder();

            Rpt.Judul(x, comp, judul);

            if (StatusA != "")
            {
                Rpt.SubJudul(x, "Status : " + StatusA);
            }
            else if (StatusI != "")
            {
                Rpt.SubJudul(x, "Status : " + StatusI);
            }
            else
            {
                Rpt.SubJudul(x, "Status : " + StatusS);
            }

            string sifat = "";

            if (nSifat == "sifatALL")
            {
                sifat = "SEMUA";
            }
            else if (nSifat == "sifatSUDAH")
            {
                sifat = "sifatSUDAH";
            }
            else if (nSifat == "sifatBELUM")
            {
                sifat = "BELUM BELI";
            }

            Rpt.SubJudul(x
                         , "Sifat : " + sifat
                         );

            Rpt.SubJudul(x
                         , "Nama : " + Nama.Replace("-", ",").TrimEnd(',')
                         );

            Rpt.SubJudul(x
                         , "Agama : " + Agama.Replace("-", ",").TrimEnd(',')
                         );

            Rpt.SubJudul(x
                         , "Sumber Data : " + SumberData.Replace("-", ",").TrimEnd(',')
                         );

            Rpt.SubJudul(x
                         , "Periode Input : " + Input
                         );

            Rpt.SubJudul(x
                         , "Bulan Lahir : " + nLahir
                         );

            Rpt.SubJudul(x
                         , "Sales Account : " + nAgentInput
                         );

            Rpt.SubJudul(x
                         , "Project : " + Project
                         );

            //Rpt.Header(rpt, x);
            string legend = "* * = Inaktif";

            Rpt.HeaderReport(headReport, legend, x);
        }
Ejemplo n.º 7
0
        private void Fill()
        {
            string order = "Nama, NoCustomer";

            string nStatus = "";

            if (StatusA != "")
            {
                nStatus = " AND Status = 'A'";
            }
            if (StatusI != "")
            {
                nStatus = " AND Status = 'I'";
            }

            string Sifat = "";

            if (nSifat == "sifatSUDAH")
            {
                Sifat = " AND (SELECT COUNT(*) FROM MS_KONTRAK WHERE NoCustomer = MS_CUSTOMER.NoCustomer) <> 0";
            }
            if (nSifat == "sifatBELUM")
            {
                Sifat = " AND (SELECT COUNT(*) FROM MS_KONTRAK WHERE NoCustomer = MS_CUSTOMER.NoCustomer) = 0";
            }

            //change parameter
            string str = String.Empty;

            str = Nama.Replace("-", "").ToLower();
            char[] characters = str.ToCharArray();
            string str2       = "";

            foreach (var t in characters)
            {
                str2 += "'" + t + "',";
            }
            str2 = str2.TrimEnd(',');

            //change parameter
            string stragama = String.Empty;

            stragama = Agama.Replace("-", "").ToLower();


            string aq = "";

            if (Nama != "")
            {
                aq = aq + " AND LEFT(Nama,1) IN (" + str2 + ")";
            }


            string nInput = "";

            if (Input != "SEMUA")
            {
                string[] z = Input.Split('-');
                nInput = " AND YEAR(TglInput) = " + z[0]
                         + " AND MONTH(TglInput) = " + z[1];
            }

            string Lahir = "";

            if (nLahir != "SEMUA")
            {
                order = " DAY(TglLahir), Nama";
                Lahir = " AND MONTH(TglLahir) = " + nLahir;
            }

            string AgentInput = "";

            if (nAgentInput != "SEMUA")
            {
                AgentInput = " AND AgentInput = '" + nAgentInput + "'";
            }

            string nProject = "";

            if (Project != "SEMUA")
            {
                nProject = " AND Project IN ('" + Project.Replace(",", "','") + "')";
            }

            string strdata = String.Empty;

            string [] str3 = SumberData.Split('-');
            for (int i = 0; i < str3.Length; i++)
            {
                if (i == str3.Length - 1)
                {
                    strdata += "'" + str3[i] + "'";
                }
                else
                {
                    strdata += "'" + str3[i] + "',";
                }
            }
            //nSumberData = nSumberData.TrimEnd('-');
            //nSumberData = nSumberData.Replace("-", "','");
            //nSumberData = "'" + nSumberData;

            //string nSumberData2 = nSumberData;
            //nSumberData2 = nSumberData + "'";

            string stringAgama = Agama;

            stringAgama = stringAgama.TrimEnd('-');
            stringAgama = stringAgama.Replace("-", "','");
            stringAgama = "'" + stringAgama;

            string agama = stringAgama;

            agama = stringAgama + "'";

            string strSql = "SELECT *"
                            + ",CASE (SELECT COUNT(*) FROM MS_KONTRAK WHERE NoCustomer = MS_CUSTOMER.NoCustomer)"
                            + "		WHEN 0 THEN 'BELUM BELI'"
                            + "		ElSE 'SUDAH BELI'"
                            + " END AS Sifat"
                            + " FROM MS_CUSTOMER"
                            + " WHERE "
                            + " SumberData IN (" + strdata + ")"
                            //+ " AND Agama IN (" + agama + ")"
                            + nProject
                            + nStatus
                            + aq
                            + nInput
                            + Lahir
                            + AgentInput
                            + Sifat
                            + " ORDER BY " + order
            ;
            DataTable rs = Db.Rs(strSql);

            for (int i = 0; i < rs.Rows.Count; i++)
            {
                if (!Response.IsClientConnected)
                {
                    break;
                }

                TableRow  r = new TableRow();
                TableCell c;

                r.VerticalAlign            = VerticalAlign.Top;
                r.Attributes["ondblclick"] = "popEditCustomer('" + rs.Rows[i]["NoCustomer"] + "')";

                r.VerticalAlign            = VerticalAlign.Top;
                r.Attributes["ondblclick"] = "popEditCustomer('" + rs.Rows[i]["NoCustomer"] + "')";
                c                 = new TableCell();
                c.Text            = (i + 1).ToString() + ".";
                c.HorizontalAlign = HorizontalAlign.Left;
                r.Cells.Add(c);

                string inaktif = "";
                if (rs.Rows[i]["Status"].ToString() == "I")
                {
                    inaktif = " **";
                }

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Nama"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["TipeCs"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["SumberData"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c = new TableCell();
                string    unit    = "SELECT NoUnit FROM MS_KONTRAK WHERE NoCustomer = '" + rs.Rows[i]["NoCustomer"].ToString() + "'";
                DataTable rsUnit  = Db.Rs(unit);
                string    addUnit = "";
                for (int j = 0; j < rsUnit.Rows.Count; j++)
                {
                    addUnit = rsUnit.Rows[j]["NoUnit"] + ", ";
                }
                if (addUnit != "")
                {
                    addUnit = addUnit.Substring(0, addUnit.Length - 2);
                }
                c.Text            = addUnit;
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["AgentInput"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["NamaBisnis"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["JenisBisnis"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["MerekBisnis"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Agama"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = Cf.Day(rs.Rows[i]["TglLahir"]);
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["NoTelp"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["NoHP"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["NoKantor"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["NoFax"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Email"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["NoKTP"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c      = new TableCell();
                c.Text = rs.Rows[i]["Alamat1"] + "&nbsp;"
                         + rs.Rows[i]["Alamat2"] + "&nbsp;"
                         + rs.Rows[i]["Alamat3"] + "&nbsp;"
                ;
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c      = new TableCell();
                c.Text = rs.Rows[i]["KTP1"] + "&nbsp;"
                         + rs.Rows[i]["KTP2"] + "&nbsp;"
                         + rs.Rows[i]["KTP3"] + "&nbsp;"
                         + rs.Rows[i]["KTP4"] + "&nbsp;"
                ;
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["NPWP"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c      = new TableCell();
                c.Text = rs.Rows[i]["NPWPAlamat1"] + "&nbsp;"
                         + rs.Rows[i]["NPWPAlamat2"] + "&nbsp;"
                         + rs.Rows[i]["NPWPAlamat3"] + "&nbsp;"
                ;
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = rs.Rows[i]["Sifat"].ToString();
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                if (rs.Rows[i]["Sifat"].ToString() == "SUDAH BELI")
                {
                    PrintSales((int)rs.Rows[i]["NoCustomer"], r);
                }
                else
                {
                    c            = new TableCell();
                    c.Text       = "";
                    c.ColumnSpan = 5;
                    c.Wrap       = false;
                    r.Cells.Add(c);
                }

                c                 = new TableCell();
                c.Text            = Cf.Day(rs.Rows[i]["TglInput"]);
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = Cf.Day(rs.Rows[i]["TglTransaksi"]);
                c.HorizontalAlign = HorizontalAlign.Left;
                c.Wrap            = false;
                r.Cells.Add(c);

                c                 = new TableCell();
                c.Text            = Db.SingleString("SELECT Nama FROM " + Mi.DbPrefix + "SECURITY..REF_PROJECT WHERE Project = '" + rs.Rows[i]["Project"].ToString() + "'");
                c.HorizontalAlign = HorizontalAlign.Left;
                c.VerticalAlign   = VerticalAlign.Top;
                r.Cells.Add(c);

                rpt.Rows.Add(r);
            }
        }
Ejemplo n.º 8
0
 public AddSalesView()
 {
     InitializeComponent();
     Nama.Focus();
 }
Ejemplo n.º 9
0
 public AddTechnicianView()
 {
     InitializeComponent();
     Nama.Focus();
 }
 public AddSparepartView()
 {
     InitializeComponent();
     Nama.Focus();
 }