Esempio n. 1
0
        //简单打印示例
        public static void Print(DifferenceOrder item, DataGridView dataGridView2, int times = 1)
        {
            GoldPrinter.MisGoldPrinter misGoldPrinter = new GoldPrinter.MisGoldPrinter(false, new PrinterMargins(20, 20, 20, 20, 787, 1129));
            misGoldPrinter.Title   = "差异单";                     //主标题(C#用\n表示换行)
            misGoldPrinter.Caption = "";
            Header header = new Header(3, 2);                   //行列数基本不受限制,但超过一页失去意义,因为以Body为主,以其它为辅

            header.IsDrawAllPage = true;                        //可以指定每页是否重复打印
            header.SetText(0, 0, "差异单号:" + item.ID);
            header.SetText(0, 1, "来源单号:" + item.SourceOrderID); //DataSource可以是字符串、一维数组、二维数组、DataTable、WinDataGrid、WebDataGrid、ListView\ListView、
            header.SetText(1, 0, "发 货 方:" + CommonGlobalCache.GetShopName(item.OutboundShopID));
            header.SetText(1, 1, "收 货 方:" + CommonGlobalCache.GetShopName(item.InboundShopID));
            header.SetText(2, 0, "差异(盈):" + item.DiffCountWin.ToString());
            header.SetText(2, 1, "差异(亏):" + item.DiffCountLost.ToString());
            misGoldPrinter.Header     = header;
            misGoldPrinter.DataSource = DataGridViewUtil.ToStringArray(dataGridView2, true, true);
            if (!Directory.Exists(CommonGlobalUtil.SystemDir + "EXPORTS\\"))
            {
                Directory.CreateDirectory(CommonGlobalUtil.SystemDir + "EXPORTS\\");
            }

            misGoldPrinter.FileName = CommonGlobalUtil.SystemDir + "EXPORTS\\" + item.ID + ".jpg";
            ((GoldPrinter.Body)(misGoldPrinter.Body)).Font = dataGridView2.Font;
            int[] widths = new int[] {
                80, 100, 40, 50,
                30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30
                , 40, 50
            };
            // int[] widths=  DataGridViewUtil.GetColsWidth(dataGridView2);
            List <int> widthList = new List <int>();

            for (int i = 0; i <
                 dataGridView2.Columns.Count; i++)
            {
                if (dataGridView2.Columns[i].Visible)
                {
                    widthList.Add(widths[i]);
                }
            }
            widths = widthList.ToArray();
            int newWidth   = 787;
            int totalWidth = 0;

            for (int i = 0; i < widths.Length; i++)
            {
                totalWidth += widths[i];
            }
            for (int i = 0; i < widths.Length; i++)
            {
                widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)1.0 / totalWidth), 0, MidpointRounding.AwayFromZero));
            }
            ((GoldPrinter.Body)(misGoldPrinter.Body)).ColsWidth = widths;
            misGoldPrinter.Preview();
            misGoldPrinter.Dispose();
            misGoldPrinter = null;
        }
Esempio n. 2
0
        //简单打印示例
        public static void Print(ScrapOrder item, DataGridView dataGridView2, int times = 1)
        {
            //if (times < 0) { times = 0; }

            //for (int i = 0; i < times; i++)
            //{

            GoldPrinter.MisGoldPrinter misGoldPrinter = new GoldPrinter.MisGoldPrinter(false, new PrinterMargins(20, 20, 20, 20, 787, 1129));

            misGoldPrinter.Title   = "报损单";                                                        //主标题(C#用\n表示换行)
            misGoldPrinter.Caption = "";                                                           //副标题
                                                                                                   //misGoldPrinter.Top = "单号:" + item.AllocateOrder.ID + "|收货方:" + CommonGlobalCache.GetShopName(item.AllocateOrder.DestShopID) + "|开单日期:" + item.AllocateOrder.CreateTime;                                       //抬头,一行三列的文字说明,用|分隔

            Header header = new Header(4, 2);                                                      //行列数基本不受限制,但超过一页失去意义,因为以Body为主,以其它为辅

            header.IsDrawAllPage = true;                                                           //可以指定每页是否重复打印
            header.SetText(0, 0, "报损单号:" + item.ID);
            header.SetText(0, 1, "开单时间:" + item.CreateTime.GetDateTimeFormats('f')[0].ToString()); //DataSource可以是字符串、一维数组、二维数组、DataTable、WinDataGrid、WebDataGrid、ListView\ListView、
            header.SetText(1, 0, "店    铺:" + CommonGlobalCache.GetShopName(item.ShopID));
            header.SetText(1, 1, "操 作 人:" + CommonGlobalCache.GetUserName(item.OperatorUserID));   //同仁们还可以根据实际应用对GridBase的DataSource进行扩展
            header.SetText(2, 0, "总 数 量:" + item.TotalCount.ToString());
            header.SetText(2, 1, "总 金 额:" + item.TotalPrice.ToString());                           //同仁们还可以根据实际应用对GridBase的DataSource进行扩展
            header.SetText(3, 0, "备    注:");
            header.SetText(3, 1, item.Remarks);

            misGoldPrinter.Header = header;                     //将定制对象,赋给页头
                                                                // misGoldPrinter.Top = new String[] { "单号:" + item.AllocateOrder.ID + "|收货方:" + CommonGlobalCache.GetShopName(item.AllocateOrder.DestShopID) + "|开单日期:" + item.AllocateOrder.CreateTime,
                                                                //  "发货方:" + CommonGlobalCache.GetShopName(item.AllocateOrder.SourceShopID) + "|操作人:" + CommonGlobalCache.GetUserName(item.AllocateOrder.SourceUserID) + "|打印日期:" + System.DateTime.Now.ToLongDateString()  };                                       //抬头,一行三列的文字说明,用|分隔


            //  misGoldPrinter.Bottom = "发货方:" + CommonGlobalCache.GetShopName(item.AllocateOrder.SourceShopID) + "|操作人:" + CommonGlobalCache.GetUserName(item.AllocateOrder.SourceUserID) + "|打印日期:" + System.DateTime.Now.ToLongDateString() + "|";  //结尾,说明同抬头
            misGoldPrinter.DataSource = DataGridViewUtil.ToStringArray(dataGridView2, true, true);
            if (!Directory.Exists(CommonGlobalUtil.SystemDir + "EXPORTS\\"))
            {
                Directory.CreateDirectory(CommonGlobalUtil.SystemDir + "EXPORTS\\");
            }
            misGoldPrinter.FileName = CommonGlobalUtil.SystemDir + "EXPORTS\\" + item.ID + ".jpg";
            ((GoldPrinter.Body)(misGoldPrinter.Body)).Font = dataGridView2.Font;

            int[] widths = new int[] {
                80, 100, 40, 30,
                30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30
                , 40, 50, 50
            };
            List <int> widthList = new List <int>();

            for (int i = 0; i <
                 dataGridView2.Columns.Count; i++)
            {
                DataGridViewColumn column = dataGridView2.Columns[i];
                if (column.Visible && !String.IsNullOrEmpty(column.HeaderText))
                {
                    widthList.Add(widths[i]);
                }
            }
            widths = widthList.ToArray();
            int newWidth   = 787;
            int totalWidth = 0;

            for (int i = 0; i < widths.Length; i++)
            {
                totalWidth += widths[i];
            }
            for (int i = 0; i < widths.Length; i++)
            {
                widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)1.0 / totalWidth), 0, MidpointRounding.AwayFromZero));
            }
            ((GoldPrinter.Body)(misGoldPrinter.Body)).ColsWidth = widths;
            misGoldPrinter.Preview();
            misGoldPrinter.Dispose();
            misGoldPrinter = null;
        }
Esempio n. 3
0
        private static void setPrintPurchaseData(PurchaseOrder item, DataGridView dataGridView2, PrintTemplateType type)
        {
            InteractResult <PrintTemplateInfo> result = CommonGlobalCache.ServerProxy.GetPrintTemplateInfo(type);

            //行列数基本不受限制,但超过一页失去意义,因为以Body为主,以其它为辅
            //   Header header = new Header(4, 2);
            //可以指定每页是否重复打印
            if (result.ExeResult == ExeResult.Success)
            {
                PrintTemplateInfo CurrentPTemplate = result.Data;
                for (int c = 0; c < CurrentPTemplate.PrintCount; c++)
                {
                    GoldPrinter.MisGoldPrinter misGoldPrinter = new GoldPrinter.MisGoldPrinter(false, new PrinterMargins(20, 20, 20, 20, 800, 1129));

                    if (CurrentPTemplate.OrderName != "")
                    {
                        //misGoldPrinter.Title = CurrentPTemplate.OrderName; //主标题(C#用\n表示换行)

                        ////this.CurrentPTemplate = PTemplateInfo;
                        //double headRow = Math.Round(Convert.ToSingle(CurrentPTemplate.SystemVariables.Count / 2));

                        //Header header = new Header(Convert.ToInt32(headRow) + 1, 2);



                        //header.IsDrawAllPage = true;

                        misGoldPrinter.Title = CurrentPTemplate.OrderName; //主标题(C#用\n表示换行)	}

                        misGoldPrinter.Caption = "";

                        double headRow = Math.Round(Convert.ToSingle(CurrentPTemplate.SystemVariables.Count / 2));

                        Header header = new Header(Convert.ToInt32(headRow) + 1, 2);
                        CommonGlobalUtil.WriteLog("变量总数=" + CurrentPTemplate.SystemVariables.Count + "\r\n" + "应显示行号=" + headRow);
                        header.IsDrawAllPage = true;
                        for (int i = 0; i < CurrentPTemplate.SystemVariables.Count; i++)
                        {
                            int curR = 0;
                            if (i < 2)
                            {
                                curR = 0;
                            }
                            else
                            {
                                double resRow = i / 2;
                                curR = Convert.ToInt32(Math.Round(resRow));
                            }
                            string KeyStr = "";
                            if (CurrentPTemplate.SystemVariables[i] == "采购单号")
                            {
                                KeyStr = "采购单号:";
                                header.SetText(curR, i % 2, CurrentPTemplate.SystemVariables[i] + item.ID);
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "开单时间")
                            {
                                KeyStr = "开单时间:";
                                header.SetText(curR, i % 2, KeyStr + item.CreateTime.GetDateTimeFormats('f')[0].ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "供应商")
                            {
                                KeyStr = "供 应 商:";
                                header.SetText(curR, i % 2, KeyStr + CommonGlobalCache.GetSupplierName(item.SupplierID));
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "操作人")
                            {
                                KeyStr = "操 作 人:";
                                header.SetText(curR, i % 2, KeyStr + CommonGlobalCache.GetUserName(item.AdminUserID));
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "总数量")
                            {
                                KeyStr = "总 数 量:";
                                header.SetText(curR, i % 2, KeyStr + item.TotalCount.ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "总成本")
                            {
                                KeyStr = "总 成 本:";
                                header.SetText(curR, i % 2, KeyStr + item.TotalCost.ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "单据备注")
                            {
                                KeyStr = "备    注:";
                                header.SetText(curR, i % 2, KeyStr + item.Remarks.ToString());
                            }
                        }

                        /*  header.SetText(0, 0, "采购单号:" + item.ID);
                         * header.SetText(0, 1, "开单时间:" + item.CreateTime.GetDateTimeFormats('f')[0].ToString());  //DataSource可以是字符串、一维数组、二维数组、DataTable、WinDataGrid、WebDataGrid、ListView\ListView、
                         * header.SetText(1, 0, "供 应 商:" + CommonGlobalCache.GetSupplierName(item.SupplierID));
                         * header.SetText(1, 1, "操 作 人:" + CommonGlobalCache.GetUserName(item.AdminUserID));               //同仁们还可以根据实际应用对GridBase的DataSource进行扩展
                         * header.SetText(2, 0, "总 数 量:" + item.TotalCount.ToString());
                         * header.SetText(2, 1, "总 成 本:" + item.TotalCost.ToString());                //同仁们还可以根据实际应用对GridBase的DataSource进行扩展
                         * header.SetText(3, 0, "备    注:");
                         * header.SetText(3, 1, item.Remarks);*/
                        misGoldPrinter.Header = header;
                        //misGoldPrinter.RowsPerPage
                        //Bottom bottom = new Bottom();
                        // bottom.DrawPrinterMargins

                        /*misGoldPrinter.DataSource = DataGridViewUtil.ToStringArray(dataGridView2, true, true);
                         * if (!Directory.Exists(CommonGlobalUtil.SystemDir + "EXPORTS\\"))
                         * {
                         *  Directory.CreateDirectory(CommonGlobalUtil.SystemDir + "EXPORTS\\");
                         * }
                         * misGoldPrinter.FileName = CommonGlobalUtil.SystemDir + "EXPORTS\\" + item.ID + ".jpg";
                         * ((GoldPrinter.Body)(misGoldPrinter.Body)).Font = dataGridView2.Font;
                         *
                         * //        int[] widths = new int[] {
                         * //    80,100,50,40,50,50,50,50,50,
                         * //    30,30,30,30,30,30,30,30,30,30,30
                         * //    ,40,50,50
                         * //};
                         * int[] widths = new int[CurrentPTemplate.PrintColumnInfos.Count];
                         * for (int j = 0; j < CurrentPTemplate.PrintColumnInfos.Count; j++)
                         * {
                         *  widths[j] = Convert.ToInt32(CurrentPTemplate.PrintColumnInfos[j].Rate);
                         * }
                         *
                         *
                         * //尺码固定的,但是他会变,那么怎么根据他的显示设置,
                         *
                         * List<int> widthList = new List<int>();
                         * List<int> columnCount = new List<int>();
                         * List<DataGridViewColumn> columns = new List<DataGridViewColumn>();
                         * List<PrintColumnInfo> dataGV = CurrentPTemplate.PrintColumnInfos;
                         * foreach (DataGridViewColumn col in dataGridView2.Columns)
                         * {
                         *  if (col.Tag?.ToString() != PrinterNoCount)
                         *  {
                         *      //  columns.Add(col);
                         *  }
                         *  if (dataGV.FindAll(t => t.Name == col.HeaderText).Count > 0)
                         *  {
                         *      columns.Add(col);
                         *
                         *  }
                         *    else
                         *    {
                         *      col.Visible = false;
                         *    }
                         *
                         *
                         *
                         * }
                         *
                         * for (int i = 0; i < columns.Count; i++)
                         * {
                         *  DataGridViewColumn column = columns[i];
                         *  if (column.Visible)
                         *  {
                         *      widthList.Add(widths[i]);
                         *  }
                         * }
                         *
                         * widths = widthList.ToArray();
                         * int newWidth = 800;
                         * //int totalWidth = 0;
                         * //for (int i = 0; i < widths.Length; i++)
                         * //{
                         * //    totalWidth += widths[i];
                         * //}
                         *
                         * for (int i = 0; i < widths.Length; i++)
                         * {
                         *  // widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)0.1), 0, MidpointRounding.AwayFromZero));
                         *
                         *  widths[i] = decimal.ToInt32(Math.Round((widths[i] * 10 * (decimal)0.1), 0, MidpointRounding.AwayFromZero));
                         * }
                         * ((GoldPrinter.Body)(misGoldPrinter.Body)).ColsWidth = widths;
                         * misGoldPrinter.Preview();
                         * misGoldPrinter.Dispose();
                         * misGoldPrinter = null;*/
                        List <PrintColumnInfo> dataGV = CurrentPTemplate.PrintColumnInfos;
                        string ColumnsList            = string.Empty;
                        foreach (PrintColumnInfo itemC in dataGV)
                        {
                            ColumnsList += itemC.Name + ",";
                        }
                        CommonGlobalUtil.WriteLog("模板设置打印列表头为=" + ColumnsList + "\r\n");
                        bool isflag = false;
                        if (dataGV.Count == 0)
                        {
                            isflag = true;
                        }

                        List <int> columnCount         = new List <int>();
                        int        pinrtColNum         = 0;
                        string     dataGridColumnsList = string.Empty;
                        if (dataGridView2.Columns.Count > 0)
                        {
                            for (int i = 0; i < dataGridView2.Columns.Count; i++)
                            {
                                DataGridViewColumn column = dataGridView2.Columns[i];
                                //if (column.HeaderText == "F" || column.HeaderText == "XS" || column.HeaderText == "S" || column.HeaderText == "M" || column.HeaderText == "L"
                                //   || column.HeaderText == "XL" || column.HeaderText == "2XL" || column.HeaderText == "3XL" || column.HeaderText == "4XL" || column.HeaderText == "5XL"
                                //   || column.HeaderText == "6XL")
                                //{
                                //    if (dataGV.FindAll(t => t.Name == "尺码列").Count > 0)
                                //    {
                                //        columnCount.Add(i);
                                //    }
                                //    else
                                //    {
                                //        column.Visible = false;
                                //    }
                                //}
                                //else
                                //{
                                if (dataGV.FindAll(t => t.Name == column.HeaderText).Count > 0)
                                {
                                    columnCount.Add(i);
                                    dataGridColumnsList += column.HeaderText + ",";
                                    pinrtColNum++;
                                }
                                else
                                {
                                    if (dataGV.FindAll(t => t.Name == column.DataPropertyName).Count > 0)
                                    {
                                        columnCount.Add(i);
                                        column.HeaderText    = column.HeaderText.Replace("\r\n", " ");
                                        dataGridColumnsList += column.DataPropertyName + ",";
                                        pinrtColNum++;
                                    }
                                    else
                                    {
                                        if (column.DataPropertyName.Contains("XL"))
                                        {
                                            string name = column.DataPropertyName;  //XL3
                                                                                    //3XL
                                            string newname  = name.Replace("XL", "");
                                            string checkstr = newname + "XL";
                                            if (dataGV.FindAll(t => t.Name == checkstr).Count > 0)
                                            {
                                                columnCount.Add(i);
                                                column.HeaderText    = column.HeaderText.Replace("\r\n", " ");
                                                dataGridColumnsList += column.DataPropertyName + ",";
                                                pinrtColNum++;
                                            }
                                            else
                                            {
                                                column.Visible = false;
                                            }
                                        }
                                        else
                                        {
                                            column.Visible = false;
                                        }
                                    }
                                }
                                if (isflag)
                                {
                                    if (i == 0)
                                    {
                                        //打印设置模板不设置任何列,但由于MisGoldPrinter这个类的打印主体为DataGridView,所有必须设置一列默认空的
                                        columnCount.Add(i);
                                        column.Visible    = true;
                                        column.HeaderText = "";

                                        DataTable  dt = new DataTable();
                                        DataColumn c1 = new DataColumn();
                                        c1.ColumnName = "HeaderText";

                                        dt.Columns.Add(c1);
                                        dataGridView2.DataSource = null;
                                        dataGridView2.DataSource = dt;
                                    }
                                }
                                //}
                            }

                            CommonGlobalUtil.WriteLog("DataGridView能打印的列为=" + dataGridColumnsList);

                            misGoldPrinter.DataSource = DataGridViewUtil.ToStringArray(dataGridView2, true, true);
                            // misGoldPrinter.DataSource =   dataGridView2.DataSource;


                            if (!Directory.Exists(CommonGlobalUtil.SystemDir + "EXPORTS\\"))
                            {
                                Directory.CreateDirectory(CommonGlobalUtil.SystemDir + "EXPORTS\\");
                            }
                            misGoldPrinter.FileName = CommonGlobalUtil.SystemDir + "EXPORTS\\" + item.ID + ".jpg";
                            ((GoldPrinter.Body)(misGoldPrinter.Body)).Font = dataGridView2.Font;

                            /*  int[] widths = new int[] {
                             * 80,100,50,40, 50,
                             * 30,30,30,30,30,30,30,30,30,30,30
                             * ,40,50,50
                             * };*/
                            int[] widths = new int[CurrentPTemplate.PrintColumnInfos.Count];
                            for (int j = 0; j < CurrentPTemplate.PrintColumnInfos.Count; j++)
                            {
                                widths[j] = Convert.ToInt32(CurrentPTemplate.PrintColumnInfos[j].Rate);
                            }

                            /* List<int> widthList = new List<int>();
                             * for (int i = 0; i < CurrentPTemplate.PrintColumnInfos.Count; i++)
                             * {
                             *   DataGridViewColumn column = dataGridView2.Columns[columnCount[i]];
                             *   if (column.Visible && !String.IsNullOrEmpty(column.HeaderText))
                             *   {
                             *       widthList.Add(widths[i]);
                             *   }
                             *
                             * }*/
                            if (isflag)
                            {
                                widths    = new int[1];
                                widths[0] = 100;
                                /*   widthList.Add(widths[0]);*/
                            }

                            /*    widths = widthList.ToArray();*/
                            int newWidth = 800;

                            /*  int totalWidth = 0;
                             * for (int i = 0; i < widths.Length; i++)
                             * {
                             *    totalWidth += widths[i];
                             * }*/
                            //if (dataGridView2.Columns.Count > 0)
                            //{
                            for (int i = 0; i < widths.Length; i++)
                            {
                                widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)0.1), 0, MidpointRounding.AwayFromZero));
                                // widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)1.0 / totalWidth), 0, MidpointRounding.AwayFromZero));
                            }
                            CommonGlobalUtil.WriteLog("实际打印数量=" + pinrtColNum + "\r\n" + "设置能打印的列数量=" + widths.Length.ToString());
                            //misGoldPrinter.Bottom=
                            ((GoldPrinter.Body)(misGoldPrinter.Body)).ColsWidth = widths;
                            misGoldPrinter.Preview();
                            misGoldPrinter.Dispose();
                            //misGoldPrinter.Print();
                            misGoldPrinter = null;
                        }
                    }
                }
            }
        }
        //简单打印示例
        public static void Print(PfOrder item, DataGridView dataGridView2, int times = 1)
        {
            InteractResult <PrintTemplateInfo> result;

            if (item.IsRefundOrder)
            {
                result = CommonGlobalCache.ServerProxy.GetPrintTemplateInfo(PrintTemplateType.PfTOrder);
            }
            else
            {
                result = CommonGlobalCache.ServerProxy.GetPrintTemplateInfo(PrintTemplateType.PfOrder);
            }


            if (result.ExeResult == ExeResult.Success)
            {
                PrintTemplateInfo CurrentPTemplate = result.Data;
                for (int c = 0; c < CurrentPTemplate.PrintCount; c++)
                {
                    GoldPrinter.MisGoldPrinter misGoldPrinter = new GoldPrinter.MisGoldPrinter(false, new PrinterMargins(20, 20, 20, 20, 800, 1129));
                    if (CurrentPTemplate.OrderName != "")
                    {
                        misGoldPrinter.Title = CurrentPTemplate.OrderName; //主标题(C#用\n表示换行)	}

                        misGoldPrinter.Caption = "";

                        double headRow = Math.Round(Convert.ToSingle(CurrentPTemplate.SystemVariables.Count / 2));

                        Header header = new Header(Convert.ToInt32(headRow) + 1, 2);
                        header.IsDrawAllPage = true;

                        CommonGlobalUtil.WriteLog("变量总数=" + CurrentPTemplate.SystemVariables.Count + "\r\n" + "应显示行号=" + headRow + 1);

                        //GoldPrinter.MisGoldPrinter misGoldPrinter = new GoldPrinter.MisGoldPrinter(false, new PrinterMargins(20, 20, 20, 20, 787, 1129));

                        // if (item.IsRefundOrder)
                        // {
                        //     misGoldPrinter.Title = "批发退货单";
                        // }
                        // else
                        // {
                        //     misGoldPrinter.Title = "批发发货单";
                        // }

                        //// misGoldPrinter.Title = "批发单";                           //主标题(C#用\n表示换行)
                        // misGoldPrinter.Caption = "";                                        //副标题
                        //                                                                     //misGoldPrinter.Top = "单号:" + item.AllocateOrder.ID + "|收货方:" + CommonGlobalCache.GetShopName(item.AllocateOrder.DestShopID) + "|开单日期:" + item.AllocateOrder.CreateTime;                                       //抬头,一行三列的文字说明,用|分隔



                        for (int i = 0; i < CurrentPTemplate.SystemVariables.Count; i++)
                        {
                            int curR = 0;
                            if (i < 2)
                            {
                                curR = 0;
                            }
                            else
                            {
                                double resRow = i / 2;
                                curR = Convert.ToInt32(Math.Round(resRow));
                            }
                            string KeyStr = "";
                            if (CurrentPTemplate.SystemVariables[i] == "单号")
                            {
                                KeyStr = "批发单号:";
                                header.SetText(curR, i % 2, CurrentPTemplate.SystemVariables[i] + item.ID);
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "客户")
                            {
                                KeyStr = "客    户:";
                                header.SetText(curR, i % 2, KeyStr + PfCustomerCache.GetUserNameWithPf(item.PfCustomerID));
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "开单时间")
                            {
                                KeyStr = "开单时间:";
                                header.SetText(curR, i % 2, KeyStr + item.CreateTime.GetDateTimeFormats('f')[0].ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "操作人")
                            {
                                KeyStr = "操 作 人:";
                                header.SetText(curR, i % 2, KeyStr + CommonGlobalCache.GetUserName(item.AdminUserID));
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "付款方式")
                            {
                                KeyStr = "付款方式:";
                                header.SetText(curR, i % 2, KeyStr + item.PayTypeName);
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "总数量")
                            {
                                KeyStr = "总 数 量:";
                                header.SetText(curR, i % 2, KeyStr + item.TotalCount.ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "上欠金额")
                            {
                                KeyStr = "上欠金额:";
                                header.SetText(curR, i % 2, KeyStr + item.PaymentBalanceOld.ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "本次应收金额")
                            {
                                KeyStr = "本次应收金额:";
                                header.SetText(curR, i % 2, KeyStr + item.TotalPfPrice.ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "应收总额")
                            {
                                KeyStr = "应收总额:";
                                header.SetText(curR, i % 2, KeyStr + item.PaymentBalance.ToString());
                            }



                            else if (CurrentPTemplate.SystemVariables[i] == "单据备注")
                            {
                                KeyStr = "备    注:";
                                header.SetText(curR, i % 2, KeyStr + item.Remarks.ToString());
                            }
                        }

                        // Header header = new Header(4, 3);                   //行列数基本不受限制,但超过一页失去意义,因为以Body为主,以其它为辅
                        // header.IsDrawAllPage = true;                        //可以指定每页是否重复打印
                        //header.SetText(0, 0, "批发单号:" + item.ID);
                        //header.SetText(0, 1, "客    户:" + PfCustomerCache.GetUserNameWithPf(item.PfCustomerID));
                        //header.SetText(0, 2, "开单时间:" + item.CreateTime.GetDateTimeFormats('f')[0].ToString());                        //DataSource可以是字符串、一维数组、二维数组、DataTable、WinDataGrid、WebDataGrid、ListView\ListView、
                        //header.SetText(1, 0, "操 作 人:" + CommonGlobalCache.GetUserName(item.AdminUserID));
                        //header.SetText(1, 1, "付款方式:" + item.PayTypeName);               //同仁们还可以根据实际应用对GridBase的DataSource进行扩展
                        //header.SetText(1, 2, String.Empty);
                        //header.SetText(2, 0, "总 数 量:" + item.TotalCount.ToString());
                        //header.SetText(2, 1, "批发总额:" + item.TotalPfPrice.ToString());                //同仁们还可以根据实际应用对GridBase的DataSource进行扩展
                        //header.SetText(2, 2, String.Empty);
                        //header.SetText(3, 0, "备    注:"  );
                        //header.SetText(3, 1, item.Remarks);                //同仁们还可以根据实际应用对GridBase的DataSource进行扩展
                        //header.SetText(3, 2, String.Empty);
                        misGoldPrinter.Header = header;
                        List <PrintColumnInfo> dataGV = CurrentPTemplate.PrintColumnInfos;
                        string ColumnsList            = string.Empty;
                        foreach (PrintColumnInfo itemC in dataGV)
                        {
                            ColumnsList += itemC.Name + ",";
                        }
                        CommonGlobalUtil.WriteLog("模板设置打印列表头为=" + ColumnsList + "\r\n");
                        bool isflag = false;
                        if (dataGV.Count == 0)
                        {
                            isflag = true;
                        }
                        //   DataTable dt = dataGridView2.DataSource as DataTable;
                        //  DataTable newDt = new DataTable();
                        List <int> columnCount = new List <int>();

                        int    pinrtColNum         = 0;
                        string dataGridColumnsList = string.Empty;
                        for (int i = 0; i < dataGridView2.Columns.Count; i++)
                        {
                            DataGridViewColumn column = dataGridView2.Columns[i];
                            //if (column.HeaderText == "F" || column.HeaderText == "XS" || column.HeaderText == "S" || column.HeaderText == "M" || column.HeaderText == "L"
                            //    || column.HeaderText == "XL" || column.HeaderText == "XL2" || column.HeaderText == "XL3" || column.HeaderText == "XL4" || column.HeaderText == "XL5"
                            //    || column.HeaderText == "XL6")
                            //{
                            //    if (dataGV.FindAll(t => t.Name == "尺码列").Count > 0)
                            //    {
                            //        columnCount.Add(i);
                            //    }
                            //    else
                            //    {
                            //        column.Visible = false;
                            //    }
                            //}
                            //else
                            //{
                            if (dataGV.FindAll(t => t.Name == column.HeaderText).Count > 0)
                            {
                                columnCount.Add(i);
                                dataGridColumnsList += column.HeaderText + ",";
                                pinrtColNum++;
                            }
                            else
                            {
                                if (dataGV.FindAll(t => t.Name == column.DataPropertyName).Count > 0)
                                {
                                    columnCount.Add(i);
                                    column.HeaderText    = column.HeaderText.Replace("\r\n", " ");
                                    dataGridColumnsList += column.DataPropertyName + ",";
                                    pinrtColNum++;
                                }
                                else
                                {
                                    if (column.DataPropertyName.Contains("XL"))
                                    {
                                        string name = column.DataPropertyName;  //XL3
                                                                                //3XL
                                        string newname  = name.Replace("XL", "");
                                        string checkstr = newname + "XL";
                                        if (dataGV.FindAll(t => t.Name == checkstr).Count > 0)
                                        {
                                            columnCount.Add(i);
                                            column.HeaderText    = column.HeaderText.Replace("\r\n", " ");
                                            dataGridColumnsList += column.DataPropertyName + ",";
                                            pinrtColNum++;
                                        }
                                        else
                                        {
                                            column.Visible = false;
                                        }
                                    }
                                    else
                                    {
                                        column.Visible = false;
                                    }
                                }
                            }
                            //}

                            CommonGlobalUtil.WriteLog("DataGridView能打印的列为=" + dataGridColumnsList);
                            if (isflag)
                            {
                                if (i == 0)
                                {
                                    columnCount.Add(i);
                                    column.Visible    = true;
                                    column.HeaderText = "";

                                    DataTable  dt = new DataTable();
                                    DataColumn c1 = new DataColumn();
                                    c1.ColumnName = "HeaderText";

                                    dt.Columns.Add(c1);
                                    dataGridView2.DataSource = null;
                                    dataGridView2.DataSource = dt;
                                }
                            }
                        }

                        misGoldPrinter.DataSource = DataGridViewUtil.ToStringArray(dataGridView2, true, true);
                        if (!Directory.Exists(CommonGlobalUtil.SystemDir + "EXPORTS\\"))
                        {
                            Directory.CreateDirectory(CommonGlobalUtil.SystemDir + "EXPORTS\\");
                        }
                        misGoldPrinter.FileName = CommonGlobalUtil.SystemDir + "EXPORTS\\" + item.ID + ".jpg";
                        ((GoldPrinter.Body)(misGoldPrinter.Body)).Font = dataGridView2.Font;

                        /*  int[] widths = new int[] {
                         * 80,100,50,40, 50,
                         * 30,30,30,30,30,30,30,30,30,30,30
                         * ,40,50,50
                         * };*/
                        int[] widths = new int[CurrentPTemplate.PrintColumnInfos.Count];
                        CommonGlobalUtil.WriteLog("widths长度" + widths.Length);
                        CommonGlobalUtil.WriteLog("实际打印数量=" + pinrtColNum + "\r\n" + "设置能打印的列数量=" + widths.Length.ToString());

                        for (int j = 0; j < CurrentPTemplate.PrintColumnInfos.Count; j++)
                        {
                            widths[j] = Convert.ToInt32(CurrentPTemplate.PrintColumnInfos[j].Rate);
                        }

                        List <int> widthList = new List <int>();
                        for (int i = 0; i < CurrentPTemplate.PrintColumnInfos.Count; i++)
                        {
                            DataGridViewColumn column = dataGridView2.Columns[columnCount[i]];
                            if (column.Visible && !String.IsNullOrEmpty(column.HeaderText))
                            {
                                widthList.Add(widths[i]);
                            }
                            else
                            {
                                /*  if (column.Visible && !String.IsNullOrEmpty(column.DataPropertyName))
                                 * {
                                 *    widthList.Add(widths[i]);
                                 * }*/
                            }
                        }
                        if (isflag)
                        {
                            widths    = new int[1];
                            widths[0] = 100;
                            widthList.Add(widths[0]);
                        }
                        widths = widthList.ToArray();
                        int newWidth = 800;

                        /*  int totalWidth = 0;
                         * for (int i = 0; i < widths.Length; i++)
                         * {
                         *    totalWidth += widths[i];
                         * }*/
                        for (int i = 0; i < widths.Length; i++)
                        {
                            widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)0.1), 0, MidpointRounding.AwayFromZero));
                            // widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)1.0 / totalWidth), 0, MidpointRounding.AwayFromZero));
                        }


                        ((GoldPrinter.Body)(misGoldPrinter.Body)).ColsWidth = widths;
                        //((GoldPrinter.Body)(misGoldPrinter.Body)).RowHeight = 100;
                        misGoldPrinter.Preview();
                        misGoldPrinter.Dispose();
                        misGoldPrinter = null;
                    }
                }
            }
        }
Esempio n. 5
0
 //关闭窗体
 private void frmPrint_Closed(object sender, System.EventArgs e)
 {
     //*****第五步*****:用完释放
     misGoldPrinter.Dispose();
     misGoldPrinter = null;
 }
Esempio n. 6
0
        //简单打印示例
        public static void Print(CheckStoreOrder item, DataGridView dataGridView2, int times = 1)
        {
            //if (times < 0) { times = 0; }

            //for (int i = 0; i < times; i++)
            //{
            InteractResult <PrintTemplateInfo> result = CommonGlobalCache.ServerProxy.GetPrintTemplateInfo(PrintTemplateType.CheckStoreOrder);

            if (result.ExeResult == ExeResult.Success)
            {
                PrintTemplateInfo CurrentPTemplate = result.Data;
                for (int c = 0; c < CurrentPTemplate.PrintCount; c++)
                {
                    GoldPrinter.MisGoldPrinter misGoldPrinter = new GoldPrinter.MisGoldPrinter(false, new PrinterMargins(20, 20, 20, 20, 800, 1129));
                    // misGoldPrinter.RowsPerPage = 3;
                    if (CurrentPTemplate.OrderName != "")
                    {
                        misGoldPrinter.Title = CurrentPTemplate.OrderName; //主标题(C#用\n表示换行)	}

                        misGoldPrinter.Caption = "";

                        double headRow = Math.Round(Convert.ToSingle(CurrentPTemplate.SystemVariables.Count / 2));

                        Header header = new Header(Convert.ToInt32(headRow) + 1, 2);
                        header.IsDrawAllPage = true;

                        CommonGlobalUtil.WriteLog("变量总数=" + CurrentPTemplate.SystemVariables.Count + "\r\n" + "应显示行号=" + headRow + 1);

                        //            misGoldPrinter.Title = "盘点单";                           //主标题(C#用\n表示换行)
                        //misGoldPrinter.Caption = "";                                        //副标题
                        //misGoldPrinter.Top = "单号:" + item.AllocateOrder.ID + "|收货方:" + CommonGlobalCache.GetShopName(item.AllocateOrder.DestShopID) + "|开单日期:" + item.AllocateOrder.CreateTime;                                       //抬头,一行三列的文字说明,用|分隔


                        // Header header = new Header(4, 3);                   //行列数基本不受限制,但超过一页失去意义,因为以Body为主,以其它为辅
                        //header.IsDrawAllPage = true;                        //可以指定每页是否重复打印

                        for (int i = 0; i < CurrentPTemplate.SystemVariables.Count; i++)
                        {
                            int curR = 0;
                            if (i < 2)
                            {
                                curR = 0;
                            }
                            else
                            {
                                double resRow = i / 2;
                                curR = Convert.ToInt32(Math.Round(resRow));
                            }
                            string KeyStr = "";
                            if (CurrentPTemplate.SystemVariables[i] == "单号")
                            {
                                KeyStr = "盘点单号:";
                                header.SetText(curR, i % 2, CurrentPTemplate.SystemVariables[i] + item.ID);
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "店铺")
                            {
                                KeyStr = "店 铺:";
                                header.SetText(curR, i % 2, KeyStr + CommonGlobalCache.GetShopName(item.ShopID));
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "操作人")
                            {
                                KeyStr = "操 作 人:";
                                header.SetText(curR, i % 2, KeyStr + CommonGlobalCache.GetUserName(item.OperatorUserID));
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "审核人")
                            {
                                KeyStr = "审 核 人:";
                                header.SetText(curR, i % 2, KeyStr + CommonGlobalCache.GetUserName(item.CheckUserID));
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "盘点时间")
                            {
                                KeyStr = "盘点时间:";
                                header.SetText(curR, i % 2, KeyStr + item.CreateTime.GetDateTimeFormats('f')[0].ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "审核时间")
                            {
                                KeyStr = "审核时间:";
                                header.SetText(curR, i % 2, KeyStr + item.CheckTime.GetDateTimeFormats('f')[0].ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "单据备注")
                            {
                                KeyStr = "备    注:";
                                header.SetText(curR, i % 2, KeyStr + item.Remarks.ToString());
                            }
                        }


                        //   header.SetText(0, 0, "盘点单号:" + item.ID);
                        //  header.SetText(0, 1, "任务编号:" + item.CheckStoreTaskID);

                        /*    header.SetText(0, 2, String.Empty);
                         *  header.SetText(1, 0, "店    铺:" + CommonGlobalCache.GetShopName(item.ShopID));
                         *  header.SetText(1, 1, "操 作 人:" + CommonGlobalCache.GetUserName(item.OperatorUserID));
                         *  header.SetText(1, 2, "审 核 人:" + CommonGlobalCache.GetUserName(item.CheckUserID));           //同仁们还可以根据实际应用对GridBase的DataSource进行扩展
                         *  header.SetText(2, 0, "盘点时间:" + item.CreateTime.GetDateTimeFormats('f')[0].ToString());
                         *  header.SetText(2, 1, "审核时间:" + item.CheckTime.GetDateTimeFormats('f')[0].ToString());
                         *  header.SetText(2, 2, String.Empty);
                         *  header.SetText(3, 0, "备    注:");
                         *  header.SetText(3, 1, item.Remarks);
                         *  header.SetText(3, 2, String.Empty);*/

                        misGoldPrinter.Header = header;                     //将定制对象,赋给页头
                                                                            // misGoldPrinter.Top = new String[] { "单号:" + item.AllocateOrder.ID + "|收货方:" + CommonGlobalCache.GetShopName(item.AllocateOrder.DestShopID) + "|开单日期:" + item.AllocateOrder.CreateTime,
                                                                            //  "发货方:" + CommonGlobalCache.GetShopName(item.AllocateOrder.SourceShopID) + "|操作人:" + CommonGlobalCache.GetUserName(item.AllocateOrder.SourceUserID) + "|打印日期:" + System.DateTime.Now.ToLongDateString()  };                                       //抬头,一行三列的文字说明,用|分隔


                        //  misGoldPrinter.Bottom = "发货方:" + CommonGlobalCache.GetShopName(item.AllocateOrder.SourceShopID) + "|操作人:" + CommonGlobalCache.GetUserName(item.AllocateOrder.SourceUserID) + "|打印日期:" + System.DateTime.Now.ToLongDateString() + "|";  //结尾,说明同抬头
                        List <PrintColumnInfo> dataGV = CurrentPTemplate.PrintColumnInfos;
                        bool   isflag      = false;
                        string ColumnsList = string.Empty;
                        foreach (PrintColumnInfo itemC in dataGV)
                        {
                            ColumnsList += itemC.Name + ",";
                        }
                        CommonGlobalUtil.WriteLog("模板设置打印列表头为=" + ColumnsList + "\r\n");
                        if (dataGV.Count == 0)
                        {
                            isflag = true;
                        }
                        //   DataTable dt = dataGridView2.DataSource as DataTable;
                        //  DataTable newDt = new DataTable();
                        List <int> columnCount         = new List <int>();
                        int        pinrtColNum         = 0;
                        string     dataGridColumnsList = string.Empty;
                        for (int i = 0; i < dataGridView2.Columns.Count; i++)
                        {
                            DataGridViewColumn column = dataGridView2.Columns[i];
                            if (column.DataPropertyName == "FAtm" || column.DataPropertyName == "XSAtm" || column.DataPropertyName == "SAtm" || column.DataPropertyName == "MAtm" ||
                                column.DataPropertyName == "LAtm" || column.DataPropertyName == "XLAtm" || column.DataPropertyName == "XL2Atm" || column.DataPropertyName == "XL3Atm" ||
                                column.DataPropertyName == "XL4Atm" || column.DataPropertyName == "XL5Atm" || column.DataPropertyName == "XL6Atm")
                            {
                                column.Visible = false;
                                continue;
                            }
                            //if (column.Visible==true)
                            //{
                            if (dataGV.FindAll(t => t.Name == column.HeaderText).Count > 0)
                            {
                                columnCount.Add(i);
                                dataGridColumnsList += column.HeaderText + ",";
                                pinrtColNum++;
                            }
                            else
                            {
                                if (dataGV.FindAll(t => t.Name == column.DataPropertyName).Count > 0)
                                {
                                    columnCount.Add(i);
                                    column.HeaderText    = column.HeaderText.Replace("\r\n", " ");
                                    dataGridColumnsList += column.DataPropertyName + ",";
                                    pinrtColNum++;
                                }
                                else
                                {
                                    if (column.DataPropertyName.Contains("XL"))
                                    {
                                        string name = column.DataPropertyName;      //XL3
                                                                                    //3XL
                                        string newname  = name.Replace("XL", "");
                                        string checkstr = newname + "XL";
                                        if (dataGV.FindAll(t => t.Name == checkstr).Count > 0)
                                        {
                                            columnCount.Add(i);
                                            column.HeaderText    = column.HeaderText.Replace("\r\n", " ");
                                            dataGridColumnsList += column.DataPropertyName + ",";
                                            pinrtColNum++;
                                        }
                                        else
                                        {
                                            column.Visible = false;
                                        }
                                    }
                                    else
                                    {
                                        column.Visible = false;
                                    }
                                }
                            }

                            if (isflag)
                            {
                                if (i == 0)
                                {
                                    columnCount.Add(i);
                                    column.Visible    = true;
                                    column.HeaderText = "";

                                    DataTable  dt = new DataTable();
                                    DataColumn c1 = new DataColumn();
                                    c1.ColumnName = "HeaderText";

                                    dt.Columns.Add(c1);
                                    dataGridView2.DataSource = null;
                                    dataGridView2.DataSource = dt;
                                }
                            }
                            //}
                        }

                        CommonGlobalUtil.WriteLog("DataGridView能打印的列为=" + dataGridColumnsList);
                        misGoldPrinter.DataSource = DataGridViewUtil.ToStringArray(dataGridView2, true, true);
                        if (!Directory.Exists(CommonGlobalUtil.SystemDir + "EXPORTS\\"))
                        {
                            Directory.CreateDirectory(CommonGlobalUtil.SystemDir + "EXPORTS\\");
                        }
                        misGoldPrinter.FileName = CommonGlobalUtil.SystemDir + "EXPORTS\\" + item.ID + ".jpg";
                        ((GoldPrinter.Body)(misGoldPrinter.Body)).Font = dataGridView2.Font;

                        /*  int[] widths = new int[] {
                         * 80,100,50,40, 50,
                         * 30,30,30,30,30,30,30,30,30,30,30
                         * ,40,50,50
                         * };*/
                        int[] widths = new int[CurrentPTemplate.PrintColumnInfos.Count];
                        for (int j = 0; j < CurrentPTemplate.PrintColumnInfos.Count; j++)
                        {
                            widths[j] = Convert.ToInt32(CurrentPTemplate.PrintColumnInfos[j].Rate);
                        }

                        List <int> widthList = new List <int>();
                        for (int i = 0; i < CurrentPTemplate.PrintColumnInfos.Count; i++)
                        {
                            DataGridViewColumn column = dataGridView2.Columns[columnCount[i]];
                            if (column.Visible && !String.IsNullOrEmpty(column.HeaderText))
                            {
                                widthList.Add(widths[i]);
                            }
                        }

                        if (isflag)
                        {
                            widths    = new int[1];
                            widths[0] = 100;
                            widthList.Add(widths[0]);
                        }
                        widths = widthList.ToArray();
                        int newWidth = 800;

                        /*  int totalWidth = 0;
                         * for (int i = 0; i < widths.Length; i++)
                         * {
                         *    totalWidth += widths[i];
                         * }*/
                        for (int i = 0; i < widths.Length; i++)
                        {
                            widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)0.1), 0, MidpointRounding.AwayFromZero));
                            // widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)1.0 / totalWidth), 0, MidpointRounding.AwayFromZero));
                        }

                        CommonGlobalUtil.WriteLog("实际打印数量=" + pinrtColNum + "\r\n" + "设置能打印的列数量=" + widths.Length.ToString());
                        ((GoldPrinter.Body)(misGoldPrinter.Body)).ColsWidth = widths;
                        misGoldPrinter.Preview();
                        misGoldPrinter.Dispose();
                        misGoldPrinter = null;
                    }
                }
            }
        }
Esempio n. 7
0
        //简单打印示例
        public static void Print(ReplenishOrder item, DataGridView dataGridView2, int times = 1)
        {
            result = CommonGlobalCache.ServerProxy.GetPrintTemplateInfo(PrintTemplateType.ReplenishOrder);
            if (result.ExeResult == ExeResult.Success)
            {
                PrintTemplateInfo CurrentPTemplate = result.Data;
                for (int c = 0; c < CurrentPTemplate.PrintCount; c++)
                {
                    GoldPrinter.MisGoldPrinter misGoldPrinter = new GoldPrinter.MisGoldPrinter(false, new PrinterMargins(20, 20, 20, 20, 800, 1129));
                    if (CurrentPTemplate.OrderName != "")
                    {
                        misGoldPrinter.Title = CurrentPTemplate.OrderName; //主标题(C#用\n表示换行)	}

                        misGoldPrinter.Caption = "";

                        double headRow = Math.Round(Convert.ToSingle(CurrentPTemplate.SystemVariables.Count / 2));

                        Header header = new Header(Convert.ToInt32(headRow) + 1, 2);
                        header.IsDrawAllPage = true;

                        CommonGlobalUtil.WriteLog("变量总数=" + CurrentPTemplate.SystemVariables.Count + "\r\n" + "应显示行号=" + headRow + 1);
                        for (int i = 0; i < CurrentPTemplate.SystemVariables.Count; i++)
                        {
                            int curR = 0;
                            if (i < 2)
                            {
                                curR = 0;
                            }
                            else
                            {
                                double resRow = i / 2;
                                curR = Convert.ToInt32(Math.Round(resRow));
                            }
                            string KeyStr = "";
                            if (CurrentPTemplate.SystemVariables[i] == "单号")
                            {
                                KeyStr = "补货申请单号:";
                                header.SetText(curR, i % 2, CurrentPTemplate.SystemVariables[i] + item.ID);
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "申请时间")
                            {
                                KeyStr = "申请时间:";
                                header.SetText(curR, i % 2, KeyStr + item.CreateTime.GetDateTimeFormats('f')[0].ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "申请店铺")
                            {
                                KeyStr = "申请店铺:";
                                header.SetText(curR, i % 2, KeyStr + CommonGlobalCache.GetShopName(item.ShopID));
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "申请人")
                            {
                                KeyStr = "申 请 人:";
                                header.SetText(curR, i % 2, KeyStr + CommonGlobalCache.GetUserName(item.RequestGuideID));
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "总数量")
                            {
                                KeyStr = "总 数 量:";
                                header.SetText(curR, i % 2, KeyStr + item.TotalCount.ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "总金额")
                            {
                                KeyStr = "总 金 额:";
                                header.SetText(curR, i % 2, KeyStr + item.TotalPrice.ToString());
                            }
                            else if (CurrentPTemplate.SystemVariables[i] == "单据备注")
                            {
                                KeyStr = "备    注:";
                                header.SetText(curR, i % 2, KeyStr + item.Remarks.ToString());
                            }
                        }

                        misGoldPrinter.Header = header;
                        //行列数基本不受限制,但超过一页失去意义,因为以Body为主,以其它为辅
                        //可以指定每页是否重复打印

                        /*   header.SetText(0, 0, "补货申请单号:" + item.ID);
                         * header.SetText(0, 1, "申请时间:" + item.CreateTime.GetDateTimeFormats('f')[0].ToString());
                         * header.SetText(1, 0, "申请店铺:" + CommonGlobalCache.GetShopName(item.ShopID));
                         * header.SetText(1, 1, "申 请 人:" + CommonGlobalCache.GetUserName(item.RequestGuideID));
                         * header.SetText(2, 0, "总 数 量:" + item.TotalCount.ToString());
                         * header.SetText(2, 1, "总 金 额:" + item.TotalPrice.ToString());
                         * header.SetText(3, 0, "备    注:");
                         * header.SetText(3, 1, item.Remarks);
                         * misGoldPrinter.Header = header;*/
                        //List<String> lines = new List<string>();
                        //misGoldPrinter.Lines = lines;
                        List <PrintColumnInfo> dataGV = CurrentPTemplate.PrintColumnInfos;
                        string ColumnsList            = string.Empty;
                        foreach (PrintColumnInfo itemC in dataGV)
                        {
                            ColumnsList += itemC.Name + ",";
                        }
                        CommonGlobalUtil.WriteLog("模板设置打印列表头为=" + ColumnsList + "\r\n");
                        bool isflag = false;
                        if (dataGV.Count == 0)
                        {
                            isflag = true;
                        }
                        //   DataTable dt = dataGridView2.DataSource as DataTable;
                        //  DataTable newDt = new DataTable();
                        List <int> columnCount = new List <int>();

                        int    pinrtColNum         = 0;
                        string dataGridColumnsList = string.Empty;
                        for (int i = 0; i < dataGridView2.Columns.Count; i++)
                        {
                            DataGridViewColumn column = dataGridView2.Columns[i];
                            if (dataGV.FindAll(t => t.Name == column.HeaderText).Count > 0)
                            {
                                columnCount.Add(i);
                                dataGridColumnsList += column.HeaderText + ",";
                                pinrtColNum++;
                            }
                            else
                            {
                                if (dataGV.FindAll(t => t.Name == column.DataPropertyName).Count > 0)
                                {
                                    columnCount.Add(i);
                                    dataGridColumnsList += column.DataPropertyName + ",";
                                    pinrtColNum++;
                                }
                                else
                                {
                                    if (dataGV.FindAll(t => t.Name == column.DataPropertyName).Count > 0)
                                    {
                                        columnCount.Add(i);
                                        column.HeaderText    = column.HeaderText.Replace("\r\n", " ");
                                        dataGridColumnsList += column.DataPropertyName + ",";
                                        pinrtColNum++;
                                    }
                                    else
                                    {
                                        if (column.DataPropertyName.Contains("XL"))
                                        {
                                            string name = column.DataPropertyName;  //XL3
                                                                                    //3XL
                                            string newname  = name.Replace("XL", "");
                                            string checkstr = newname + "XL";
                                            if (dataGV.FindAll(t => t.Name == checkstr).Count > 0)
                                            {
                                                columnCount.Add(i);
                                                column.HeaderText    = column.HeaderText.Replace("\r\n", " ");
                                                dataGridColumnsList += column.DataPropertyName + ",";
                                                pinrtColNum++;
                                            }
                                            else
                                            {
                                                column.Visible = false;
                                            }
                                        }
                                        else
                                        {
                                            column.Visible = false;
                                        }
                                    }
                                }
                            }
                            if (isflag)
                            {
                                if (i == 0)
                                {
                                    columnCount.Add(i);
                                    column.Visible    = true;
                                    column.HeaderText = "";

                                    DataTable  dt = new DataTable();
                                    DataColumn c1 = new DataColumn();
                                    c1.ColumnName = "HeaderText";

                                    dt.Columns.Add(c1);
                                    dataGridView2.DataSource = null;
                                    dataGridView2.DataSource = dt;
                                }
                            }
                        }

                        CommonGlobalUtil.WriteLog("DataGridView能打印的列为=" + dataGridColumnsList);

                        misGoldPrinter.DataSource = DataGridViewUtil.ToStringArray(dataGridView2, true, true);
                        if (!Directory.Exists(CommonGlobalUtil.SystemDir + "EXPORTS\\"))
                        {
                            Directory.CreateDirectory(CommonGlobalUtil.SystemDir + "EXPORTS\\");
                        }
                        misGoldPrinter.FileName = CommonGlobalUtil.SystemDir + "EXPORTS\\" + item.ID + ".jpg";
                        ((GoldPrinter.Body)(misGoldPrinter.Body)).Font = dataGridView2.Font;

                        /*  int[] widths = new int[] {
                         * 80,100,50,40, 50,
                         * 30,30,30,30,30,30,30,30,30,30,30
                         * ,40,50,50
                         * };*/
                        int[] widths = new int[CurrentPTemplate.PrintColumnInfos.Count];
                        for (int j = 0; j < CurrentPTemplate.PrintColumnInfos.Count; j++)
                        {
                            widths[j] = Convert.ToInt32(CurrentPTemplate.PrintColumnInfos[j].Rate);
                        }

                        List <int> widthList = new List <int>();
                        for (int i = 0; i < CurrentPTemplate.PrintColumnInfos.Count; i++)
                        {
                            DataGridViewColumn column = dataGridView2.Columns[columnCount[i]];
                            if (column.Visible && !String.IsNullOrEmpty(column.HeaderText))
                            {
                                widthList.Add(widths[i]);
                            }
                        }
                        if (isflag)
                        {
                            widths    = new int[1];
                            widths[0] = 100;
                            widthList.Add(widths[0]);
                        }
                        widths = widthList.ToArray();
                        int newWidth = 800;

                        /*  int totalWidth = 0;
                         * for (int i = 0; i < widths.Length; i++)
                         * {
                         *    totalWidth += widths[i];
                         * }*/
                        for (int i = 0; i < widths.Length; i++)
                        {
                            widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)0.1), 0, MidpointRounding.AwayFromZero));
                            // widths[i] = decimal.ToInt32(Math.Round((widths[i] * newWidth * (decimal)1.0 / totalWidth), 0, MidpointRounding.AwayFromZero));
                        }

                        CommonGlobalUtil.WriteLog("实际打印数量=" + pinrtColNum + "\r\n" + "设置能打印的列数量=" + widths.Length.ToString());
                        ((GoldPrinter.Body)(misGoldPrinter.Body)).ColsWidth = widths;
                        misGoldPrinter.Preview();
                        misGoldPrinter.Dispose();
                        misGoldPrinter = null;
                    }
                }
            }
        }