?? salerefundmentprint.aspx.cs
字號:
?//文件名:SaleRefundmentPrint.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class SaleManage_SaleRefundmentPrint : System.Web.UI.Page
{
private SaleManage_SaleRefundmentForm MyPrintForm;
protected void Page_Load(object sender, EventArgs e)
{//打印商品銷售退貨付款信息
if (Session["MyCompanyName"] != null)
{
this.Label1.Text = Session["MyCompanyName"].ToString() + "商品銷售退貨付款單";
}
this.Label2.Text = "打印日期:" + DateTime.Now.ToShortDateString();
MyPrintForm = (SaleManage_SaleRefundmentForm)Context.Handler;
this.Label3.Text = "銷售退款單號:" + MyPrintForm.MyPrint銷售退款單號;
this.Label4.Text = "客戶名稱:" + MyPrintForm.MyPrint客戶名稱;
this.Label5.Text = "應收金額:" + MyPrintForm.MyPrint應收金額;
this.Label6.Text = "實付金額:" + MyPrintForm.MyPrint實付金額;
this.Label7.Text = "經辦人員:" + MyPrintForm.MyPrint經辦人員;
this.Label8.Text = "付款方式:" + MyPrintForm.MyPrint付款方式;
this.Label9.Text = "付款日期:" + MyPrintForm.MyPrint付款日期;
this.Label10.Text = "補充說明:" + MyPrintForm.MyPrint補充說明;
this.Label11.Text = "開戶銀行:" + MyPrintForm.MyPrint開戶銀行;
this.Label12.Text = "銀行賬戶:" + MyPrintForm.MyPrint銀行賬號;
if (Session["MyUserName"] != null)
{
this.Label31.Text = "操作員:" + Session["MyUserName"].ToString();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -