| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412 |
- namespace Dongke.IBOSS.PRD.Client.ReportModule
- {
- partial class F_RPT_030106
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_RPT_030106));
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
- this.tsrOperate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ToolStrip();
- this.tsbtnAdaptive = new System.Windows.Forms.ToolStripButton();
- this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
- this.gbxCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_GroupBox();
- this.scbGoods = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoods();
- this.lblGoods = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.lblGoodsType = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.scbGoodsType = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoodsType();
- this.btnClearCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
- this.btnSearch = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
- this.chkCheckDate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
- this.c_Label5 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.dtpCheckDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
- this.dtpCheckDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
- this.chkHandOver = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
- this.c_Label2 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.dtpHandOverEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
- this.dtpHandOverStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
- this.chkCdate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
- this.lblAccountDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.dtpAccountDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
- this.dtpAccountDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
- this.c_Label4 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.dropRptProcedure = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ComboBox();
- this.dkCheckProcedureSearchBox = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkProcedureSearchBox();
- this.txtKilnCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.c_Label3 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.txtDefectName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.txtGoodsCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.txtCheckUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.txtDefectCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.txtDefectUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.lblDefectName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.lblUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.lblDefectCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.lblDefectUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.dkDefectTypeNameSearchBox1 = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkDefectTypeNameSearchBox();
- this.dkCompleteProcedure = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkProcedureSearchBox();
- this.dkProcedureSearchBox = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkProcedureSearchBox();
- this.dkproductionLineSearchBox = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkproductionLineSearchBox();
- this.dtpCompleteDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
- this.dtpCompleteDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
- this.tblReportModule = new System.Windows.Forms.TabControl();
- this.tapReportModule = new System.Windows.Forms.TabPage();
- this.dgvReportModule = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.ProductionLineName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ProcedureName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectProcedureName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectTypeName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Usercode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Goodstypename = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Goodscode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.InCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectProcedureID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ProcedureID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tapReportModuleDetail = new System.Windows.Forms.TabPage();
- this.dgvReportModuleDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.productionlinename1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.procedurename2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CreateTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectProcedureName2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectUserCode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectTypeName2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.defectcode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.alldefectcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.defectnam2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectRemarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectPositionCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectPositionName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectFineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectDeductionNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.UserCode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Goodstypename2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.goodscode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.barcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LogoCodeName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Goodsleveltype = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.groutingdate = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.groutingnum = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.groutingMouldCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.KilnCarCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.workUsercodes = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CreateUserCodes = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.HandOverTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.undoflag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.reworkflag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.glazingroom = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tapDefectDetail = new System.Windows.Forms.TabPage();
- this.dgvDefectDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.tabProDetail = new System.Windows.Forms.TabPage();
- this.dgvProDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.protime = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.proname = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g4KILNCARCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.prousercode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.panel1 = new System.Windows.Forms.Panel();
- this.dkProcedureSearchBox1 = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkProcedureSearchBox();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CheckTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DefectStaffNames3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.defectjobsname = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.czGroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.barcodeRemarks3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.bsqx = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tsrOperate.SuspendLayout();
- this.gbxCondition.SuspendLayout();
- this.tblReportModule.SuspendLayout();
- this.tapReportModule.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvReportModule)).BeginInit();
- this.tapReportModuleDetail.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvReportModuleDetail)).BeginInit();
- this.tapDefectDetail.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvDefectDetail)).BeginInit();
- this.tabProDetail.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvProDetail)).BeginInit();
- this.panel1.SuspendLayout();
- this.SuspendLayout();
- //
- // tsrOperate
- //
- this.tsrOperate.AutoSize = false;
- this.tsrOperate.BackColor = System.Drawing.Color.Transparent;
- this.tsrOperate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tsrOperate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsbtnAdaptive,
- this.tsbtnClose});
- this.tsrOperate.Location = new System.Drawing.Point(0, 0);
- this.tsrOperate.Name = "tsrOperate";
- this.tsrOperate.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
- this.tsrOperate.ShowItemToolTips = false;
- this.tsrOperate.Size = new System.Drawing.Size(1174, 35);
- this.tsrOperate.TabIndex = 0;
- this.tsrOperate.Text = "toolStrip1";
- //
- // tsbtnAdaptive
- //
- this.tsbtnAdaptive.AutoSize = false;
- this.tsbtnAdaptive.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tsbtnAdaptive.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.tsbtnAdaptive.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnAdaptive.Name = "tsbtnAdaptive";
- this.tsbtnAdaptive.Size = new System.Drawing.Size(90, 25);
- this.tsbtnAdaptive.Text = "自适应列宽(&A)";
- this.tsbtnAdaptive.Click += new System.EventHandler(this.tsbtnAdaptive_Click);
- //
- // tsbtnClose
- //
- this.tsbtnClose.AutoSize = false;
- this.tsbtnClose.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tsbtnClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.tsbtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnClose.Name = "tsbtnClose";
- this.tsbtnClose.Size = new System.Drawing.Size(60, 25);
- this.tsbtnClose.Text = "关闭(&X)";
- this.tsbtnClose.Click += new System.EventHandler(this.tsbtnClose_Click);
- //
- // gbxCondition
- //
- this.gbxCondition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.gbxCondition.BackColor = System.Drawing.Color.Transparent;
- this.gbxCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gbxCondition.BackgroundImage")));
- this.gbxCondition.Controls.Add(this.scbGoods);
- this.gbxCondition.Controls.Add(this.lblGoods);
- this.gbxCondition.Controls.Add(this.lblGoodsType);
- this.gbxCondition.Controls.Add(this.scbGoodsType);
- this.gbxCondition.Controls.Add(this.btnClearCondition);
- this.gbxCondition.Controls.Add(this.btnSearch);
- this.gbxCondition.Controls.Add(this.chkCheckDate);
- this.gbxCondition.Controls.Add(this.c_Label5);
- this.gbxCondition.Controls.Add(this.dtpCheckDateEnd);
- this.gbxCondition.Controls.Add(this.dtpCheckDateStart);
- this.gbxCondition.Controls.Add(this.chkHandOver);
- this.gbxCondition.Controls.Add(this.c_Label2);
- this.gbxCondition.Controls.Add(this.dtpHandOverEnd);
- this.gbxCondition.Controls.Add(this.dtpHandOverStart);
- this.gbxCondition.Controls.Add(this.chkCdate);
- this.gbxCondition.Controls.Add(this.lblAccountDateEnd);
- this.gbxCondition.Controls.Add(this.dtpAccountDateEnd);
- this.gbxCondition.Controls.Add(this.dtpAccountDateStart);
- this.gbxCondition.Controls.Add(this.c_Label4);
- this.gbxCondition.Controls.Add(this.dropRptProcedure);
- this.gbxCondition.Controls.Add(this.dkCheckProcedureSearchBox);
- this.gbxCondition.Controls.Add(this.txtKilnCode);
- this.gbxCondition.Controls.Add(this.c_Label3);
- this.gbxCondition.Controls.Add(this.txtDefectName);
- this.gbxCondition.Controls.Add(this.txtGoodsCode);
- this.gbxCondition.Controls.Add(this.txtCheckUserCode);
- this.gbxCondition.Controls.Add(this.txtDefectCode);
- this.gbxCondition.Controls.Add(this.txtDefectUserCode);
- this.gbxCondition.Controls.Add(this.c_Label1);
- this.gbxCondition.Controls.Add(this.lblDefectName);
- this.gbxCondition.Controls.Add(this.lblUserCode);
- this.gbxCondition.Controls.Add(this.lblDefectCode);
- this.gbxCondition.Controls.Add(this.lblDefectUserCode);
- this.gbxCondition.Controls.Add(this.dkDefectTypeNameSearchBox1);
- this.gbxCondition.Controls.Add(this.dkCompleteProcedure);
- this.gbxCondition.Controls.Add(this.dkProcedureSearchBox);
- this.gbxCondition.Controls.Add(this.dkproductionLineSearchBox);
- this.gbxCondition.Controls.Add(this.dtpCompleteDateEnd);
- this.gbxCondition.Controls.Add(this.dtpCompleteDateStart);
- this.gbxCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gbxCondition.ForeColor = System.Drawing.SystemColors.ControlText;
- this.gbxCondition.IsMustInput = false;
- this.gbxCondition.Location = new System.Drawing.Point(0, 38);
- this.gbxCondition.Name = "gbxCondition";
- this.gbxCondition.OriginalHeight = -1;
- this.gbxCondition.Size = new System.Drawing.Size(1162, 103);
- this.gbxCondition.TabIndex = 1;
- this.gbxCondition.TabStop = false;
- this.gbxCondition.Text = "查询条件 ▼";
- //
- // scbGoods
- //
- this.scbGoods.CheckedData = null;
- this.scbGoods.Location = new System.Drawing.Point(377, 20);
- this.scbGoods.MultiSelect = true;
- this.scbGoods.Name = "scbGoods";
- this.scbGoods.Size = new System.Drawing.Size(100, 21);
- this.scbGoods.TabIndex = 37;
- //
- // lblGoods
- //
- this.lblGoods.AutoSize = true;
- this.lblGoods.BackColor = System.Drawing.Color.Transparent;
- this.lblGoods.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblGoods.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblGoods.Location = new System.Drawing.Point(318, 26);
- this.lblGoods.Name = "lblGoods";
- this.lblGoods.Size = new System.Drawing.Size(53, 12);
- this.lblGoods.TabIndex = 36;
- this.lblGoods.Text = "产品名称";
- //
- // lblGoodsType
- //
- this.lblGoodsType.AutoSize = true;
- this.lblGoodsType.BackColor = System.Drawing.SystemColors.Control;
- this.lblGoodsType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblGoodsType.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblGoodsType.Location = new System.Drawing.Point(12, 26);
- this.lblGoodsType.Name = "lblGoodsType";
- this.lblGoodsType.Size = new System.Drawing.Size(53, 12);
- this.lblGoodsType.TabIndex = 35;
- this.lblGoodsType.Text = "产品类别";
- //
- // scbGoodsType
- //
- this.scbGoodsType.CheckedData = null;
- this.scbGoodsType.IsOnlyDisplayEnd = false;
- this.scbGoodsType.Location = new System.Drawing.Point(70, 20);
- this.scbGoodsType.Name = "scbGoodsType";
- this.scbGoodsType.Size = new System.Drawing.Size(101, 21);
- this.scbGoodsType.TabIndex = 34;
- //
- // btnClearCondition
- //
- this.btnClearCondition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.btnClearCondition.BackColor = System.Drawing.Color.Transparent;
- this.btnClearCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClearCondition.BackgroundImage")));
- this.btnClearCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClearCondition.ForeColor = System.Drawing.Color.White;
- this.btnClearCondition.Location = new System.Drawing.Point(1071, 71);
- this.btnClearCondition.Name = "btnClearCondition";
- this.btnClearCondition.Size = new System.Drawing.Size(85, 30);
- this.btnClearCondition.TabIndex = 29;
- this.btnClearCondition.Text = "清空条件(&C)";
- this.btnClearCondition.UseVisualStyleBackColor = true;
- this.btnClearCondition.Click += new System.EventHandler(this.btnClearCondition_Click);
- //
- // btnSearch
- //
- this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.btnSearch.BackColor = System.Drawing.Color.Transparent;
- this.btnSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSearch.BackgroundImage")));
- this.btnSearch.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnSearch.ForeColor = System.Drawing.Color.White;
- this.btnSearch.Location = new System.Drawing.Point(1071, 41);
- this.btnSearch.Name = "btnSearch";
- this.btnSearch.Size = new System.Drawing.Size(85, 30);
- this.btnSearch.TabIndex = 28;
- this.btnSearch.Text = "查询(&Q)";
- this.btnSearch.UseVisualStyleBackColor = true;
- this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
- //
- // chkCheckDate
- //
- this.chkCheckDate.AutoSize = true;
- this.chkCheckDate.Enabled = false;
- this.chkCheckDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.chkCheckDate.Location = new System.Drawing.Point(624, 76);
- this.chkCheckDate.Name = "chkCheckDate";
- this.chkCheckDate.Size = new System.Drawing.Size(72, 16);
- this.chkCheckDate.TabIndex = 30;
- this.chkCheckDate.Text = "缺陷登记";
- this.chkCheckDate.UseVisualStyleBackColor = true;
- this.chkCheckDate.CheckedChanged += new System.EventHandler(this.chkCheckDate_CheckedChanged);
- //
- // c_Label5
- //
- this.c_Label5.AutoSize = true;
- this.c_Label5.BackColor = System.Drawing.Color.Transparent;
- this.c_Label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.c_Label5.ForeColor = System.Drawing.SystemColors.ControlText;
- this.c_Label5.Location = new System.Drawing.Point(842, 78);
- this.c_Label5.Name = "c_Label5";
- this.c_Label5.Size = new System.Drawing.Size(17, 12);
- this.c_Label5.TabIndex = 32;
- this.c_Label5.Text = "至";
- //
- // dtpCheckDateEnd
- //
- this.dtpCheckDateEnd.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpCheckDateEnd.Enabled = false;
- this.dtpCheckDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtpCheckDateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpCheckDateEnd.Location = new System.Drawing.Point(865, 74);
- this.dtpCheckDateEnd.Name = "dtpCheckDateEnd";
- this.dtpCheckDateEnd.Size = new System.Drawing.Size(134, 21);
- this.dtpCheckDateEnd.TabIndex = 33;
- //
- // dtpCheckDateStart
- //
- this.dtpCheckDateStart.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpCheckDateStart.Enabled = false;
- this.dtpCheckDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtpCheckDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpCheckDateStart.Location = new System.Drawing.Point(702, 74);
- this.dtpCheckDateStart.Name = "dtpCheckDateStart";
- this.dtpCheckDateStart.Size = new System.Drawing.Size(134, 21);
- this.dtpCheckDateStart.TabIndex = 31;
- //
- // chkHandOver
- //
- this.chkHandOver.AutoSize = true;
- this.chkHandOver.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.chkHandOver.Location = new System.Drawing.Point(624, 49);
- this.chkHandOver.Name = "chkHandOver";
- this.chkHandOver.Size = new System.Drawing.Size(72, 16);
- this.chkHandOver.TabIndex = 17;
- this.chkHandOver.Text = "交接时间";
- this.chkHandOver.UseVisualStyleBackColor = true;
- this.chkHandOver.CheckedChanged += new System.EventHandler(this.chkHandOver_CheckedChanged);
- //
- // c_Label2
- //
- this.c_Label2.AutoSize = true;
- this.c_Label2.BackColor = System.Drawing.Color.Transparent;
- this.c_Label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.c_Label2.ForeColor = System.Drawing.SystemColors.ControlText;
- this.c_Label2.Location = new System.Drawing.Point(842, 51);
- this.c_Label2.Name = "c_Label2";
- this.c_Label2.Size = new System.Drawing.Size(17, 12);
- this.c_Label2.TabIndex = 19;
- this.c_Label2.Text = "至";
- //
- // dtpHandOverEnd
- //
- this.dtpHandOverEnd.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpHandOverEnd.Enabled = false;
- this.dtpHandOverEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtpHandOverEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpHandOverEnd.Location = new System.Drawing.Point(865, 47);
- this.dtpHandOverEnd.Name = "dtpHandOverEnd";
- this.dtpHandOverEnd.Size = new System.Drawing.Size(134, 21);
- this.dtpHandOverEnd.TabIndex = 20;
- //
- // dtpHandOverStart
- //
- this.dtpHandOverStart.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpHandOverStart.Enabled = false;
- this.dtpHandOverStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtpHandOverStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpHandOverStart.Location = new System.Drawing.Point(702, 47);
- this.dtpHandOverStart.Name = "dtpHandOverStart";
- this.dtpHandOverStart.Size = new System.Drawing.Size(134, 21);
- this.dtpHandOverStart.TabIndex = 18;
- //
- // chkCdate
- //
- this.chkCdate.AutoSize = true;
- this.chkCdate.Checked = true;
- this.chkCdate.CheckState = System.Windows.Forms.CheckState.Checked;
- this.chkCdate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.chkCdate.Location = new System.Drawing.Point(624, 22);
- this.chkCdate.Name = "chkCdate";
- this.chkCdate.Size = new System.Drawing.Size(72, 16);
- this.chkCdate.TabIndex = 6;
- this.chkCdate.Text = "登记时间";
- this.chkCdate.UseVisualStyleBackColor = true;
- this.chkCdate.CheckedChanged += new System.EventHandler(this.chkCdate_CheckedChanged);
- //
- // lblAccountDateEnd
- //
- this.lblAccountDateEnd.AutoSize = true;
- this.lblAccountDateEnd.BackColor = System.Drawing.Color.Transparent;
- this.lblAccountDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblAccountDateEnd.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblAccountDateEnd.Location = new System.Drawing.Point(842, 24);
- this.lblAccountDateEnd.Name = "lblAccountDateEnd";
- this.lblAccountDateEnd.Size = new System.Drawing.Size(17, 12);
- this.lblAccountDateEnd.TabIndex = 8;
- this.lblAccountDateEnd.Text = "至";
- //
- // dtpAccountDateEnd
- //
- this.dtpAccountDateEnd.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpAccountDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtpAccountDateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpAccountDateEnd.Location = new System.Drawing.Point(865, 20);
- this.dtpAccountDateEnd.Name = "dtpAccountDateEnd";
- this.dtpAccountDateEnd.Size = new System.Drawing.Size(134, 21);
- this.dtpAccountDateEnd.TabIndex = 9;
- //
- // dtpAccountDateStart
- //
- this.dtpAccountDateStart.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpAccountDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtpAccountDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpAccountDateStart.Location = new System.Drawing.Point(702, 20);
- this.dtpAccountDateStart.Name = "dtpAccountDateStart";
- this.dtpAccountDateStart.Size = new System.Drawing.Size(134, 21);
- this.dtpAccountDateStart.TabIndex = 7;
- //
- // c_Label4
- //
- this.c_Label4.AutoSize = true;
- this.c_Label4.BackColor = System.Drawing.Color.Transparent;
- this.c_Label4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.c_Label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.c_Label4.IsMustInput = true;
- this.c_Label4.Location = new System.Drawing.Point(318, 78);
- this.c_Label4.Name = "c_Label4";
- this.c_Label4.Size = new System.Drawing.Size(53, 12);
- this.c_Label4.TabIndex = 24;
- this.c_Label4.Text = "交接工序";
- //
- // dropRptProcedure
- //
- this.dropRptProcedure.BackColor = System.Drawing.Color.Yellow;
- this.dropRptProcedure.BackgroundColor = System.Drawing.SystemColors.Window;
- this.dropRptProcedure.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.dropRptProcedure.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dropRptProcedure.FormattingEnabled = true;
- this.dropRptProcedure.IsMustInput = true;
- this.dropRptProcedure.Location = new System.Drawing.Point(377, 74);
- this.dropRptProcedure.Name = "dropRptProcedure";
- this.dropRptProcedure.Size = new System.Drawing.Size(100, 20);
- this.dropRptProcedure.TabIndex = 25;
- //
- // dkCheckProcedureSearchBox
- //
- this.dkCheckProcedureSearchBox.BackColor = System.Drawing.Color.Transparent;
- this.dkCheckProcedureSearchBox.DataSource = null;
- this.dkCheckProcedureSearchBox.Enabled = true;
- this.dkCheckProcedureSearchBox.IsEnablePurview = false;
- this.dkCheckProcedureSearchBox.IsMustInput = false;
- this.dkCheckProcedureSearchBox.Location = new System.Drawing.Point(12, 74);
- this.dkCheckProcedureSearchBox.ModelType = "-1";
- this.dkCheckProcedureSearchBox.Name = "dkCheckProcedureSearchBox";
- this.dkCheckProcedureSearchBox.ProcedureCode = "";
- this.dkCheckProcedureSearchBox.ProcedureID = null;
- this.dkCheckProcedureSearchBox.ProcedureIDS = null;
- this.dkCheckProcedureSearchBox.ProcedureName = null;
- this.dkCheckProcedureSearchBox.Purview = null;
- this.dkCheckProcedureSearchBox.PurviewType = ((byte)(0));
- this.dkCheckProcedureSearchBox.SelectMore = true;
- this.dkCheckProcedureSearchBox.Size = new System.Drawing.Size(159, 21);
- this.dkCheckProcedureSearchBox.TabIndex = 21;
- this.dkCheckProcedureSearchBox.Title = "检验工序";
- this.dkCheckProcedureSearchBox.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
- //
- // txtKilnCode
- //
- this.txtKilnCode.BackColor = System.Drawing.SystemColors.Window;
- this.txtKilnCode.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtKilnCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtKilnCode.ErrorMessage = "";
- this.txtKilnCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtKilnCode.Location = new System.Drawing.Point(542, 74);
- this.txtKilnCode.Name = "txtKilnCode";
- this.txtKilnCode.Size = new System.Drawing.Size(76, 21);
- this.txtKilnCode.TabIndex = 27;
- this.txtKilnCode.TextValue = "";
- //
- // c_Label3
- //
- this.c_Label3.AutoSize = true;
- this.c_Label3.BackColor = System.Drawing.Color.Transparent;
- this.c_Label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.c_Label3.Location = new System.Drawing.Point(483, 78);
- this.c_Label3.Name = "c_Label3";
- this.c_Label3.Size = new System.Drawing.Size(53, 12);
- this.c_Label3.TabIndex = 26;
- this.c_Label3.Text = "窑炉编码";
- //
- // txtDefectName
- //
- this.txtDefectName.BackColor = System.Drawing.SystemColors.Window;
- this.txtDefectName.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtDefectName.ErrorMessage = "";
- this.txtDefectName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtDefectName.Location = new System.Drawing.Point(542, 47);
- this.txtDefectName.Name = "txtDefectName";
- this.txtDefectName.Size = new System.Drawing.Size(76, 21);
- this.txtDefectName.TabIndex = 16;
- this.txtDefectName.TextValue = "";
- //
- // txtGoodsCode
- //
- this.txtGoodsCode.BackColor = System.Drawing.SystemColors.Window;
- this.txtGoodsCode.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtGoodsCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtGoodsCode.ErrorMessage = "";
- this.txtGoodsCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtGoodsCode.ImeMode = System.Windows.Forms.ImeMode.Off;
- this.txtGoodsCode.Location = new System.Drawing.Point(236, 20);
- this.txtGoodsCode.MaxLength = 50;
- this.txtGoodsCode.Name = "txtGoodsCode";
- this.txtGoodsCode.Size = new System.Drawing.Size(76, 21);
- this.txtGoodsCode.TabIndex = 2;
- this.txtGoodsCode.TextValue = "";
- //
- // txtCheckUserCode
- //
- this.txtCheckUserCode.BackColor = System.Drawing.SystemColors.Window;
- this.txtCheckUserCode.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtCheckUserCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtCheckUserCode.ErrorMessage = "";
- this.txtCheckUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtCheckUserCode.ImeMode = System.Windows.Forms.ImeMode.Off;
- this.txtCheckUserCode.Location = new System.Drawing.Point(236, 74);
- this.txtCheckUserCode.MaxLength = 20;
- this.txtCheckUserCode.Name = "txtCheckUserCode";
- this.txtCheckUserCode.Size = new System.Drawing.Size(76, 21);
- this.txtCheckUserCode.TabIndex = 23;
- this.txtCheckUserCode.TextValue = "";
- //
- // txtDefectCode
- //
- this.txtDefectCode.BackColor = System.Drawing.SystemColors.Window;
- this.txtDefectCode.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtDefectCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtDefectCode.ErrorMessage = "";
- this.txtDefectCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtDefectCode.ImeMode = System.Windows.Forms.ImeMode.Off;
- this.txtDefectCode.Location = new System.Drawing.Point(542, 20);
- this.txtDefectCode.MaxLength = 20;
- this.txtDefectCode.Name = "txtDefectCode";
- this.txtDefectCode.Size = new System.Drawing.Size(76, 21);
- this.txtDefectCode.TabIndex = 5;
- this.txtDefectCode.TextValue = "";
- //
- // txtDefectUserCode
- //
- this.txtDefectUserCode.BackColor = System.Drawing.SystemColors.Window;
- this.txtDefectUserCode.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtDefectUserCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtDefectUserCode.ErrorMessage = "";
- this.txtDefectUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtDefectUserCode.ImeMode = System.Windows.Forms.ImeMode.Off;
- this.txtDefectUserCode.Location = new System.Drawing.Point(236, 47);
- this.txtDefectUserCode.MaxLength = 20;
- this.txtDefectUserCode.Name = "txtDefectUserCode";
- this.txtDefectUserCode.Size = new System.Drawing.Size(76, 21);
- this.txtDefectUserCode.TabIndex = 12;
- this.txtDefectUserCode.TextValue = "";
- //
- // c_Label1
- //
- this.c_Label1.AutoSize = true;
- this.c_Label1.BackColor = System.Drawing.Color.Transparent;
- this.c_Label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.c_Label1.Location = new System.Drawing.Point(177, 24);
- this.c_Label1.Name = "c_Label1";
- this.c_Label1.Size = new System.Drawing.Size(53, 12);
- this.c_Label1.TabIndex = 1;
- this.c_Label1.Text = "产品编码";
- //
- // lblDefectName
- //
- this.lblDefectName.AutoSize = true;
- this.lblDefectName.BackColor = System.Drawing.Color.Transparent;
- this.lblDefectName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblDefectName.Location = new System.Drawing.Point(483, 51);
- this.lblDefectName.Name = "lblDefectName";
- this.lblDefectName.Size = new System.Drawing.Size(53, 12);
- this.lblDefectName.TabIndex = 15;
- this.lblDefectName.Text = "缺陷名称";
- //
- // lblUserCode
- //
- this.lblUserCode.AutoSize = true;
- this.lblUserCode.BackColor = System.Drawing.Color.Transparent;
- this.lblUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblUserCode.Location = new System.Drawing.Point(177, 78);
- this.lblUserCode.Name = "lblUserCode";
- this.lblUserCode.Size = new System.Drawing.Size(53, 12);
- this.lblUserCode.TabIndex = 22;
- this.lblUserCode.Text = "检验工号";
- //
- // lblDefectCode
- //
- this.lblDefectCode.AutoSize = true;
- this.lblDefectCode.BackColor = System.Drawing.Color.Transparent;
- this.lblDefectCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblDefectCode.Location = new System.Drawing.Point(483, 24);
- this.lblDefectCode.Name = "lblDefectCode";
- this.lblDefectCode.Size = new System.Drawing.Size(53, 12);
- this.lblDefectCode.TabIndex = 4;
- this.lblDefectCode.Text = "缺陷编码";
- //
- // lblDefectUserCode
- //
- this.lblDefectUserCode.AutoSize = true;
- this.lblDefectUserCode.BackColor = System.Drawing.Color.Transparent;
- this.lblDefectUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblDefectUserCode.Location = new System.Drawing.Point(177, 51);
- this.lblDefectUserCode.Name = "lblDefectUserCode";
- this.lblDefectUserCode.Size = new System.Drawing.Size(53, 12);
- this.lblDefectUserCode.TabIndex = 11;
- this.lblDefectUserCode.Text = "责任工号";
- //
- // dkDefectTypeNameSearchBox1
- //
- this.dkDefectTypeNameSearchBox1.BackColor = System.Drawing.Color.Transparent;
- this.dkDefectTypeNameSearchBox1.DataSource = null;
- this.dkDefectTypeNameSearchBox1.DefectTypeID = null;
- this.dkDefectTypeNameSearchBox1.DefectTypeIDS = null;
- this.dkDefectTypeNameSearchBox1.DefectTypeName = null;
- this.dkDefectTypeNameSearchBox1.Enabled = true;
- this.dkDefectTypeNameSearchBox1.IsEnablePurview = false;
- this.dkDefectTypeNameSearchBox1.IsMustInput = false;
- this.dkDefectTypeNameSearchBox1.Location = new System.Drawing.Point(318, 47);
- this.dkDefectTypeNameSearchBox1.Name = "dkDefectTypeNameSearchBox1";
- this.dkDefectTypeNameSearchBox1.Purview = null;
- this.dkDefectTypeNameSearchBox1.PurviewType = ((byte)(0));
- this.dkDefectTypeNameSearchBox1.SelectMore = true;
- this.dkDefectTypeNameSearchBox1.Size = new System.Drawing.Size(159, 21);
- this.dkDefectTypeNameSearchBox1.TabIndex = 14;
- this.dkDefectTypeNameSearchBox1.Title = "缺陷类别";
- this.dkDefectTypeNameSearchBox1.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
- //
- // dkCompleteProcedure
- //
- this.dkCompleteProcedure.BackColor = System.Drawing.Color.Transparent;
- this.dkCompleteProcedure.DataSource = null;
- this.dkCompleteProcedure.Enabled = true;
- this.dkCompleteProcedure.IsEnablePurview = false;
- this.dkCompleteProcedure.IsMustInput = false;
- this.dkCompleteProcedure.Location = new System.Drawing.Point(1005, 24);
- this.dkCompleteProcedure.ModelType = null;
- this.dkCompleteProcedure.Name = "dkCompleteProcedure";
- this.dkCompleteProcedure.ProcedureCode = "";
- this.dkCompleteProcedure.ProcedureID = null;
- this.dkCompleteProcedure.ProcedureIDS = null;
- this.dkCompleteProcedure.ProcedureName = null;
- this.dkCompleteProcedure.Purview = null;
- this.dkCompleteProcedure.PurviewType = ((byte)(0));
- this.dkCompleteProcedure.SelectMore = true;
- this.dkCompleteProcedure.Size = new System.Drawing.Size(192, 21);
- this.dkCompleteProcedure.TabIndex = 17;
- this.dkCompleteProcedure.Title = "生产工序";
- this.dkCompleteProcedure.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
- this.dkCompleteProcedure.Visible = false;
- //
- // dkProcedureSearchBox
- //
- this.dkProcedureSearchBox.BackColor = System.Drawing.Color.Transparent;
- this.dkProcedureSearchBox.DataSource = null;
- this.dkProcedureSearchBox.Enabled = true;
- this.dkProcedureSearchBox.IsEnablePurview = false;
- this.dkProcedureSearchBox.IsMustInput = false;
- this.dkProcedureSearchBox.Location = new System.Drawing.Point(12, 47);
- this.dkProcedureSearchBox.ModelType = null;
- this.dkProcedureSearchBox.Name = "dkProcedureSearchBox";
- this.dkProcedureSearchBox.ProcedureCode = "";
- this.dkProcedureSearchBox.ProcedureID = null;
- this.dkProcedureSearchBox.ProcedureIDS = null;
- this.dkProcedureSearchBox.ProcedureName = null;
- this.dkProcedureSearchBox.Purview = null;
- this.dkProcedureSearchBox.PurviewType = ((byte)(0));
- this.dkProcedureSearchBox.SelectMore = true;
- this.dkProcedureSearchBox.Size = new System.Drawing.Size(159, 21);
- this.dkProcedureSearchBox.TabIndex = 10;
- this.dkProcedureSearchBox.Title = "责任工序";
- this.dkProcedureSearchBox.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
- //
- // dkproductionLineSearchBox
- //
- this.dkproductionLineSearchBox.BackColor = System.Drawing.Color.Transparent;
- this.dkproductionLineSearchBox.DataSource = null;
- this.dkproductionLineSearchBox.Enabled = true;
- this.dkproductionLineSearchBox.IsEnablePurview = false;
- this.dkproductionLineSearchBox.IsMustInput = false;
- this.dkproductionLineSearchBox.Location = new System.Drawing.Point(1023, 20);
- this.dkproductionLineSearchBox.Name = "dkproductionLineSearchBox";
- this.dkproductionLineSearchBox.ProductionLineCode = "";
- this.dkproductionLineSearchBox.ProductionLineID = null;
- this.dkproductionLineSearchBox.ProductionLineIDS = null;
- this.dkproductionLineSearchBox.ProductionLineName = null;
- this.dkproductionLineSearchBox.Purview = null;
- this.dkproductionLineSearchBox.PurviewType = ((byte)(0));
- this.dkproductionLineSearchBox.SelectMore = true;
- this.dkproductionLineSearchBox.Size = new System.Drawing.Size(193, 21);
- this.dkproductionLineSearchBox.TabIndex = 1;
- this.dkproductionLineSearchBox.Title = " 生产线";
- this.dkproductionLineSearchBox.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
- this.dkproductionLineSearchBox.Visible = false;
- //
- // dtpCompleteDateEnd
- //
- this.dtpCompleteDateEnd.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpCompleteDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtpCompleteDateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpCompleteDateEnd.Location = new System.Drawing.Point(1040, 42);
- this.dtpCompleteDateEnd.Name = "dtpCompleteDateEnd";
- this.dtpCompleteDateEnd.Size = new System.Drawing.Size(134, 21);
- this.dtpCompleteDateEnd.TabIndex = 21;
- this.dtpCompleteDateEnd.Visible = false;
- //
- // dtpCompleteDateStart
- //
- this.dtpCompleteDateStart.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpCompleteDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dtpCompleteDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpCompleteDateStart.Location = new System.Drawing.Point(1040, 24);
- this.dtpCompleteDateStart.Name = "dtpCompleteDateStart";
- this.dtpCompleteDateStart.Size = new System.Drawing.Size(134, 21);
- this.dtpCompleteDateStart.TabIndex = 19;
- this.dtpCompleteDateStart.Visible = false;
- //
- // tblReportModule
- //
- this.tblReportModule.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.tblReportModule.Controls.Add(this.tapReportModule);
- this.tblReportModule.Controls.Add(this.tapReportModuleDetail);
- this.tblReportModule.Controls.Add(this.tapDefectDetail);
- this.tblReportModule.Controls.Add(this.tabProDetail);
- this.tblReportModule.Location = new System.Drawing.Point(0, 144);
- this.tblReportModule.Margin = new System.Windows.Forms.Padding(0);
- this.tblReportModule.Name = "tblReportModule";
- this.tblReportModule.Padding = new System.Drawing.Point(0, 0);
- this.tblReportModule.SelectedIndex = 0;
- this.tblReportModule.ShowToolTips = true;
- this.tblReportModule.Size = new System.Drawing.Size(1162, 277);
- this.tblReportModule.TabIndex = 2;
- this.tblReportModule.SelectedIndexChanged += new System.EventHandler(this.tblReportModule_SelectedIndexChanged);
- //
- // tapReportModule
- //
- this.tapReportModule.Controls.Add(this.dgvReportModule);
- this.tapReportModule.Location = new System.Drawing.Point(4, 22);
- this.tapReportModule.Margin = new System.Windows.Forms.Padding(0);
- this.tapReportModule.Name = "tapReportModule";
- this.tapReportModule.Size = new System.Drawing.Size(1154, 251);
- this.tapReportModule.TabIndex = 0;
- this.tapReportModule.Text = "成检缺陷汇总";
- this.tapReportModule.UseVisualStyleBackColor = true;
- //
- // dgvReportModule
- //
- this.dgvReportModule.AllowUserToAddRows = false;
- this.dgvReportModule.AllowUserToDeleteRows = false;
- this.dgvReportModule.AllowUserToModifyRows = true;
- this.dgvReportModule.AllowUserToOrderColumns = true;
- this.dgvReportModule.AllowUserToSortRows = false;
- dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvReportModule.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
- this.dgvReportModule.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvReportModule.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvReportModule.CellHeight = 23;
- this.dgvReportModule.ChildNodeColumnName = null;
- this.dgvReportModule.ChildNodeColumnText = null;
- this.dgvReportModule.ColumnDeep = 1;
- this.dgvReportModule.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvReportModule.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
- this.dgvReportModule.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvReportModule.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.ProductionLineName,
- this.ProcedureName,
- this.DefectProcedureName,
- this.DefectTypeName,
- this.DefectCode,
- this.DefectName,
- this.Usercode1,
- this.Goodstypename,
- this.Goodscode,
- this.InCount,
- this.DefectProcedureID,
- this.ProcedureID});
- this.dgvReportModule.ColumnTreeView = null;
- this.dgvReportModule.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvReportModule.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvReportModule.DynamicColumnName = "";
- this.dgvReportModule.EnableHeadersVisualStyles = false;
- this.dgvReportModule.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvReportModule.FormatQuantityColumns = null;
- this.dgvReportModule.HorizontalMergeColumn = null;
- this.dgvReportModule.IsAutoCountSum = true;
- this.dgvReportModule.IsAutoResizeColumns = false;
- this.dgvReportModule.IsClickF12 = false;
- this.dgvReportModule.IsOpenMergeCellFlag = false;
- this.dgvReportModule.IsSubTotalFlag = false;
- this.dgvReportModule.IsTopDeep = false;
- this.dgvReportModule.Location = new System.Drawing.Point(0, 0);
- this.dgvReportModule.Margin = new System.Windows.Forms.Padding(0);
- this.dgvReportModule.MergeColumnNames = null;
- this.dgvReportModule.MergeDetailColumnNames = null;
- this.dgvReportModule.MergeDetailOnlyColumn = null;
- this.dgvReportModule.MergeOnlyColumn = null;
- this.dgvReportModule.MultiSelect = false;
- this.dgvReportModule.Name = "dgvReportModule";
- this.dgvReportModule.ReadOnly = true;
- this.dgvReportModule.RefreshAtHscroll = false;
- this.dgvReportModule.RowHeadersWidth = 50;
- this.dgvReportModule.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvReportModule.RowsDefaultCellStyle = dataGridViewCellStyle4;
- this.dgvReportModule.RowTemplate.Height = 21;
- this.dgvReportModule.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvReportModule.Size = new System.Drawing.Size(1154, 251);
- this.dgvReportModule.SortOrderColumnName = null;
- this.dgvReportModule.TabIndex = 0;
- this.dgvReportModule.Tag = true;
- this.dgvReportModule.TotalSumColumns = null;
- this.dgvReportModule.ViewRowFilter = "";
- this.dgvReportModule.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvReportModule_CellDoubleClick);
- //
- // ProductionLineName
- //
- this.ProductionLineName.DataPropertyName = "ProductionLineName";
- this.ProductionLineName.HeaderText = "生产线";
- this.ProductionLineName.Name = "ProductionLineName";
- this.ProductionLineName.ReadOnly = true;
- //
- // ProcedureName
- //
- this.ProcedureName.DataPropertyName = "ProcedureName";
- this.ProcedureName.HeaderText = "检验工序";
- this.ProcedureName.Name = "ProcedureName";
- this.ProcedureName.ReadOnly = true;
- //
- // DefectProcedureName
- //
- this.DefectProcedureName.DataPropertyName = "DefectProcedureName";
- this.DefectProcedureName.HeaderText = "责任工序";
- this.DefectProcedureName.Name = "DefectProcedureName";
- this.DefectProcedureName.ReadOnly = true;
- //
- // DefectTypeName
- //
- this.DefectTypeName.DataPropertyName = "DefectTypeName";
- this.DefectTypeName.HeaderText = "缺陷类别";
- this.DefectTypeName.Name = "DefectTypeName";
- this.DefectTypeName.ReadOnly = true;
- //
- // DefectCode
- //
- this.DefectCode.DataPropertyName = "DefectCode";
- this.DefectCode.HeaderText = "缺陷编码";
- this.DefectCode.Name = "DefectCode";
- this.DefectCode.ReadOnly = true;
- //
- // DefectName
- //
- this.DefectName.DataPropertyName = "DefectName";
- this.DefectName.HeaderText = "缺陷名称";
- this.DefectName.Name = "DefectName";
- this.DefectName.ReadOnly = true;
- //
- // Usercode1
- //
- this.Usercode1.DataPropertyName = "Usercode";
- this.Usercode1.HeaderText = "检验工号";
- this.Usercode1.Name = "Usercode1";
- this.Usercode1.ReadOnly = true;
- //
- // Goodstypename
- //
- this.Goodstypename.DataPropertyName = "Goodstypename";
- this.Goodstypename.HeaderText = "产品类别";
- this.Goodstypename.Name = "Goodstypename";
- this.Goodstypename.ReadOnly = true;
- //
- // Goodscode
- //
- this.Goodscode.DataPropertyName = "Goodscode";
- this.Goodscode.HeaderText = "产品编码";
- this.Goodscode.Name = "Goodscode";
- this.Goodscode.ReadOnly = true;
- //
- // InCount
- //
- this.InCount.DataPropertyName = "InCount";
- dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.InCount.DefaultCellStyle = dataGridViewCellStyle3;
- this.InCount.HeaderText = "数量";
- this.InCount.Name = "InCount";
- this.InCount.ReadOnly = true;
- //
- // DefectProcedureID
- //
- this.DefectProcedureID.DataPropertyName = "DefectProcedureID";
- this.DefectProcedureID.HeaderText = "责任工序ID";
- this.DefectProcedureID.Name = "DefectProcedureID";
- this.DefectProcedureID.ReadOnly = true;
- this.DefectProcedureID.Visible = false;
- //
- // ProcedureID
- //
- this.ProcedureID.DataPropertyName = "ProcedureID";
- this.ProcedureID.HeaderText = "检验工序ID";
- this.ProcedureID.Name = "ProcedureID";
- this.ProcedureID.ReadOnly = true;
- this.ProcedureID.Visible = false;
- //
- // tapReportModuleDetail
- //
- this.tapReportModuleDetail.Controls.Add(this.dgvReportModuleDetail);
- this.tapReportModuleDetail.Location = new System.Drawing.Point(4, 22);
- this.tapReportModuleDetail.Margin = new System.Windows.Forms.Padding(0);
- this.tapReportModuleDetail.Name = "tapReportModuleDetail";
- this.tapReportModuleDetail.Size = new System.Drawing.Size(1154, 251);
- this.tapReportModuleDetail.TabIndex = 1;
- this.tapReportModuleDetail.Text = "成检缺陷明细";
- this.tapReportModuleDetail.UseVisualStyleBackColor = true;
- //
- // dgvReportModuleDetail
- //
- this.dgvReportModuleDetail.AllowUserToAddRows = false;
- this.dgvReportModuleDetail.AllowUserToDeleteRows = false;
- this.dgvReportModuleDetail.AllowUserToModifyRows = true;
- this.dgvReportModuleDetail.AllowUserToOrderColumns = true;
- this.dgvReportModuleDetail.AllowUserToSortRows = false;
- dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvReportModuleDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle5;
- this.dgvReportModuleDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvReportModuleDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvReportModuleDetail.CellHeight = 23;
- this.dgvReportModuleDetail.ChildNodeColumnName = null;
- this.dgvReportModuleDetail.ChildNodeColumnText = null;
- this.dgvReportModuleDetail.ColumnDeep = 1;
- this.dgvReportModuleDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle6.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvReportModuleDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle6;
- this.dgvReportModuleDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvReportModuleDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.productionlinename1,
- this.procedurename2,
- this.CreateTime,
- this.DefectProcedureName2,
- this.DefectUserCode2,
- this.DefectTypeName2,
- this.defectcode2,
- this.alldefectcode,
- this.defectnam2,
- this.DefectRemarks,
- this.DefectPositionCode,
- this.DefectPositionName,
- this.DefectFineCode,
- this.DefectDeductionNum,
- this.UserCode2,
- this.Goodstypename2,
- this.goodscode2,
- this.barcode,
- this.LogoCodeName,
- this.Goodsleveltype,
- this.GroutingUserCode,
- this.groutingdate,
- this.groutingnum,
- this.GroutingLineCode,
- this.groutingMouldCode,
- this.KilnCarCode,
- this.workUsercodes,
- this.CreateUserCodes,
- this.HandOverTime,
- this.undoflag,
- this.reworkflag,
- this.glazingroom});
- this.dgvReportModuleDetail.ColumnTreeView = null;
- this.dgvReportModuleDetail.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvReportModuleDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvReportModuleDetail.DynamicColumnName = "";
- this.dgvReportModuleDetail.EnableHeadersVisualStyles = false;
- this.dgvReportModuleDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvReportModuleDetail.FormatQuantityColumns = null;
- this.dgvReportModuleDetail.HorizontalMergeColumn = null;
- this.dgvReportModuleDetail.IsAutoCountSum = true;
- this.dgvReportModuleDetail.IsAutoResizeColumns = false;
- this.dgvReportModuleDetail.IsClickF12 = false;
- this.dgvReportModuleDetail.IsOpenMergeCellFlag = false;
- this.dgvReportModuleDetail.IsSubTotalFlag = false;
- this.dgvReportModuleDetail.IsTopDeep = false;
- this.dgvReportModuleDetail.Location = new System.Drawing.Point(0, 0);
- this.dgvReportModuleDetail.Margin = new System.Windows.Forms.Padding(0);
- this.dgvReportModuleDetail.MergeColumnNames = null;
- this.dgvReportModuleDetail.MergeDetailColumnNames = null;
- this.dgvReportModuleDetail.MergeDetailOnlyColumn = null;
- this.dgvReportModuleDetail.MergeOnlyColumn = null;
- this.dgvReportModuleDetail.MultiSelect = false;
- this.dgvReportModuleDetail.Name = "dgvReportModuleDetail";
- this.dgvReportModuleDetail.ReadOnly = true;
- this.dgvReportModuleDetail.RefreshAtHscroll = false;
- this.dgvReportModuleDetail.RowHeadersWidth = 50;
- this.dgvReportModuleDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle11.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvReportModuleDetail.RowsDefaultCellStyle = dataGridViewCellStyle11;
- this.dgvReportModuleDetail.RowTemplate.Height = 21;
- this.dgvReportModuleDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvReportModuleDetail.Size = new System.Drawing.Size(1154, 251);
- this.dgvReportModuleDetail.SortOrderColumnName = null;
- this.dgvReportModuleDetail.TabIndex = 30;
- this.dgvReportModuleDetail.Tag = true;
- this.dgvReportModuleDetail.TotalSumColumns = null;
- this.dgvReportModuleDetail.ViewRowFilter = "";
- //
- // productionlinename1
- //
- this.productionlinename1.DataPropertyName = "productionlinename";
- this.productionlinename1.HeaderText = "生产线";
- this.productionlinename1.Name = "productionlinename1";
- this.productionlinename1.ReadOnly = true;
- //
- // procedurename2
- //
- this.procedurename2.DataPropertyName = "procedurename";
- this.procedurename2.HeaderText = "检验工序";
- this.procedurename2.Name = "procedurename2";
- this.procedurename2.ReadOnly = true;
- //
- // CreateTime
- //
- this.CreateTime.DataPropertyName = "CreateTime";
- dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle7.Format = "yyyy-MM-dd HH:mm:ss";
- this.CreateTime.DefaultCellStyle = dataGridViewCellStyle7;
- this.CreateTime.HeaderText = "登记时间";
- this.CreateTime.Name = "CreateTime";
- this.CreateTime.ReadOnly = true;
- //
- // DefectProcedureName2
- //
- this.DefectProcedureName2.DataPropertyName = "DefectProcedureName";
- this.DefectProcedureName2.HeaderText = "责任工序";
- this.DefectProcedureName2.Name = "DefectProcedureName2";
- this.DefectProcedureName2.ReadOnly = true;
- //
- // DefectUserCode2
- //
- this.DefectUserCode2.DataPropertyName = "DefectUserCode";
- this.DefectUserCode2.HeaderText = "责任工号";
- this.DefectUserCode2.Name = "DefectUserCode2";
- this.DefectUserCode2.ReadOnly = true;
- //
- // DefectTypeName2
- //
- this.DefectTypeName2.DataPropertyName = "DefectTypeName";
- this.DefectTypeName2.HeaderText = "缺陷类别";
- this.DefectTypeName2.Name = "DefectTypeName2";
- this.DefectTypeName2.ReadOnly = true;
- //
- // defectcode2
- //
- this.defectcode2.DataPropertyName = "defectcode";
- this.defectcode2.HeaderText = "缺陷编码";
- this.defectcode2.Name = "defectcode2";
- this.defectcode2.ReadOnly = true;
- //
- // alldefectcode
- //
- this.alldefectcode.DataPropertyName = "alldefectcode";
- this.alldefectcode.HeaderText = "缺陷编码(全)";
- this.alldefectcode.Name = "alldefectcode";
- this.alldefectcode.ReadOnly = true;
- //
- // defectnam2
- //
- this.defectnam2.DataPropertyName = "defectname";
- this.defectnam2.HeaderText = "缺陷名称";
- this.defectnam2.Name = "defectnam2";
- this.defectnam2.ReadOnly = true;
- //
- // DefectRemarks
- //
- this.DefectRemarks.DataPropertyName = "DefectRemarks";
- this.DefectRemarks.HeaderText = "缺陷备注";
- this.DefectRemarks.Name = "DefectRemarks";
- this.DefectRemarks.ReadOnly = true;
- //
- // DefectPositionCode
- //
- this.DefectPositionCode.DataPropertyName = "DefectPositionCode";
- this.DefectPositionCode.HeaderText = "缺陷位置编码";
- this.DefectPositionCode.Name = "DefectPositionCode";
- this.DefectPositionCode.ReadOnly = true;
- //
- // DefectPositionName
- //
- this.DefectPositionName.DataPropertyName = "DefectPositionName";
- this.DefectPositionName.HeaderText = "缺陷位置名称";
- this.DefectPositionName.Name = "DefectPositionName";
- this.DefectPositionName.ReadOnly = true;
- //
- // DefectFineCode
- //
- this.DefectFineCode.DataPropertyName = "DefectFineCode";
- dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.DefectFineCode.DefaultCellStyle = dataGridViewCellStyle8;
- this.DefectFineCode.HeaderText = "缺陷扣罚";
- this.DefectFineCode.Name = "DefectFineCode";
- this.DefectFineCode.ReadOnly = true;
- //
- // DefectDeductionNum
- //
- this.DefectDeductionNum.DataPropertyName = "DefectDeductionNum";
- dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.DefectDeductionNum.DefaultCellStyle = dataGridViewCellStyle9;
- this.DefectDeductionNum.HeaderText = "缺陷扣除数";
- this.DefectDeductionNum.Name = "DefectDeductionNum";
- this.DefectDeductionNum.ReadOnly = true;
- //
- // UserCode2
- //
- this.UserCode2.DataPropertyName = "UserCode";
- this.UserCode2.HeaderText = "检验工号";
- this.UserCode2.Name = "UserCode2";
- this.UserCode2.ReadOnly = true;
- //
- // Goodstypename2
- //
- this.Goodstypename2.DataPropertyName = "Goodstypename";
- this.Goodstypename2.HeaderText = "产品类别";
- this.Goodstypename2.Name = "Goodstypename2";
- this.Goodstypename2.ReadOnly = true;
- //
- // goodscode2
- //
- this.goodscode2.DataPropertyName = "goodscode";
- this.goodscode2.HeaderText = "产品编码";
- this.goodscode2.Name = "goodscode2";
- this.goodscode2.ReadOnly = true;
- //
- // barcode
- //
- this.barcode.DataPropertyName = "barcode";
- this.barcode.HeaderText = "产品条码";
- this.barcode.Name = "barcode";
- this.barcode.ReadOnly = true;
- //
- // LogoCodeName
- //
- this.LogoCodeName.DataPropertyName = "LogoCodeName";
- this.LogoCodeName.HeaderText = "商标";
- this.LogoCodeName.Name = "LogoCodeName";
- this.LogoCodeName.ReadOnly = true;
- //
- // Goodsleveltype
- //
- this.Goodsleveltype.DataPropertyName = "Goodsleveltype";
- this.Goodsleveltype.HeaderText = "产品分级";
- this.Goodsleveltype.Name = "Goodsleveltype";
- this.Goodsleveltype.ReadOnly = true;
- //
- // GroutingUserCode
- //
- this.GroutingUserCode.DataPropertyName = "GroutingUserCode";
- this.GroutingUserCode.HeaderText = "成型工号";
- this.GroutingUserCode.Name = "GroutingUserCode";
- this.GroutingUserCode.ReadOnly = true;
- //
- // groutingdate
- //
- this.groutingdate.DataPropertyName = "groutingdate";
- this.groutingdate.HeaderText = "注浆日期";
- this.groutingdate.Name = "groutingdate";
- this.groutingdate.ReadOnly = true;
- //
- // groutingnum
- //
- this.groutingnum.DataPropertyName = "groutingnum";
- this.groutingnum.HeaderText = "注浆次数";
- this.groutingnum.Name = "groutingnum";
- this.groutingnum.ReadOnly = true;
- //
- // GroutingLineCode
- //
- this.GroutingLineCode.DataPropertyName = "GroutingLineCode";
- this.GroutingLineCode.HeaderText = "成型线编码";
- this.GroutingLineCode.Name = "GroutingLineCode";
- this.GroutingLineCode.ReadOnly = true;
- //
- // groutingMouldCode
- //
- this.groutingMouldCode.DataPropertyName = "groutingMouldCode";
- this.groutingMouldCode.HeaderText = "模具编号";
- this.groutingMouldCode.Name = "groutingMouldCode";
- this.groutingMouldCode.ReadOnly = true;
- //
- // KilnCarCode
- //
- this.KilnCarCode.DataPropertyName = "KilnCarCode";
- this.KilnCarCode.HeaderText = "窑车编号";
- this.KilnCarCode.Name = "KilnCarCode";
- this.KilnCarCode.ReadOnly = true;
- //
- // workUsercodes
- //
- this.workUsercodes.DataPropertyName = "workUsercodes";
- this.workUsercodes.HeaderText = "生产工号";
- this.workUsercodes.Name = "workUsercodes";
- this.workUsercodes.ReadOnly = true;
- //
- // CreateUserCodes
- //
- this.CreateUserCodes.DataPropertyName = "CreateUserCodes";
- this.CreateUserCodes.HeaderText = "操作工号";
- this.CreateUserCodes.Name = "CreateUserCodes";
- this.CreateUserCodes.ReadOnly = true;
- //
- // HandOverTime
- //
- this.HandOverTime.DataPropertyName = "HandOverTime";
- dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle10.Format = "yyyy-MM-dd HH:mm:ss";
- this.HandOverTime.DefaultCellStyle = dataGridViewCellStyle10;
- this.HandOverTime.HeaderText = "交接时间";
- this.HandOverTime.Name = "HandOverTime";
- this.HandOverTime.ReadOnly = true;
- //
- // undoflag
- //
- this.undoflag.DataPropertyName = "undoflag";
- this.undoflag.FalseValue = "0";
- this.undoflag.HeaderText = "改判标识";
- this.undoflag.IndeterminateValue = "";
- this.undoflag.Name = "undoflag";
- this.undoflag.ReadOnly = true;
- this.undoflag.TrueValue = "1";
- //
- // reworkflag
- //
- this.reworkflag.DataPropertyName = "reworkflag";
- this.reworkflag.FalseValue = "0";
- this.reworkflag.HeaderText = "返工标识";
- this.reworkflag.Name = "reworkflag";
- this.reworkflag.ReadOnly = true;
- this.reworkflag.TrueValue = "1";
- //
- // glazingroom
- //
- this.glazingroom.DataPropertyName = "glazingroom";
- this.glazingroom.HeaderText = "喷釉房号";
- this.glazingroom.Name = "glazingroom";
- this.glazingroom.ReadOnly = true;
- //
- // tapDefectDetail
- //
- this.tapDefectDetail.Controls.Add(this.dgvDefectDetail);
- this.tapDefectDetail.Location = new System.Drawing.Point(4, 22);
- this.tapDefectDetail.Name = "tapDefectDetail";
- this.tapDefectDetail.Size = new System.Drawing.Size(1154, 251);
- this.tapDefectDetail.TabIndex = 2;
- this.tapDefectDetail.Text = "缺陷登记明细";
- this.tapDefectDetail.UseVisualStyleBackColor = true;
- //
- // dgvDefectDetail
- //
- this.dgvDefectDetail.AllowUserToAddRows = false;
- this.dgvDefectDetail.AllowUserToDeleteRows = false;
- this.dgvDefectDetail.AllowUserToModifyRows = true;
- this.dgvDefectDetail.AllowUserToOrderColumns = true;
- this.dgvDefectDetail.AllowUserToSortRows = false;
- dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvDefectDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle12;
- this.dgvDefectDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvDefectDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvDefectDetail.CellHeight = 23;
- this.dgvDefectDetail.ChildNodeColumnName = null;
- this.dgvDefectDetail.ChildNodeColumnText = null;
- this.dgvDefectDetail.ColumnDeep = 1;
- this.dgvDefectDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle13.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvDefectDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle13;
- this.dgvDefectDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvDefectDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn1,
- this.dataGridViewTextBoxColumn2,
- this.dataGridViewTextBoxColumn3,
- this.CheckTime,
- this.dataGridViewTextBoxColumn4,
- this.dataGridViewTextBoxColumn5,
- this.DefectStaffNames3,
- this.defectjobsname,
- this.dataGridViewTextBoxColumn6,
- this.dataGridViewTextBoxColumn7,
- this.dataGridViewTextBoxColumn8,
- this.dataGridViewTextBoxColumn9,
- this.dataGridViewTextBoxColumn10,
- this.dataGridViewTextBoxColumn11,
- this.dataGridViewTextBoxColumn12,
- this.dataGridViewTextBoxColumn13,
- this.dataGridViewTextBoxColumn14,
- this.dataGridViewTextBoxColumn15,
- this.dataGridViewTextBoxColumn16,
- this.dataGridViewTextBoxColumn17,
- this.dataGridViewTextBoxColumn18,
- this.dataGridViewTextBoxColumn19,
- this.dataGridViewTextBoxColumn20,
- this.dataGridViewTextBoxColumn21,
- this.dataGridViewTextBoxColumn22,
- this.dataGridViewTextBoxColumn23,
- this.czGroutingLineCode,
- this.dataGridViewTextBoxColumn24,
- this.dataGridViewTextBoxColumn25,
- this.dataGridViewTextBoxColumn26,
- this.dataGridViewTextBoxColumn27,
- this.dataGridViewTextBoxColumn28,
- this.dataGridViewCheckBoxColumn1,
- this.barcodeRemarks3,
- this.bsqx});
- this.dgvDefectDetail.ColumnTreeView = null;
- this.dgvDefectDetail.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvDefectDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvDefectDetail.DynamicColumnName = "";
- this.dgvDefectDetail.EnableHeadersVisualStyles = false;
- this.dgvDefectDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvDefectDetail.FormatQuantityColumns = null;
- this.dgvDefectDetail.HorizontalMergeColumn = null;
- this.dgvDefectDetail.IsAutoCountSum = true;
- this.dgvDefectDetail.IsAutoResizeColumns = false;
- this.dgvDefectDetail.IsClickF12 = false;
- this.dgvDefectDetail.IsOpenMergeCellFlag = false;
- this.dgvDefectDetail.IsSubTotalFlag = false;
- this.dgvDefectDetail.IsTopDeep = false;
- this.dgvDefectDetail.Location = new System.Drawing.Point(0, 0);
- this.dgvDefectDetail.Margin = new System.Windows.Forms.Padding(0);
- this.dgvDefectDetail.MergeColumnNames = null;
- this.dgvDefectDetail.MergeDetailColumnNames = null;
- this.dgvDefectDetail.MergeDetailOnlyColumn = null;
- this.dgvDefectDetail.MergeOnlyColumn = null;
- this.dgvDefectDetail.MultiSelect = false;
- this.dgvDefectDetail.Name = "dgvDefectDetail";
- this.dgvDefectDetail.ReadOnly = true;
- this.dgvDefectDetail.RefreshAtHscroll = false;
- this.dgvDefectDetail.RowHeadersWidth = 50;
- this.dgvDefectDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvDefectDetail.RowsDefaultCellStyle = dataGridViewCellStyle19;
- this.dgvDefectDetail.RowTemplate.Height = 21;
- this.dgvDefectDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvDefectDetail.Size = new System.Drawing.Size(1154, 251);
- this.dgvDefectDetail.SortOrderColumnName = null;
- this.dgvDefectDetail.TabIndex = 31;
- this.dgvDefectDetail.Tag = true;
- this.dgvDefectDetail.TotalSumColumns = null;
- this.dgvDefectDetail.ViewRowFilter = "";
- //
- // tabProDetail
- //
- this.tabProDetail.Controls.Add(this.dgvProDetail);
- this.tabProDetail.Controls.Add(this.panel1);
- this.tabProDetail.Location = new System.Drawing.Point(4, 22);
- this.tabProDetail.Name = "tabProDetail";
- this.tabProDetail.Size = new System.Drawing.Size(1154, 251);
- this.tabProDetail.TabIndex = 3;
- this.tabProDetail.Text = "生产工序信息";
- this.tabProDetail.UseVisualStyleBackColor = true;
- //
- // dgvProDetail
- //
- this.dgvProDetail.AllowUserToAddRows = false;
- this.dgvProDetail.AllowUserToDeleteRows = false;
- this.dgvProDetail.AllowUserToModifyRows = true;
- this.dgvProDetail.AllowUserToOrderColumns = true;
- this.dgvProDetail.AllowUserToSortRows = false;
- dataGridViewCellStyle20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvProDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle20;
- this.dgvProDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvProDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvProDetail.CellHeight = 23;
- this.dgvProDetail.ChildNodeColumnName = null;
- this.dgvProDetail.ChildNodeColumnText = null;
- this.dgvProDetail.ColumnDeep = 1;
- this.dgvProDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle21.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle21.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle21.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle21.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvProDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle21;
- this.dgvProDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvProDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.protime,
- this.proname,
- this.g4KILNCARCODE,
- this.prousercode,
- this.dataGridViewTextBoxColumn29,
- this.dataGridViewTextBoxColumn30,
- this.dataGridViewTextBoxColumn31,
- this.dataGridViewTextBoxColumn32,
- this.dataGridViewTextBoxColumn33,
- this.dataGridViewTextBoxColumn34,
- this.dataGridViewTextBoxColumn35,
- this.dataGridViewTextBoxColumn36,
- this.dataGridViewTextBoxColumn37,
- this.dataGridViewTextBoxColumn38,
- this.dataGridViewTextBoxColumn39,
- this.dataGridViewTextBoxColumn40,
- this.dataGridViewTextBoxColumn41,
- this.dataGridViewTextBoxColumn42,
- this.dataGridViewTextBoxColumn43,
- this.dataGridViewTextBoxColumn44,
- this.dataGridViewTextBoxColumn45,
- this.dataGridViewTextBoxColumn46,
- this.dataGridViewTextBoxColumn48,
- this.dataGridViewTextBoxColumn47,
- this.dataGridViewTextBoxColumn49,
- this.dataGridViewTextBoxColumn50,
- this.dataGridViewTextBoxColumn51,
- this.dataGridViewTextBoxColumn52,
- this.dataGridViewTextBoxColumn53,
- this.dataGridViewTextBoxColumn54,
- this.dataGridViewTextBoxColumn55,
- this.dataGridViewTextBoxColumn56,
- this.dataGridViewTextBoxColumn57,
- this.dataGridViewTextBoxColumn58,
- this.dataGridViewTextBoxColumn59,
- this.dataGridViewCheckBoxColumn2,
- this.dataGridViewTextBoxColumn60});
- this.dgvProDetail.ColumnTreeView = null;
- this.dgvProDetail.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvProDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvProDetail.DynamicColumnName = "";
- this.dgvProDetail.EnableHeadersVisualStyles = false;
- this.dgvProDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvProDetail.FormatQuantityColumns = null;
- this.dgvProDetail.HorizontalMergeColumn = null;
- this.dgvProDetail.IsAutoCountSum = true;
- this.dgvProDetail.IsAutoResizeColumns = false;
- this.dgvProDetail.IsClickF12 = false;
- this.dgvProDetail.IsOpenMergeCellFlag = false;
- this.dgvProDetail.IsSubTotalFlag = false;
- this.dgvProDetail.IsTopDeep = false;
- this.dgvProDetail.Location = new System.Drawing.Point(0, 28);
- this.dgvProDetail.Margin = new System.Windows.Forms.Padding(0);
- this.dgvProDetail.MergeColumnNames = null;
- this.dgvProDetail.MergeDetailColumnNames = null;
- this.dgvProDetail.MergeDetailOnlyColumn = null;
- this.dgvProDetail.MergeOnlyColumn = null;
- this.dgvProDetail.MultiSelect = false;
- this.dgvProDetail.Name = "dgvProDetail";
- this.dgvProDetail.ReadOnly = true;
- this.dgvProDetail.RefreshAtHscroll = false;
- this.dgvProDetail.RowHeadersWidth = 50;
- this.dgvProDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle28.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvProDetail.RowsDefaultCellStyle = dataGridViewCellStyle28;
- this.dgvProDetail.RowTemplate.Height = 21;
- this.dgvProDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvProDetail.Size = new System.Drawing.Size(1154, 223);
- this.dgvProDetail.SortOrderColumnName = null;
- this.dgvProDetail.TabIndex = 32;
- this.dgvProDetail.Tag = true;
- this.dgvProDetail.TotalSumColumns = null;
- this.dgvProDetail.ViewRowFilter = "";
- //
- // protime
- //
- this.protime.DataPropertyName = "protime";
- dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle22.Format = "yyyy-MM-dd HH:mm:ss";
- this.protime.DefaultCellStyle = dataGridViewCellStyle22;
- this.protime.HeaderText = "生产时间";
- this.protime.Name = "protime";
- this.protime.ReadOnly = true;
- //
- // proname
- //
- this.proname.DataPropertyName = "proname";
- this.proname.HeaderText = "生产工序";
- this.proname.Name = "proname";
- this.proname.ReadOnly = true;
- //
- // g4KILNCARCODE
- //
- this.g4KILNCARCODE.DataPropertyName = "KILNCARCODE";
- this.g4KILNCARCODE.HeaderText = "窑车编码";
- this.g4KILNCARCODE.Name = "g4KILNCARCODE";
- this.g4KILNCARCODE.ReadOnly = true;
- //
- // prousercode
- //
- this.prousercode.DataPropertyName = "prousercode";
- this.prousercode.HeaderText = "生产工号";
- this.prousercode.Name = "prousercode";
- this.prousercode.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn29
- //
- this.dataGridViewTextBoxColumn29.DataPropertyName = "productionlinename";
- this.dataGridViewTextBoxColumn29.HeaderText = "生产线";
- this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
- this.dataGridViewTextBoxColumn29.ReadOnly = true;
- this.dataGridViewTextBoxColumn29.Visible = false;
- //
- // dataGridViewTextBoxColumn30
- //
- this.dataGridViewTextBoxColumn30.DataPropertyName = "procedurename";
- this.dataGridViewTextBoxColumn30.HeaderText = "检验工序";
- this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
- this.dataGridViewTextBoxColumn30.ReadOnly = true;
- this.dataGridViewTextBoxColumn30.Visible = false;
- //
- // dataGridViewTextBoxColumn31
- //
- this.dataGridViewTextBoxColumn31.DataPropertyName = "pdchecktime";
- dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle23.Format = "yyyy-MM-dd HH:mm:ss";
- this.dataGridViewTextBoxColumn31.DefaultCellStyle = dataGridViewCellStyle23;
- this.dataGridViewTextBoxColumn31.HeaderText = "成检登记时间";
- this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
- this.dataGridViewTextBoxColumn31.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn32
- //
- this.dataGridViewTextBoxColumn32.DataPropertyName = "CheckTime";
- dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle24.Format = "yyyy-MM-dd HH:mm:ss";
- this.dataGridViewTextBoxColumn32.DefaultCellStyle = dataGridViewCellStyle24;
- this.dataGridViewTextBoxColumn32.HeaderText = "缺陷登记时间";
- this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
- this.dataGridViewTextBoxColumn32.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn33
- //
- this.dataGridViewTextBoxColumn33.DataPropertyName = "DefectProcedureName";
- this.dataGridViewTextBoxColumn33.HeaderText = "责任工序";
- this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
- this.dataGridViewTextBoxColumn33.ReadOnly = true;
- this.dataGridViewTextBoxColumn33.Visible = false;
- //
- // dataGridViewTextBoxColumn34
- //
- this.dataGridViewTextBoxColumn34.DataPropertyName = "DefectUserCode";
- this.dataGridViewTextBoxColumn34.HeaderText = "责任工号";
- this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
- this.dataGridViewTextBoxColumn34.ReadOnly = true;
- this.dataGridViewTextBoxColumn34.Visible = false;
- //
- // dataGridViewTextBoxColumn35
- //
- this.dataGridViewTextBoxColumn35.DataPropertyName = "defectjobsname";
- this.dataGridViewTextBoxColumn35.HeaderText = "责任工种";
- this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
- this.dataGridViewTextBoxColumn35.ReadOnly = true;
- this.dataGridViewTextBoxColumn35.Visible = false;
- //
- // dataGridViewTextBoxColumn36
- //
- this.dataGridViewTextBoxColumn36.DataPropertyName = "DefectTypeName";
- this.dataGridViewTextBoxColumn36.HeaderText = "缺陷类别";
- this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
- this.dataGridViewTextBoxColumn36.ReadOnly = true;
- this.dataGridViewTextBoxColumn36.Visible = false;
- //
- // dataGridViewTextBoxColumn37
- //
- this.dataGridViewTextBoxColumn37.DataPropertyName = "defectcode";
- this.dataGridViewTextBoxColumn37.HeaderText = "缺陷编码";
- this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
- this.dataGridViewTextBoxColumn37.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn38
- //
- this.dataGridViewTextBoxColumn38.DataPropertyName = "alldefectcode";
- this.dataGridViewTextBoxColumn38.HeaderText = "缺陷编码(全)";
- this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
- this.dataGridViewTextBoxColumn38.ReadOnly = true;
- this.dataGridViewTextBoxColumn38.Visible = false;
- //
- // dataGridViewTextBoxColumn39
- //
- this.dataGridViewTextBoxColumn39.DataPropertyName = "defectname";
- this.dataGridViewTextBoxColumn39.HeaderText = "缺陷名称";
- this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
- this.dataGridViewTextBoxColumn39.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn40
- //
- this.dataGridViewTextBoxColumn40.DataPropertyName = "DefectRemarks";
- this.dataGridViewTextBoxColumn40.HeaderText = "缺陷备注";
- this.dataGridViewTextBoxColumn40.Name = "dataGridViewTextBoxColumn40";
- this.dataGridViewTextBoxColumn40.ReadOnly = true;
- this.dataGridViewTextBoxColumn40.Visible = false;
- //
- // dataGridViewTextBoxColumn41
- //
- this.dataGridViewTextBoxColumn41.DataPropertyName = "DefectPositionCode";
- this.dataGridViewTextBoxColumn41.HeaderText = "缺陷位置编码";
- this.dataGridViewTextBoxColumn41.Name = "dataGridViewTextBoxColumn41";
- this.dataGridViewTextBoxColumn41.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn42
- //
- this.dataGridViewTextBoxColumn42.DataPropertyName = "DefectPositionName";
- this.dataGridViewTextBoxColumn42.HeaderText = "缺陷位置名称";
- this.dataGridViewTextBoxColumn42.Name = "dataGridViewTextBoxColumn42";
- this.dataGridViewTextBoxColumn42.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn43
- //
- this.dataGridViewTextBoxColumn43.DataPropertyName = "DefectFineCode";
- dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn43.DefaultCellStyle = dataGridViewCellStyle25;
- this.dataGridViewTextBoxColumn43.HeaderText = "缺陷扣罚";
- this.dataGridViewTextBoxColumn43.Name = "dataGridViewTextBoxColumn43";
- this.dataGridViewTextBoxColumn43.ReadOnly = true;
- this.dataGridViewTextBoxColumn43.Visible = false;
- //
- // dataGridViewTextBoxColumn44
- //
- this.dataGridViewTextBoxColumn44.DataPropertyName = "DefectDeductionNum";
- dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn44.DefaultCellStyle = dataGridViewCellStyle26;
- this.dataGridViewTextBoxColumn44.HeaderText = "缺陷扣除数";
- this.dataGridViewTextBoxColumn44.Name = "dataGridViewTextBoxColumn44";
- this.dataGridViewTextBoxColumn44.ReadOnly = true;
- this.dataGridViewTextBoxColumn44.Visible = false;
- //
- // dataGridViewTextBoxColumn45
- //
- this.dataGridViewTextBoxColumn45.DataPropertyName = "UserCode";
- this.dataGridViewTextBoxColumn45.HeaderText = "检验工号";
- this.dataGridViewTextBoxColumn45.Name = "dataGridViewTextBoxColumn45";
- this.dataGridViewTextBoxColumn45.ReadOnly = true;
- this.dataGridViewTextBoxColumn45.Visible = false;
- //
- // dataGridViewTextBoxColumn46
- //
- this.dataGridViewTextBoxColumn46.DataPropertyName = "Goodstypename";
- this.dataGridViewTextBoxColumn46.HeaderText = "产品类别";
- this.dataGridViewTextBoxColumn46.Name = "dataGridViewTextBoxColumn46";
- this.dataGridViewTextBoxColumn46.ReadOnly = true;
- this.dataGridViewTextBoxColumn46.Visible = false;
- //
- // dataGridViewTextBoxColumn48
- //
- this.dataGridViewTextBoxColumn48.DataPropertyName = "barcode";
- this.dataGridViewTextBoxColumn48.HeaderText = "产品条码";
- this.dataGridViewTextBoxColumn48.Name = "dataGridViewTextBoxColumn48";
- this.dataGridViewTextBoxColumn48.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn47
- //
- this.dataGridViewTextBoxColumn47.DataPropertyName = "goodscode";
- this.dataGridViewTextBoxColumn47.HeaderText = "产品编码";
- this.dataGridViewTextBoxColumn47.Name = "dataGridViewTextBoxColumn47";
- this.dataGridViewTextBoxColumn47.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn49
- //
- this.dataGridViewTextBoxColumn49.DataPropertyName = "LogoCodeName";
- this.dataGridViewTextBoxColumn49.HeaderText = "商标";
- this.dataGridViewTextBoxColumn49.Name = "dataGridViewTextBoxColumn49";
- this.dataGridViewTextBoxColumn49.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn50
- //
- this.dataGridViewTextBoxColumn50.DataPropertyName = "Goodsleveltype";
- this.dataGridViewTextBoxColumn50.HeaderText = "产品分级";
- this.dataGridViewTextBoxColumn50.Name = "dataGridViewTextBoxColumn50";
- this.dataGridViewTextBoxColumn50.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn51
- //
- this.dataGridViewTextBoxColumn51.DataPropertyName = "GroutingUserCode";
- this.dataGridViewTextBoxColumn51.HeaderText = "成型工号";
- this.dataGridViewTextBoxColumn51.Name = "dataGridViewTextBoxColumn51";
- this.dataGridViewTextBoxColumn51.ReadOnly = true;
- this.dataGridViewTextBoxColumn51.Visible = false;
- //
- // dataGridViewTextBoxColumn52
- //
- this.dataGridViewTextBoxColumn52.DataPropertyName = "groutingdate";
- this.dataGridViewTextBoxColumn52.HeaderText = "注浆日期";
- this.dataGridViewTextBoxColumn52.Name = "dataGridViewTextBoxColumn52";
- this.dataGridViewTextBoxColumn52.ReadOnly = true;
- this.dataGridViewTextBoxColumn52.Visible = false;
- //
- // dataGridViewTextBoxColumn53
- //
- this.dataGridViewTextBoxColumn53.DataPropertyName = "groutingnum";
- this.dataGridViewTextBoxColumn53.HeaderText = "注浆次数";
- this.dataGridViewTextBoxColumn53.Name = "dataGridViewTextBoxColumn53";
- this.dataGridViewTextBoxColumn53.ReadOnly = true;
- this.dataGridViewTextBoxColumn53.Visible = false;
- //
- // dataGridViewTextBoxColumn54
- //
- this.dataGridViewTextBoxColumn54.DataPropertyName = "GroutingLineCode";
- this.dataGridViewTextBoxColumn54.HeaderText = "成型线编码";
- this.dataGridViewTextBoxColumn54.Name = "dataGridViewTextBoxColumn54";
- this.dataGridViewTextBoxColumn54.ReadOnly = true;
- this.dataGridViewTextBoxColumn54.Visible = false;
- //
- // dataGridViewTextBoxColumn55
- //
- this.dataGridViewTextBoxColumn55.DataPropertyName = "groutingMouldCode";
- this.dataGridViewTextBoxColumn55.HeaderText = "模具编号";
- this.dataGridViewTextBoxColumn55.Name = "dataGridViewTextBoxColumn55";
- this.dataGridViewTextBoxColumn55.ReadOnly = true;
- this.dataGridViewTextBoxColumn55.Visible = false;
- //
- // dataGridViewTextBoxColumn56
- //
- this.dataGridViewTextBoxColumn56.DataPropertyName = "KilnCarCode";
- this.dataGridViewTextBoxColumn56.HeaderText = "窑车编号";
- this.dataGridViewTextBoxColumn56.Name = "dataGridViewTextBoxColumn56";
- this.dataGridViewTextBoxColumn56.ReadOnly = true;
- this.dataGridViewTextBoxColumn56.Visible = false;
- //
- // dataGridViewTextBoxColumn57
- //
- this.dataGridViewTextBoxColumn57.DataPropertyName = "workUsercodes";
- this.dataGridViewTextBoxColumn57.HeaderText = "生产工号";
- this.dataGridViewTextBoxColumn57.Name = "dataGridViewTextBoxColumn57";
- this.dataGridViewTextBoxColumn57.ReadOnly = true;
- this.dataGridViewTextBoxColumn57.Visible = false;
- //
- // dataGridViewTextBoxColumn58
- //
- this.dataGridViewTextBoxColumn58.DataPropertyName = "CreateUserCodes";
- this.dataGridViewTextBoxColumn58.HeaderText = "操作工号";
- this.dataGridViewTextBoxColumn58.Name = "dataGridViewTextBoxColumn58";
- this.dataGridViewTextBoxColumn58.ReadOnly = true;
- this.dataGridViewTextBoxColumn58.Visible = false;
- //
- // dataGridViewTextBoxColumn59
- //
- this.dataGridViewTextBoxColumn59.DataPropertyName = "HandOverTime";
- dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle27.Format = "yyyy-MM-dd HH:mm:ss";
- this.dataGridViewTextBoxColumn59.DefaultCellStyle = dataGridViewCellStyle27;
- this.dataGridViewTextBoxColumn59.HeaderText = "交接时间";
- this.dataGridViewTextBoxColumn59.Name = "dataGridViewTextBoxColumn59";
- this.dataGridViewTextBoxColumn59.ReadOnly = true;
- this.dataGridViewTextBoxColumn59.Visible = false;
- //
- // dataGridViewCheckBoxColumn2
- //
- this.dataGridViewCheckBoxColumn2.DataPropertyName = "undoflag";
- this.dataGridViewCheckBoxColumn2.FalseValue = "0";
- this.dataGridViewCheckBoxColumn2.HeaderText = "改判标识";
- this.dataGridViewCheckBoxColumn2.IndeterminateValue = "";
- this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
- this.dataGridViewCheckBoxColumn2.ReadOnly = true;
- this.dataGridViewCheckBoxColumn2.TrueValue = "1";
- this.dataGridViewCheckBoxColumn2.Visible = false;
- //
- // dataGridViewTextBoxColumn60
- //
- this.dataGridViewTextBoxColumn60.DataPropertyName = "barcodeRemarks";
- this.dataGridViewTextBoxColumn60.HeaderText = "产品备注";
- this.dataGridViewTextBoxColumn60.Name = "dataGridViewTextBoxColumn60";
- this.dataGridViewTextBoxColumn60.ReadOnly = true;
- this.dataGridViewTextBoxColumn60.Visible = false;
- //
- // panel1
- //
- this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
- this.panel1.Controls.Add(this.dkProcedureSearchBox1);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1154, 28);
- this.panel1.TabIndex = 33;
- //
- // dkProcedureSearchBox1
- //
- this.dkProcedureSearchBox1.BackColor = System.Drawing.Color.Transparent;
- this.dkProcedureSearchBox1.DataSource = null;
- this.dkProcedureSearchBox1.Enabled = true;
- this.dkProcedureSearchBox1.IsEnablePurview = false;
- this.dkProcedureSearchBox1.IsMustInput = true;
- this.dkProcedureSearchBox1.Location = new System.Drawing.Point(3, 3);
- this.dkProcedureSearchBox1.ModelType = null;
- this.dkProcedureSearchBox1.Name = "dkProcedureSearchBox1";
- this.dkProcedureSearchBox1.ProcedureCode = "";
- this.dkProcedureSearchBox1.ProcedureID = null;
- this.dkProcedureSearchBox1.ProcedureIDS = null;
- this.dkProcedureSearchBox1.ProcedureName = null;
- this.dkProcedureSearchBox1.Purview = null;
- this.dkProcedureSearchBox1.PurviewType = ((byte)(0));
- this.dkProcedureSearchBox1.SelectMore = true;
- this.dkProcedureSearchBox1.Size = new System.Drawing.Size(245, 21);
- this.dkProcedureSearchBox1.TabIndex = 17;
- this.dkProcedureSearchBox1.Title = "生产工序";
- this.dkProcedureSearchBox1.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.DataPropertyName = "productionlinename";
- this.dataGridViewTextBoxColumn1.HeaderText = "生产线";
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.DataPropertyName = "procedurename";
- this.dataGridViewTextBoxColumn2.HeaderText = "检验工序";
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.DataPropertyName = "pdchecktime";
- dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle14.Format = "yyyy-MM-dd HH:mm:ss";
- this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle14;
- this.dataGridViewTextBoxColumn3.HeaderText = "成检登记时间";
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.ReadOnly = true;
- //
- // CheckTime
- //
- this.CheckTime.DataPropertyName = "CheckTime";
- dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle15.Format = "yyyy-MM-dd HH:mm:ss";
- this.CheckTime.DefaultCellStyle = dataGridViewCellStyle15;
- this.CheckTime.HeaderText = "缺陷登记时间";
- this.CheckTime.Name = "CheckTime";
- this.CheckTime.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.DataPropertyName = "DefectProcedureName";
- this.dataGridViewTextBoxColumn4.HeaderText = "责任工序";
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn5
- //
- this.dataGridViewTextBoxColumn5.DataPropertyName = "DefectUserCode";
- this.dataGridViewTextBoxColumn5.HeaderText = "责任工号";
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- //
- // DefectStaffNames3
- //
- this.DefectStaffNames3.DataPropertyName = "DefectStaffNames";
- this.DefectStaffNames3.HeaderText = "责任员工";
- this.DefectStaffNames3.Name = "DefectStaffNames3";
- this.DefectStaffNames3.ReadOnly = true;
- //
- // defectjobsname
- //
- this.defectjobsname.DataPropertyName = "defectjobsname";
- this.defectjobsname.HeaderText = "责任工种";
- this.defectjobsname.Name = "defectjobsname";
- this.defectjobsname.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn6
- //
- this.dataGridViewTextBoxColumn6.DataPropertyName = "DefectTypeName";
- this.dataGridViewTextBoxColumn6.HeaderText = "缺陷类别";
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn7
- //
- this.dataGridViewTextBoxColumn7.DataPropertyName = "defectcode";
- this.dataGridViewTextBoxColumn7.HeaderText = "缺陷编码";
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn8
- //
- this.dataGridViewTextBoxColumn8.DataPropertyName = "alldefectcode";
- this.dataGridViewTextBoxColumn8.HeaderText = "缺陷编码(全)";
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn9
- //
- this.dataGridViewTextBoxColumn9.DataPropertyName = "defectname";
- this.dataGridViewTextBoxColumn9.HeaderText = "缺陷名称";
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.DataPropertyName = "DefectRemarks";
- this.dataGridViewTextBoxColumn10.HeaderText = "缺陷备注";
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.DataPropertyName = "DefectPositionCode";
- this.dataGridViewTextBoxColumn11.HeaderText = "缺陷位置编码";
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.DataPropertyName = "DefectPositionName";
- this.dataGridViewTextBoxColumn12.HeaderText = "缺陷位置名称";
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn13
- //
- this.dataGridViewTextBoxColumn13.DataPropertyName = "DefectFineCode";
- dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn13.DefaultCellStyle = dataGridViewCellStyle16;
- this.dataGridViewTextBoxColumn13.HeaderText = "缺陷扣罚";
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn14
- //
- this.dataGridViewTextBoxColumn14.DataPropertyName = "DefectDeductionNum";
- dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn14.DefaultCellStyle = dataGridViewCellStyle17;
- this.dataGridViewTextBoxColumn14.HeaderText = "缺陷扣除数";
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
- this.dataGridViewTextBoxColumn14.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn15
- //
- this.dataGridViewTextBoxColumn15.DataPropertyName = "UserCode";
- this.dataGridViewTextBoxColumn15.HeaderText = "检验工号";
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- this.dataGridViewTextBoxColumn15.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn16
- //
- this.dataGridViewTextBoxColumn16.DataPropertyName = "Goodstypename";
- this.dataGridViewTextBoxColumn16.HeaderText = "产品类别";
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- this.dataGridViewTextBoxColumn16.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn17
- //
- this.dataGridViewTextBoxColumn17.DataPropertyName = "goodscode";
- this.dataGridViewTextBoxColumn17.HeaderText = "产品编码";
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
- this.dataGridViewTextBoxColumn17.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn18
- //
- this.dataGridViewTextBoxColumn18.DataPropertyName = "barcode";
- this.dataGridViewTextBoxColumn18.HeaderText = "产品条码";
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn19
- //
- this.dataGridViewTextBoxColumn19.DataPropertyName = "LogoCodeName";
- this.dataGridViewTextBoxColumn19.HeaderText = "商标";
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn20
- //
- this.dataGridViewTextBoxColumn20.DataPropertyName = "Goodsleveltype";
- this.dataGridViewTextBoxColumn20.HeaderText = "产品分级";
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
- this.dataGridViewTextBoxColumn20.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn21
- //
- this.dataGridViewTextBoxColumn21.DataPropertyName = "GroutingUserCode";
- this.dataGridViewTextBoxColumn21.HeaderText = "成型工号";
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn22
- //
- this.dataGridViewTextBoxColumn22.DataPropertyName = "groutingdate";
- this.dataGridViewTextBoxColumn22.HeaderText = "注浆日期";
- this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
- this.dataGridViewTextBoxColumn22.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn23
- //
- this.dataGridViewTextBoxColumn23.DataPropertyName = "groutingnum";
- this.dataGridViewTextBoxColumn23.HeaderText = "注浆次数";
- this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
- this.dataGridViewTextBoxColumn23.ReadOnly = true;
- //
- // czGroutingLineCode
- //
- this.czGroutingLineCode.DataPropertyName = "GroutingLineCode";
- this.czGroutingLineCode.HeaderText = "成型线编码";
- this.czGroutingLineCode.Name = "czGroutingLineCode";
- this.czGroutingLineCode.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn24
- //
- this.dataGridViewTextBoxColumn24.DataPropertyName = "groutingMouldCode";
- this.dataGridViewTextBoxColumn24.HeaderText = "模具编号";
- this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
- this.dataGridViewTextBoxColumn24.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn25
- //
- this.dataGridViewTextBoxColumn25.DataPropertyName = "KilnCarCode";
- this.dataGridViewTextBoxColumn25.HeaderText = "窑车编号";
- this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
- this.dataGridViewTextBoxColumn25.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn26
- //
- this.dataGridViewTextBoxColumn26.DataPropertyName = "workUsercodes";
- this.dataGridViewTextBoxColumn26.HeaderText = "生产工号";
- this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
- this.dataGridViewTextBoxColumn26.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn27
- //
- this.dataGridViewTextBoxColumn27.DataPropertyName = "CreateUserCodes";
- this.dataGridViewTextBoxColumn27.HeaderText = "操作工号";
- this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
- this.dataGridViewTextBoxColumn27.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn28
- //
- this.dataGridViewTextBoxColumn28.DataPropertyName = "HandOverTime";
- dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle18.Format = "yyyy-MM-dd HH:mm:ss";
- this.dataGridViewTextBoxColumn28.DefaultCellStyle = dataGridViewCellStyle18;
- this.dataGridViewTextBoxColumn28.HeaderText = "交接时间";
- this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
- this.dataGridViewTextBoxColumn28.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn1
- //
- this.dataGridViewCheckBoxColumn1.DataPropertyName = "undoflag";
- this.dataGridViewCheckBoxColumn1.FalseValue = "0";
- this.dataGridViewCheckBoxColumn1.HeaderText = "改判标识";
- this.dataGridViewCheckBoxColumn1.IndeterminateValue = "";
- this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
- this.dataGridViewCheckBoxColumn1.ReadOnly = true;
- this.dataGridViewCheckBoxColumn1.TrueValue = "1";
- //
- // barcodeRemarks3
- //
- this.barcodeRemarks3.DataPropertyName = "barcodeRemarks";
- this.barcodeRemarks3.HeaderText = "产品备注";
- this.barcodeRemarks3.Name = "barcodeRemarks3";
- this.barcodeRemarks3.ReadOnly = true;
- //
- // bsqx
- //
- this.bsqx.DataPropertyName = "bsqx";
- this.bsqx.HeaderText = "本烧缺陷";
- this.bsqx.Name = "bsqx";
- this.bsqx.ReadOnly = true;
- //
- // F_RPT_030106
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1174, 417);
- this.Controls.Add(this.tblReportModule);
- this.Controls.Add(this.gbxCondition);
- this.Controls.Add(this.tsrOperate);
- this.Name = "F_RPT_030106";
- this.Text = "成检缺陷汇总表";
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_RPT_030106_FormClosed);
- this.Load += new System.EventHandler(this.F_RPT_030106_Load);
- this.tsrOperate.ResumeLayout(false);
- this.tsrOperate.PerformLayout();
- this.gbxCondition.ResumeLayout(false);
- this.gbxCondition.PerformLayout();
- this.tblReportModule.ResumeLayout(false);
- this.tapReportModule.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvReportModule)).EndInit();
- this.tapReportModuleDetail.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvReportModuleDetail)).EndInit();
- this.tapDefectDetail.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvDefectDetail)).EndInit();
- this.tabProDetail.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvProDetail)).EndInit();
- this.panel1.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private Basics.BaseControls.C_ToolStrip tsrOperate;
- private System.Windows.Forms.ToolStripButton tsbtnAdaptive;
- private System.Windows.Forms.ToolStripButton tsbtnClose;
- private Basics.BaseControls.C_GroupBox gbxCondition;
- private Basics.BaseControls.C_Label lblAccountDateEnd;
- private Basics.BaseControls.C_DateTimePicker dtpAccountDateEnd;
- private Basics.BaseControls.C_DateTimePicker dtpAccountDateStart;
- private System.Windows.Forms.TabControl tblReportModule;
- private System.Windows.Forms.TabPage tapReportModule;
- private System.Windows.Forms.TabPage tapReportModuleDetail;
- private Basics.BaseControls.C_DataGridView dgvReportModule;
- private Controls.SearchTextBox.dkproductionLineSearchBox dkproductionLineSearchBox;
- private Controls.SearchTextBox.dkProcedureSearchBox dkProcedureSearchBox;
- private Basics.BaseControls.C_DataGridView dgvReportModuleDetail;
- private Basics.BaseControls.C_Button btnClearCondition;
- private Basics.BaseControls.C_Button btnSearch;
- private Controls.SearchTextBox.dkDefectTypeNameSearchBox dkDefectTypeNameSearchBox1;
- private Basics.BaseControls.C_Label lblDefectUserCode;
- private Basics.BaseControls.C_TextBox txtDefectUserCode;
- private Basics.BaseControls.C_Label lblUserCode;
- private Basics.BaseControls.C_TextBox txtCheckUserCode;
- private Basics.BaseControls.C_TextBox txtDefectCode;
- private Basics.BaseControls.C_Label lblDefectCode;
- private Basics.BaseControls.C_Label lblDefectName;
- private Basics.BaseControls.C_Label c_Label1;
- private Basics.BaseControls.C_TextBox txtGoodsCode;
- private Controls.SearchTextBox.dkProcedureSearchBox dkCompleteProcedure;
- private Basics.BaseControls.C_DateTimePicker dtpCompleteDateEnd;
- private Basics.BaseControls.C_DateTimePicker dtpCompleteDateStart;
- private Basics.BaseControls.C_TextBox txtDefectName;
- private System.Windows.Forms.DataGridViewTextBoxColumn ProductionLineName;
- private System.Windows.Forms.DataGridViewTextBoxColumn ProcedureName;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectProcedureName;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectTypeName;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectName;
- private System.Windows.Forms.DataGridViewTextBoxColumn Usercode1;
- private System.Windows.Forms.DataGridViewTextBoxColumn Goodstypename;
- private System.Windows.Forms.DataGridViewTextBoxColumn Goodscode;
- private System.Windows.Forms.DataGridViewTextBoxColumn InCount;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectProcedureID;
- private System.Windows.Forms.DataGridViewTextBoxColumn ProcedureID;
- private Basics.BaseControls.C_TextBox txtKilnCode;
- private Basics.BaseControls.C_Label c_Label3;
- private Controls.SearchTextBox.dkProcedureSearchBox dkCheckProcedureSearchBox;
- private Basics.BaseControls.C_ComboBox dropRptProcedure;
- private Basics.BaseControls.C_Label c_Label4;
- private Basics.BaseControls.C_CheckBox chkCdate;
- private Basics.BaseControls.C_CheckBox chkHandOver;
- private Basics.BaseControls.C_Label c_Label2;
- private Basics.BaseControls.C_DateTimePicker dtpHandOverEnd;
- private Basics.BaseControls.C_DateTimePicker dtpHandOverStart;
- private System.Windows.Forms.TabPage tapDefectDetail;
- private Basics.BaseControls.C_DataGridView dgvDefectDetail;
- private Basics.BaseControls.C_CheckBox chkCheckDate;
- private Basics.BaseControls.C_Label c_Label5;
- private Basics.BaseControls.C_DateTimePicker dtpCheckDateEnd;
- private Basics.BaseControls.C_DateTimePicker dtpCheckDateStart;
- private System.Windows.Forms.TabPage tabProDetail;
- private Basics.BaseControls.C_DataGridView dgvProDetail;
- private System.Windows.Forms.Panel panel1;
- private Controls.SearchTextBox.dkProcedureSearchBox dkProcedureSearchBox1;
- private Basics.BaseControls.C_Label lblGoodsType;
- private Controls.SearchBox.ScbGoodsType scbGoodsType;
- private Controls.SearchBox.ScbGoods scbGoods;
- private Basics.BaseControls.C_Label lblGoods;
- private System.Windows.Forms.DataGridViewTextBoxColumn productionlinename1;
- private System.Windows.Forms.DataGridViewTextBoxColumn procedurename2;
- private System.Windows.Forms.DataGridViewTextBoxColumn CreateTime;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectProcedureName2;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectUserCode2;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectTypeName2;
- private System.Windows.Forms.DataGridViewTextBoxColumn defectcode2;
- private System.Windows.Forms.DataGridViewTextBoxColumn alldefectcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn defectnam2;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectRemarks;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectPositionCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectPositionName;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectFineCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectDeductionNum;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserCode2;
- private System.Windows.Forms.DataGridViewTextBoxColumn Goodstypename2;
- private System.Windows.Forms.DataGridViewTextBoxColumn goodscode2;
- private System.Windows.Forms.DataGridViewTextBoxColumn barcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn LogoCodeName;
- private System.Windows.Forms.DataGridViewTextBoxColumn Goodsleveltype;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingUserCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn groutingdate;
- private System.Windows.Forms.DataGridViewTextBoxColumn groutingnum;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn groutingMouldCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn KilnCarCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn workUsercodes;
- private System.Windows.Forms.DataGridViewTextBoxColumn CreateUserCodes;
- private System.Windows.Forms.DataGridViewTextBoxColumn HandOverTime;
- private System.Windows.Forms.DataGridViewCheckBoxColumn undoflag;
- private System.Windows.Forms.DataGridViewCheckBoxColumn reworkflag;
- private System.Windows.Forms.DataGridViewTextBoxColumn glazingroom;
- private System.Windows.Forms.DataGridViewTextBoxColumn protime;
- private System.Windows.Forms.DataGridViewTextBoxColumn proname;
- private System.Windows.Forms.DataGridViewTextBoxColumn g4KILNCARCODE;
- private System.Windows.Forms.DataGridViewTextBoxColumn prousercode;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn40;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn41;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn42;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn43;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn44;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn45;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn46;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn48;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn47;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn49;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn50;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn51;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn52;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn53;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn54;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn55;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn56;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn57;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn58;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn59;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn60;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private System.Windows.Forms.DataGridViewTextBoxColumn CheckTime;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
- private System.Windows.Forms.DataGridViewTextBoxColumn DefectStaffNames3;
- private System.Windows.Forms.DataGridViewTextBoxColumn defectjobsname;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
- private System.Windows.Forms.DataGridViewTextBoxColumn czGroutingLineCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
- private System.Windows.Forms.DataGridViewTextBoxColumn barcodeRemarks3;
- private System.Windows.Forms.DataGridViewTextBoxColumn bsqx;
- }
- }
|