亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? workbillspnform.cs

?? 汽車銷售公司ERP進銷存系統 汽車銷售公司ERP進銷存系統
?? CS
?? 第 1 頁 / 共 3 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.Windows.Forms;
using System.ComponentModel;

using CallCenter.Modules;
using CallCenter.BusinessLayer;
using CallCenter.BusinessInterfaces;
using CallCenter.BusinessInterfaces.MainForms;
using CallCenter.BusinessInterfaces.BaseForms.Models;

namespace CallCenter.BusinessInterfaces.BaseForms {
	/// <summary>
	/// WorkBillSPNForm 的摘要說明。
	/// author:yanqingxi
	/// </summary>
	public class WorkBillSPNForm : System.Windows.Forms.Form {

		#region fields
		private System.Windows.Forms.TextBox textBox1;
		private DevExpress.XtraEditors.PanelControl panel1;
		private DevExpress.XtraEditors.PanelControl panel2;
		private DevExpress.XtraEditors.GroupControl groupBox1;
		private DevExpress.XtraEditors.GroupControl groupBox2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.Label label11;
		private DevExpress.XtraEditors.GroupControl groupBox3;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.Label label13;
		private System.Windows.Forms.ComboBox combWBState;
		private System.Windows.Forms.ComboBox combWBGrade;
		private System.Windows.Forms.Label label14;
		private System.Windows.Forms.Label label15;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.ComboBox cmbSPGrade;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label16;
		/// <summary>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;	

		private int m_wid=-1;
		private IList m_spList;
		private bool isNeedSavedWBC=false;
		private bool isNeedSavedSPN=false;
		private string m_opId=string.Empty;
		private string m_opName=string.Empty;
		private CustomerInfo m_CustomerInfo=null;
		private WorkBillInfo m_WorkBillInfo=null;
		private SPServiceNoteInfo m_SPNInfo=null; 
		private OtherBLL m_OtherBLL=new OtherBLL();
		private WorkBillBLL m_WorkBillBLL =new WorkBillBLL();
		private SPServiceNoteBLL m_SPNBLL = new SPServiceNoteBLL();
		private DevExpress.XtraEditors.TextEdit tbTelNo;
		private DevExpress.XtraEditors.TextEdit tbCName;
		private DevExpress.XtraEditors.TextEdit tbCcontact;
		private DevExpress.XtraEditors.TextEdit tbCallingTime;
		private DevExpress.XtraEditors.TextEdit tbCtype;
		private DevExpress.XtraEditors.TextEdit tbCsex;
		private DevExpress.XtraEditors.TextEdit tbCAddress;
		private DevExpress.XtraEditors.MemoEdit tbWBBrief;
		private DevExpress.XtraEditors.MemoEdit tbCComment;
		private DevExpress.XtraEditors.TextEdit tbSPName;
		private DevExpress.XtraEditors.TextEdit tbSPDate;
		private DevExpress.XtraEditors.MemoEdit tbSPContent;
		private DevExpress.XtraEditors.MemoEdit tbSPComment;
		private DevExpress.XtraEditors.SimpleButton button1;
		private DevExpress.XtraEditors.SimpleButton btnClose;
		private ServiceProviderBLL m_SPBLL = new ServiceProviderBLL();
		
		#endregion

		#region properites
		public IList SPList{
			get{
				if(m_spList==null){
					m_spList= new ArrayList();
				}
				return m_spList;
			}
			set{
				m_spList = value;
			}
		}
		private int WBState{
			get{
				if("處理中"== this.combWBState.Text) {
					return 10 ;
				}
				else if("已處理"== this.combWBState.Text) {
					return 20;
				}
				else if("已辦結"== this.combWBState.Text) {
					return 30;
				}
				else if("已歸檔"== this.combWBState.Text) {
					return 40;
				}
				else {
					return -1;
				}
			}
		}
		#endregion

		#region 構造
		public WorkBillSPNForm() { 
			//
			// Windows 窗體設計器支持所必需的
			//
			
			InitializeComponent();
			InitializeCombCState();
			InitializeCmbWBState();
			InitializeCmbSPNState();
			//
			// TODO: 在 InitializeComponent 調用后添加任何構造函數代碼
			//
		}

		public WorkBillSPNForm(CustomerInfo customerInfo,WorkBillInfo workBillInfo):this(){

			if(workBillInfo==null){
				return ;
			}
			this.m_CustomerInfo= customerInfo;
			this.m_opId=ShareClass.Operator;
			this.m_opName=ShareClass.OperatorChinese;
			this.m_WorkBillInfo = workBillInfo;
			this.m_wid = workBillInfo.id;
			DownLoadCustomerInfo(customerInfo);
			DownLoadWorkBillInfo(workBillInfo);
			InitializeSPNInfo();
			RoleLimit();
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing ) {
			if( disposing ) {
				if(components != null) {
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}
		#endregion

		#region Windows 窗體設計器生成的代碼
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內容。
		/// </summary>
		private void InitializeComponent() {
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.panel1 = new DevExpress.XtraEditors.PanelControl();
			this.combWBState = new System.Windows.Forms.ComboBox();
			this.label15 = new System.Windows.Forms.Label();
			this.groupBox1 = new DevExpress.XtraEditors.GroupControl();
			this.label7 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.groupBox3 = new DevExpress.XtraEditors.GroupControl();
			this.combWBGrade = new System.Windows.Forms.ComboBox();
			this.label13 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.groupBox2 = new DevExpress.XtraEditors.GroupControl();
			this.cmbSPGrade = new System.Windows.Forms.ComboBox();
			this.label16 = new System.Windows.Forms.Label();
			this.label14 = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.panel2 = new DevExpress.XtraEditors.PanelControl();
			this.tbTelNo = new DevExpress.XtraEditors.TextEdit();
			this.tbCName = new DevExpress.XtraEditors.TextEdit();
			this.tbCcontact = new DevExpress.XtraEditors.TextEdit();
			this.tbCallingTime = new DevExpress.XtraEditors.TextEdit();
			this.tbCtype = new DevExpress.XtraEditors.TextEdit();
			this.tbCsex = new DevExpress.XtraEditors.TextEdit();
			this.tbCAddress = new DevExpress.XtraEditors.TextEdit();
			this.tbWBBrief = new DevExpress.XtraEditors.MemoEdit();
			this.tbCComment = new DevExpress.XtraEditors.MemoEdit();
			this.tbSPName = new DevExpress.XtraEditors.TextEdit();
			this.tbSPDate = new DevExpress.XtraEditors.TextEdit();
			this.tbSPContent = new DevExpress.XtraEditors.MemoEdit();
			this.tbSPComment = new DevExpress.XtraEditors.MemoEdit();
			this.button1 = new DevExpress.XtraEditors.SimpleButton();
			this.btnClose = new DevExpress.XtraEditors.SimpleButton();
			((System.ComponentModel.ISupportInitialize)(this.panel1)).BeginInit();
			this.panel1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupBox1)).BeginInit();
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupBox3)).BeginInit();
			this.groupBox3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupBox2)).BeginInit();
			this.groupBox2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panel2)).BeginInit();
			this.panel2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.tbTelNo.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbCName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbCcontact.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbCallingTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbCtype.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbCsex.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbCAddress.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbWBBrief.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbCComment.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbSPName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbSPDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbSPContent.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tbSPComment.Properties)).BeginInit();
			this.SuspendLayout();
			// 
			// textBox1
			// 
			this.textBox1.Location = new System.Drawing.Point(0, 0);
			this.textBox1.Name = "textBox1";
			this.textBox1.TabIndex = 0;
			this.textBox1.Text = "";
			// 
			// panel1
			// 
			this.panel1.Controls.Add(this.tbWBBrief);
			this.panel1.Controls.Add(this.combWBState);
			this.panel1.Controls.Add(this.label15);
			this.panel1.Controls.Add(this.groupBox1);
			this.panel1.Controls.Add(this.groupBox3);
			this.panel1.Controls.Add(this.label2);
			this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
			this.panel1.Location = new System.Drawing.Point(0, 0);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(448, 354);
			this.panel1.TabIndex = 0;
			// 
			// combWBState
			// 
			this.combWBState.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.combWBState.Location = new System.Drawing.Point(96, 160);
			this.combWBState.Name = "combWBState";
			this.combWBState.Size = new System.Drawing.Size(120, 20);
			this.combWBState.TabIndex = 0;
			// 
			// label15
			// 
			this.label15.Location = new System.Drawing.Point(24, 192);
			this.label15.Name = "label15";
			this.label15.TabIndex = 2;
			this.label15.Text = "工單簡介";
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.tbCAddress);
			this.groupBox1.Controls.Add(this.tbCsex);
			this.groupBox1.Controls.Add(this.tbCtype);
			this.groupBox1.Controls.Add(this.tbCallingTime);
			this.groupBox1.Controls.Add(this.tbCcontact);
			this.groupBox1.Controls.Add(this.tbCName);
			this.groupBox1.Controls.Add(this.tbTelNo);
			this.groupBox1.Controls.Add(this.label7);
			this.groupBox1.Controls.Add(this.label5);
			this.groupBox1.Controls.Add(this.label1);
			this.groupBox1.Controls.Add(this.label3);
			this.groupBox1.Controls.Add(this.label4);
			this.groupBox1.Controls.Add(this.label6);
			this.groupBox1.Controls.Add(this.label9);
			this.groupBox1.Location = new System.Drawing.Point(8, 6);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(434, 128);
			this.groupBox1.TabIndex = 0;
			this.groupBox1.Text = "客戶信息";
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(224, 24);
			this.label7.Name = "label7";
			this.label7.TabIndex = 46;
			this.label7.Text = "來電時間";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(16, 96);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(72, 23);
			this.label5.TabIndex = 44;
			this.label5.Text = "客戶地址";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(16, 24);
			this.label1.Name = "label1";
			this.label1.TabIndex = 42;
			this.label1.Text = "來電號碼";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(16, 48);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(72, 23);
			this.label3.TabIndex = 25;
			this.label3.Text = "客戶姓名";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(224, 72);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(72, 23);
			this.label4.TabIndex = 27;
			this.label4.Text = "客戶性別";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(16, 72);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(72, 23);
			this.label6.TabIndex = 31;
			this.label6.Text = "聯系方式";
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(224, 48);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(72, 23);
			this.label9.TabIndex = 36;
			this.label9.Text = "客戶類別";
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.tbCComment);
			this.groupBox3.Controls.Add(this.combWBGrade);
			this.groupBox3.Controls.Add(this.label13);
			this.groupBox3.Controls.Add(this.label12);
			this.groupBox3.Location = new System.Drawing.Point(8, 240);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品国产成人国产三级 | 国精品**一区二区三区在线蜜桃| 欧美在线观看视频在线| 亚洲精品视频一区| 欧美性xxxxx极品少妇| 亚洲午夜av在线| 欧美日韩一区二区三区不卡| 日韩精品每日更新| ww久久中文字幕| 99视频精品免费视频| 亚洲一区二区视频| 91麻豆精品国产| 国产成人亚洲综合a∨婷婷图片| 国产精品视频一二| 欧美三级中文字幕在线观看| 毛片不卡一区二区| 国产精品久99| 欧美日韩高清影院| 国产精品亚洲一区二区三区在线| 欧美国产欧美综合| 欧美色网站导航| 国产乱子轮精品视频| 亚洲天堂免费看| 欧美一级黄色大片| 国产91精品一区二区麻豆亚洲| 中文字幕五月欧美| 欧美一区三区二区| voyeur盗摄精品| 青青青伊人色综合久久| 国产精品毛片久久久久久| 欧美日韩成人综合在线一区二区 | 久久精品国产**网站演员| 国产婷婷精品av在线| 在线观看一区日韩| 国产精品资源网| 午夜免费欧美电影| 欧美国产激情一区二区三区蜜月 | 高清国产午夜精品久久久久久| 亚洲黄一区二区三区| 久久亚洲免费视频| 欧洲精品视频在线观看| 国产精品夜夜嗨| 日韩成人免费在线| 日韩美女视频19| 欧美精品一区二区蜜臀亚洲| 欧美自拍丝袜亚洲| 成人性色生活片| 久久国产精品一区二区| 一区二区三区美女| 国产精品色哟哟| 久久综合色之久久综合| 欧美老女人在线| 色综合久久中文字幕| 豆国产96在线|亚洲| 日本美女一区二区三区| 一区二区三区四区av| 欧美激情综合五月色丁香小说| 欧美一区二区精品| 欧美日本乱大交xxxxx| 99久精品国产| www.性欧美| 国产精品亚洲第一区在线暖暖韩国 | 色综合视频在线观看| 国产成人免费高清| 国产自产高清不卡| 日本sm残虐另类| 日韩精品电影在线| 亚洲va在线va天堂| 亚洲亚洲人成综合网络| 一区二区三区国产豹纹内裤在线| 国产精品久久久久aaaa樱花| 久久久久免费观看| 久久久久久久久久久电影| 精品电影一区二区| 欧美tk—视频vk| 久久综合久久综合亚洲| 精品国产欧美一区二区| 欧美mv和日韩mv的网站| 精品国产免费一区二区三区香蕉| 欧美岛国在线观看| 精品福利一区二区三区| 久久综合网色—综合色88| 久久精品视频一区二区三区| 国产婷婷色一区二区三区| 中文天堂在线一区| 亚洲欧洲精品一区二区三区不卡| 国产精品欧美一区喷水| 亚洲九九爱视频| 亚洲图片欧美视频| 奇米一区二区三区| 韩国三级中文字幕hd久久精品| 国产乱码精品一区二区三区忘忧草| 国产精品一二三四五| 懂色av一区二区三区免费观看| 成人精品视频.| 一本到三区不卡视频| 欧美三级三级三级爽爽爽| 日韩一区二区三区精品视频| 精品理论电影在线| 国产精品的网站| 亚洲国产精品久久久久婷婷884 | 肉色丝袜一区二区| 国内精品伊人久久久久av影院 | 91亚洲精品久久久蜜桃| 欧美丝袜丝nylons| 日韩视频免费观看高清完整版在线观看 | 亚洲欧洲成人自拍| 亚洲福中文字幕伊人影院| 毛片av中文字幕一区二区| 国产精品一级片| 在线观看免费成人| 日韩精品一区二区在线| 国产精品国产精品国产专区不蜜| 亚洲一区二区欧美| 韩国精品在线观看| 91色porny| 欧美成人激情免费网| 中文字幕一区二区在线观看| 亚洲一二三四在线| 国产精品一区二区三区99| 91老司机福利 在线| 欧美r级电影在线观看| 亚洲美女一区二区三区| 激情文学综合丁香| 欧美伊人久久大香线蕉综合69| 欧美大片免费久久精品三p| 日韩毛片精品高清免费| 狠狠狠色丁香婷婷综合激情| 欧美亚洲国产一区二区三区va| 久久午夜色播影院免费高清| 亚洲综合视频在线| 成人夜色视频网站在线观看| 91精品国产综合久久精品麻豆| 国产精品人妖ts系列视频| 蜜臀精品一区二区三区在线观看 | 欧洲一区在线电影| 国产日韩欧美高清| 另类中文字幕网| 欧美色图免费看| 亚洲日本在线天堂| 国产盗摄精品一区二区三区在线 | 2024国产精品| 亚洲电影中文字幕在线观看| www.一区二区| 欧美国产在线观看| 免费观看30秒视频久久| 在线观看欧美精品| **欧美大码日韩| 国产69精品久久久久毛片| 欧美不卡123| 日韩精彩视频在线观看| 91成人在线观看喷潮| 国产精品久久久久久久久久久免费看| 久久国产精品99久久久久久老狼| 欧美色爱综合网| 一二三四社区欧美黄| www.66久久| 国产精品三级电影| 成人福利视频在线看| 久久精品一区八戒影视| 国精产品一区一区三区mba视频| 欧美一区二区在线不卡| 亚洲成人精品一区| 欧美日韩一区国产| 手机精品视频在线观看| 欧美日韩aaa| 视频在线观看一区| 91精品视频网| 欧美aⅴ一区二区三区视频| 欧美日韩国产高清一区二区三区| 伊人一区二区三区| 欧美在线视频你懂得| 亚洲综合激情小说| 欧美三级中文字幕在线观看| 婷婷综合久久一区二区三区| 欧美精品丝袜中出| 麻豆91小视频| 久久久91精品国产一区二区精品| 国产成人av一区| 综合欧美亚洲日本| 一本到不卡免费一区二区| 亚洲综合一二区| 91精品久久久久久久久99蜜臂| 琪琪一区二区三区| 久久久久久亚洲综合| 成人亚洲精品久久久久软件| 亚洲欧洲色图综合| 欧美伊人久久久久久久久影院| 丝袜美腿亚洲综合| 26uuu久久综合| 成人高清免费观看| 香蕉久久夜色精品国产使用方法| 日韩一区和二区| 国产成人av自拍| 亚洲精品老司机| 欧美精品v国产精品v日韩精品| 精品一区二区成人精品| 中文字幕日韩一区| 欧美一区二区三区播放老司机| 国产精一品亚洲二区在线视频|