F_RPT_030112.Designer.cs 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  1. namespace Dongke.IBOSS.PRD.Client.ReportModule
  2. {
  3. partial class F_RPT_030112
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  46. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  47. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
  48. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  49. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
  50. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
  51. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  52. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
  53. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
  54. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
  55. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
  56. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
  57. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
  58. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_RPT_030112));
  59. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
  60. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
  61. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  62. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  63. this.tblScrapTotalModule = new System.Windows.Forms.TabControl();
  64. this.tapScrapTotalModule = new System.Windows.Forms.TabPage();
  65. this.dgvOrder = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  66. this.orderno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  67. this.logoname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  68. this.g1goodscode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  69. this.goodsmodel = new System.Windows.Forms.DataGridViewTextBoxColumn();
  70. this.g1mcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  71. this.g1mremark = new System.Windows.Forms.DataGridViewTextBoxColumn();
  72. this.fhusercode_summary = new System.Windows.Forms.DataGridViewTextBoxColumn();
  73. this.fhtime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  74. this.count = new System.Windows.Forms.DataGridViewTextBoxColumn();
  75. this.logoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
  76. this.goodsid = new System.Windows.Forms.DataGridViewTextBoxColumn();
  77. this.orderid = new System.Windows.Forms.DataGridViewTextBoxColumn();
  78. this.tapScrapTotalModuleDetail = new System.Windows.Forms.TabPage();
  79. this.dgvOrderDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  80. this.OrderNo1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  81. this.FHTime1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  82. this.FHUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  83. this.BarCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  84. this.FinishedBarCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  85. this.SecurityCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  86. this.GoodsCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  87. this.g2goodsmodel = new System.Windows.Forms.DataGridViewTextBoxColumn();
  88. this.g2mcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  89. this.g2mremark = new System.Windows.Forms.DataGridViewTextBoxColumn();
  90. this.LogoName1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  91. this.GroutingUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  92. this.GroutingMouldCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  93. this.GroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  94. this.GroutingDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  95. this.DeliverTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  96. this.ProductFinishedTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  97. this.TestMouldFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  98. this.tapTotalNum = new System.Windows.Forms.TabPage();
  99. this.dgvNum = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  100. this.coldate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  101. this.collogoname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  102. this.colgoodscode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  103. this.g3goodsmodel = new System.Windows.Forms.DataGridViewTextBoxColumn();
  104. this.g3mcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  105. this.g3mremark = new System.Windows.Forms.DataGridViewTextBoxColumn();
  106. this.fhusercode_number = new System.Windows.Forms.DataGridViewTextBoxColumn();
  107. this.colgoodscount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  108. this.tabPage1 = new System.Windows.Forms.TabPage();
  109. this.dgvGoodsNum = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  110. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  111. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  112. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  113. this.g4mremark = new System.Windows.Forms.DataGridViewTextBoxColumn();
  114. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  115. this.taptemp = new System.Windows.Forms.TabPage();
  116. this.dgvtemporarily = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  117. this.tapLuoCi = new System.Windows.Forms.TabPage();
  118. this.dgvlc = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  119. this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  120. this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  121. this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  122. this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  123. this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  124. this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  125. this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  126. this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  127. this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  128. this.tapLuoCiDetail = new System.Windows.Forms.TabPage();
  129. this.dgvlcDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  130. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  131. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  132. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  133. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  134. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  135. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  136. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  137. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  138. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  139. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  140. this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  141. this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  142. this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  143. this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  144. this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  145. this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  146. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  147. this.tsrOperate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ToolStrip();
  148. this.tsbtnAdaptive = new System.Windows.Forms.ToolStripButton();
  149. this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
  150. this.tsbtnSynLog = new System.Windows.Forms.ToolStripButton();
  151. this.gbxCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_GroupBox();
  152. this.chkTemporarilyFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_StatusCheckBox();
  153. this.txtBarcode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  154. this.c_Label2 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  155. this.btnClearCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  156. this.chkTestMouldFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_StatusCheckBox();
  157. this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  158. this.lblGoodsType = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  159. this.scbGoodsType = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoodsType();
  160. this.txtOrderNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  161. this.dkLogoSearchBox1 = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkLogoSearchBox();
  162. this.chkDateTime = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  163. this.lblAccountDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  164. this.dtpEndTime = new System.Windows.Forms.DateTimePicker();
  165. this.dtpStartTime = new System.Windows.Forms.DateTimePicker();
  166. this.btnSearch = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  167. this.txtFHUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Code();
  168. this.txtGoodsModel = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  169. this.txtGoodsCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  170. this.lblFHUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  171. this.lblGoodsModel = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  172. this.lblOrderNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  173. this.Sel = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  174. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  175. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  176. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  177. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  178. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  179. this.BANMA = new System.Windows.Forms.DataGridViewTextBoxColumn();
  180. this.FINISHEDLOADBATCHNO = new System.Windows.Forms.DataGridViewTextBoxColumn();
  181. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  182. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  183. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  184. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  185. this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  186. this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  187. this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  188. this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  189. this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  190. this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  191. this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  192. this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  193. this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  194. this.tblScrapTotalModule.SuspendLayout();
  195. this.tapScrapTotalModule.SuspendLayout();
  196. ((System.ComponentModel.ISupportInitialize)(this.dgvOrder)).BeginInit();
  197. this.tapScrapTotalModuleDetail.SuspendLayout();
  198. ((System.ComponentModel.ISupportInitialize)(this.dgvOrderDetail)).BeginInit();
  199. this.tapTotalNum.SuspendLayout();
  200. ((System.ComponentModel.ISupportInitialize)(this.dgvNum)).BeginInit();
  201. this.tabPage1.SuspendLayout();
  202. ((System.ComponentModel.ISupportInitialize)(this.dgvGoodsNum)).BeginInit();
  203. this.taptemp.SuspendLayout();
  204. ((System.ComponentModel.ISupportInitialize)(this.dgvtemporarily)).BeginInit();
  205. this.tapLuoCi.SuspendLayout();
  206. ((System.ComponentModel.ISupportInitialize)(this.dgvlc)).BeginInit();
  207. this.tapLuoCiDetail.SuspendLayout();
  208. ((System.ComponentModel.ISupportInitialize)(this.dgvlcDetail)).BeginInit();
  209. this.tsrOperate.SuspendLayout();
  210. this.gbxCondition.SuspendLayout();
  211. this.SuspendLayout();
  212. //
  213. // tblScrapTotalModule
  214. //
  215. this.tblScrapTotalModule.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  216. | System.Windows.Forms.AnchorStyles.Left)
  217. | System.Windows.Forms.AnchorStyles.Right)));
  218. this.tblScrapTotalModule.Controls.Add(this.tapScrapTotalModule);
  219. this.tblScrapTotalModule.Controls.Add(this.tapScrapTotalModuleDetail);
  220. this.tblScrapTotalModule.Controls.Add(this.tapTotalNum);
  221. this.tblScrapTotalModule.Controls.Add(this.tabPage1);
  222. this.tblScrapTotalModule.Controls.Add(this.taptemp);
  223. this.tblScrapTotalModule.Controls.Add(this.tapLuoCi);
  224. this.tblScrapTotalModule.Controls.Add(this.tapLuoCiDetail);
  225. this.tblScrapTotalModule.Location = new System.Drawing.Point(0, 109);
  226. this.tblScrapTotalModule.Margin = new System.Windows.Forms.Padding(0);
  227. this.tblScrapTotalModule.Name = "tblScrapTotalModule";
  228. this.tblScrapTotalModule.Padding = new System.Drawing.Point(0, 0);
  229. this.tblScrapTotalModule.SelectedIndex = 0;
  230. this.tblScrapTotalModule.Size = new System.Drawing.Size(1151, 427);
  231. this.tblScrapTotalModule.TabIndex = 2;
  232. //
  233. // tapScrapTotalModule
  234. //
  235. this.tapScrapTotalModule.Controls.Add(this.dgvOrder);
  236. this.tapScrapTotalModule.Location = new System.Drawing.Point(4, 22);
  237. this.tapScrapTotalModule.Margin = new System.Windows.Forms.Padding(0);
  238. this.tapScrapTotalModule.Name = "tapScrapTotalModule";
  239. this.tapScrapTotalModule.Size = new System.Drawing.Size(1143, 401);
  240. this.tapScrapTotalModule.TabIndex = 0;
  241. this.tapScrapTotalModule.Text = "产成品交接汇总表";
  242. this.tapScrapTotalModule.UseVisualStyleBackColor = true;
  243. //
  244. // dgvOrder
  245. //
  246. this.dgvOrder.AllowUserToAddRows = false;
  247. this.dgvOrder.AllowUserToDeleteRows = false;
  248. this.dgvOrder.AllowUserToModifyRows = true;
  249. this.dgvOrder.AllowUserToOrderColumns = true;
  250. this.dgvOrder.AllowUserToSortRows = false;
  251. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  252. this.dgvOrder.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  253. this.dgvOrder.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  254. this.dgvOrder.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  255. this.dgvOrder.CellHeight = 23;
  256. this.dgvOrder.ChildNodeColumnName = null;
  257. this.dgvOrder.ChildNodeColumnText = null;
  258. this.dgvOrder.ColumnDeep = 1;
  259. this.dgvOrder.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  260. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  261. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  262. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  263. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  264. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  265. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  266. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  267. this.dgvOrder.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  268. this.dgvOrder.ColumnHeadersHeight = 34;
  269. this.dgvOrder.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  270. this.dgvOrder.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  271. this.orderno,
  272. this.logoname,
  273. this.g1goodscode,
  274. this.goodsmodel,
  275. this.g1mcode,
  276. this.g1mremark,
  277. this.fhusercode_summary,
  278. this.fhtime,
  279. this.count,
  280. this.logoid,
  281. this.goodsid,
  282. this.orderid});
  283. this.dgvOrder.ColumnTreeView = null;
  284. this.dgvOrder.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)));
  285. this.dgvOrder.Dock = System.Windows.Forms.DockStyle.Fill;
  286. this.dgvOrder.DynamicColumnName = "";
  287. this.dgvOrder.EnableHeadersVisualStyles = false;
  288. this.dgvOrder.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  289. this.dgvOrder.FormatQuantityColumns = null;
  290. this.dgvOrder.HasNode = false;
  291. this.dgvOrder.HorizontalMergeColumn = null;
  292. this.dgvOrder.IsAutoCountSum = true;
  293. this.dgvOrder.IsAutoResizeColumns = false;
  294. this.dgvOrder.IsClickF12 = false;
  295. this.dgvOrder.IsOpenMergeCellFlag = false;
  296. this.dgvOrder.IsSubTotalFlag = false;
  297. this.dgvOrder.IsTopDeep = false;
  298. this.dgvOrder.Location = new System.Drawing.Point(0, 0);
  299. this.dgvOrder.Margin = new System.Windows.Forms.Padding(0);
  300. this.dgvOrder.MergeColumnNames = null;
  301. this.dgvOrder.MergeDetailColumnNames = null;
  302. this.dgvOrder.MergeDetailOnlyColumn = null;
  303. this.dgvOrder.MergeOnlyColumn = null;
  304. this.dgvOrder.MultiSelect = false;
  305. this.dgvOrder.Name = "dgvOrder";
  306. this.dgvOrder.ReadOnly = true;
  307. this.dgvOrder.RefreshAtHscroll = false;
  308. this.dgvOrder.RowHeadersWidth = 50;
  309. this.dgvOrder.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  310. dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  311. this.dgvOrder.RowsDefaultCellStyle = dataGridViewCellStyle5;
  312. this.dgvOrder.RowTemplate.Height = 21;
  313. this.dgvOrder.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  314. this.dgvOrder.Size = new System.Drawing.Size(1143, 401);
  315. this.dgvOrder.SortOrderColumnName = null;
  316. this.dgvOrder.TabIndex = 0;
  317. this.dgvOrder.Tag = true;
  318. this.dgvOrder.TotalSumColumns = null;
  319. this.dgvOrder.ViewRowFilter = "";
  320. this.dgvOrder.VirtualNodes = false;
  321. this.dgvOrder.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvScrapTotalModule_CellDoubleClick);
  322. //
  323. // orderno
  324. //
  325. this.orderno.DataPropertyName = "orderno";
  326. this.orderno.HeaderText = "生产订单";
  327. this.orderno.MinimumWidth = 8;
  328. this.orderno.Name = "orderno";
  329. this.orderno.ReadOnly = true;
  330. this.orderno.Width = 150;
  331. //
  332. // logoname
  333. //
  334. this.logoname.DataPropertyName = "logoname";
  335. this.logoname.HeaderText = "产品商标";
  336. this.logoname.MinimumWidth = 8;
  337. this.logoname.Name = "logoname";
  338. this.logoname.ReadOnly = true;
  339. this.logoname.Width = 150;
  340. //
  341. // g1goodscode
  342. //
  343. this.g1goodscode.DataPropertyName = "goodscode";
  344. this.g1goodscode.HeaderText = "产品编码";
  345. this.g1goodscode.MinimumWidth = 8;
  346. this.g1goodscode.Name = "g1goodscode";
  347. this.g1goodscode.ReadOnly = true;
  348. this.g1goodscode.Width = 150;
  349. //
  350. // goodsmodel
  351. //
  352. this.goodsmodel.DataPropertyName = "goodsmodel";
  353. this.goodsmodel.HeaderText = "产品型号";
  354. this.goodsmodel.MinimumWidth = 8;
  355. this.goodsmodel.Name = "goodsmodel";
  356. this.goodsmodel.ReadOnly = true;
  357. this.goodsmodel.Width = 150;
  358. //
  359. // g1mcode
  360. //
  361. this.g1mcode.DataPropertyName = "mcode";
  362. this.g1mcode.HeaderText = "物料编码";
  363. this.g1mcode.MinimumWidth = 8;
  364. this.g1mcode.Name = "g1mcode";
  365. this.g1mcode.ReadOnly = true;
  366. this.g1mcode.Width = 150;
  367. //
  368. // g1mremark
  369. //
  370. this.g1mremark.DataPropertyName = "mremark";
  371. this.g1mremark.HeaderText = "物料描述";
  372. this.g1mremark.MinimumWidth = 8;
  373. this.g1mremark.Name = "g1mremark";
  374. this.g1mremark.ReadOnly = true;
  375. this.g1mremark.Width = 150;
  376. //
  377. // fhusercode_summary
  378. //
  379. this.fhusercode_summary.DataPropertyName = "fhusercode_summary";
  380. this.fhusercode_summary.HeaderText = "交接工号";
  381. this.fhusercode_summary.MinimumWidth = 8;
  382. this.fhusercode_summary.Name = "fhusercode_summary";
  383. this.fhusercode_summary.ReadOnly = true;
  384. this.fhusercode_summary.Width = 150;
  385. //
  386. // fhtime
  387. //
  388. this.fhtime.DataPropertyName = "fhtime";
  389. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  390. dataGridViewCellStyle3.Format = "yyyy-MM-dd ";
  391. this.fhtime.DefaultCellStyle = dataGridViewCellStyle3;
  392. this.fhtime.HeaderText = "交接日期";
  393. this.fhtime.MinimumWidth = 8;
  394. this.fhtime.Name = "fhtime";
  395. this.fhtime.ReadOnly = true;
  396. this.fhtime.Visible = false;
  397. this.fhtime.Width = 150;
  398. //
  399. // count
  400. //
  401. this.count.DataPropertyName = "count";
  402. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  403. this.count.DefaultCellStyle = dataGridViewCellStyle4;
  404. this.count.HeaderText = "产品数量";
  405. this.count.MinimumWidth = 8;
  406. this.count.Name = "count";
  407. this.count.ReadOnly = true;
  408. this.count.Width = 150;
  409. //
  410. // logoid
  411. //
  412. this.logoid.DataPropertyName = "logoid";
  413. this.logoid.HeaderText = "logoid";
  414. this.logoid.MinimumWidth = 8;
  415. this.logoid.Name = "logoid";
  416. this.logoid.ReadOnly = true;
  417. this.logoid.Visible = false;
  418. this.logoid.Width = 150;
  419. //
  420. // goodsid
  421. //
  422. this.goodsid.HeaderText = "goodsid";
  423. this.goodsid.MinimumWidth = 8;
  424. this.goodsid.Name = "goodsid";
  425. this.goodsid.ReadOnly = true;
  426. this.goodsid.Visible = false;
  427. this.goodsid.Width = 150;
  428. //
  429. // orderid
  430. //
  431. this.orderid.HeaderText = "orderid";
  432. this.orderid.MinimumWidth = 8;
  433. this.orderid.Name = "orderid";
  434. this.orderid.ReadOnly = true;
  435. this.orderid.Visible = false;
  436. this.orderid.Width = 150;
  437. //
  438. // tapScrapTotalModuleDetail
  439. //
  440. this.tapScrapTotalModuleDetail.Controls.Add(this.dgvOrderDetail);
  441. this.tapScrapTotalModuleDetail.Location = new System.Drawing.Point(4, 22);
  442. this.tapScrapTotalModuleDetail.Margin = new System.Windows.Forms.Padding(0);
  443. this.tapScrapTotalModuleDetail.Name = "tapScrapTotalModuleDetail";
  444. this.tapScrapTotalModuleDetail.Size = new System.Drawing.Size(1143, 401);
  445. this.tapScrapTotalModuleDetail.TabIndex = 1;
  446. this.tapScrapTotalModuleDetail.Text = "产成品交接明细表";
  447. this.tapScrapTotalModuleDetail.UseVisualStyleBackColor = true;
  448. //
  449. // dgvOrderDetail
  450. //
  451. this.dgvOrderDetail.AllowUserToAddRows = false;
  452. this.dgvOrderDetail.AllowUserToDeleteRows = false;
  453. this.dgvOrderDetail.AllowUserToModifyRows = true;
  454. this.dgvOrderDetail.AllowUserToOrderColumns = true;
  455. this.dgvOrderDetail.AllowUserToSortRows = false;
  456. dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  457. this.dgvOrderDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle6;
  458. this.dgvOrderDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  459. this.dgvOrderDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  460. this.dgvOrderDetail.CellHeight = 23;
  461. this.dgvOrderDetail.ChildNodeColumnName = null;
  462. this.dgvOrderDetail.ChildNodeColumnText = null;
  463. this.dgvOrderDetail.ColumnDeep = 1;
  464. this.dgvOrderDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  465. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  466. dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  467. dataGridViewCellStyle7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  468. dataGridViewCellStyle7.ForeColor = System.Drawing.Color.White;
  469. dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  470. dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  471. dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  472. this.dgvOrderDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
  473. this.dgvOrderDetail.ColumnHeadersHeight = 34;
  474. this.dgvOrderDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  475. this.dgvOrderDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  476. this.OrderNo1,
  477. this.FHTime1,
  478. this.FHUserCode,
  479. this.BarCode,
  480. this.FinishedBarCode,
  481. this.SecurityCode,
  482. this.GoodsCode,
  483. this.g2goodsmodel,
  484. this.g2mcode,
  485. this.g2mremark,
  486. this.LogoName1,
  487. this.GroutingUserCode,
  488. this.GroutingMouldCode,
  489. this.GroutingLineCode,
  490. this.GroutingDate,
  491. this.DeliverTime,
  492. this.ProductFinishedTime,
  493. this.TestMouldFlag});
  494. this.dgvOrderDetail.ColumnTreeView = null;
  495. this.dgvOrderDetail.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)));
  496. this.dgvOrderDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  497. this.dgvOrderDetail.DynamicColumnName = "";
  498. this.dgvOrderDetail.EnableHeadersVisualStyles = false;
  499. this.dgvOrderDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  500. this.dgvOrderDetail.FormatQuantityColumns = null;
  501. this.dgvOrderDetail.HasNode = false;
  502. this.dgvOrderDetail.HorizontalMergeColumn = null;
  503. this.dgvOrderDetail.IsAutoCountSum = true;
  504. this.dgvOrderDetail.IsAutoResizeColumns = false;
  505. this.dgvOrderDetail.IsClickF12 = false;
  506. this.dgvOrderDetail.IsOpenMergeCellFlag = false;
  507. this.dgvOrderDetail.IsSubTotalFlag = false;
  508. this.dgvOrderDetail.IsTopDeep = false;
  509. this.dgvOrderDetail.Location = new System.Drawing.Point(0, 0);
  510. this.dgvOrderDetail.Margin = new System.Windows.Forms.Padding(0);
  511. this.dgvOrderDetail.MergeColumnNames = null;
  512. this.dgvOrderDetail.MergeDetailColumnNames = null;
  513. this.dgvOrderDetail.MergeDetailOnlyColumn = null;
  514. this.dgvOrderDetail.MergeOnlyColumn = null;
  515. this.dgvOrderDetail.MultiSelect = false;
  516. this.dgvOrderDetail.Name = "dgvOrderDetail";
  517. this.dgvOrderDetail.ReadOnly = true;
  518. this.dgvOrderDetail.RefreshAtHscroll = false;
  519. this.dgvOrderDetail.RowHeadersWidth = 50;
  520. this.dgvOrderDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  521. dataGridViewCellStyle12.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  522. this.dgvOrderDetail.RowsDefaultCellStyle = dataGridViewCellStyle12;
  523. this.dgvOrderDetail.RowTemplate.Height = 21;
  524. this.dgvOrderDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  525. this.dgvOrderDetail.Size = new System.Drawing.Size(1143, 401);
  526. this.dgvOrderDetail.SortOrderColumnName = null;
  527. this.dgvOrderDetail.TabIndex = 0;
  528. this.dgvOrderDetail.Tag = true;
  529. this.dgvOrderDetail.TotalSumColumns = null;
  530. this.dgvOrderDetail.ViewRowFilter = "";
  531. this.dgvOrderDetail.VirtualNodes = false;
  532. //
  533. // OrderNo1
  534. //
  535. this.OrderNo1.DataPropertyName = "OrderNo";
  536. this.OrderNo1.HeaderText = "生产订单";
  537. this.OrderNo1.MinimumWidth = 8;
  538. this.OrderNo1.Name = "OrderNo1";
  539. this.OrderNo1.ReadOnly = true;
  540. this.OrderNo1.Width = 150;
  541. //
  542. // FHTime1
  543. //
  544. this.FHTime1.DataPropertyName = "FHTime";
  545. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  546. dataGridViewCellStyle8.Format = "yyyy-MM-dd HH:mm:ss";
  547. this.FHTime1.DefaultCellStyle = dataGridViewCellStyle8;
  548. this.FHTime1.HeaderText = "交接时间";
  549. this.FHTime1.MinimumWidth = 8;
  550. this.FHTime1.Name = "FHTime1";
  551. this.FHTime1.ReadOnly = true;
  552. this.FHTime1.Width = 150;
  553. //
  554. // FHUserCode
  555. //
  556. this.FHUserCode.DataPropertyName = "FHUserCode";
  557. this.FHUserCode.HeaderText = "交接工号";
  558. this.FHUserCode.MinimumWidth = 8;
  559. this.FHUserCode.Name = "FHUserCode";
  560. this.FHUserCode.ReadOnly = true;
  561. this.FHUserCode.Width = 150;
  562. //
  563. // BarCode
  564. //
  565. this.BarCode.DataPropertyName = "BarCode";
  566. this.BarCode.HeaderText = "产品条码";
  567. this.BarCode.MinimumWidth = 8;
  568. this.BarCode.Name = "BarCode";
  569. this.BarCode.ReadOnly = true;
  570. this.BarCode.Width = 150;
  571. //
  572. // FinishedBarCode
  573. //
  574. this.FinishedBarCode.DataPropertyName = "FinishedBarCode";
  575. this.FinishedBarCode.HeaderText = "包装条码";
  576. this.FinishedBarCode.MinimumWidth = 8;
  577. this.FinishedBarCode.Name = "FinishedBarCode";
  578. this.FinishedBarCode.ReadOnly = true;
  579. this.FinishedBarCode.Width = 150;
  580. //
  581. // SecurityCode
  582. //
  583. this.SecurityCode.DataPropertyName = "SecurityCode";
  584. this.SecurityCode.HeaderText = "防伪码";
  585. this.SecurityCode.MinimumWidth = 8;
  586. this.SecurityCode.Name = "SecurityCode";
  587. this.SecurityCode.ReadOnly = true;
  588. this.SecurityCode.Width = 150;
  589. //
  590. // GoodsCode
  591. //
  592. this.GoodsCode.DataPropertyName = "GoodsCode";
  593. this.GoodsCode.HeaderText = "产品编码";
  594. this.GoodsCode.MinimumWidth = 8;
  595. this.GoodsCode.Name = "GoodsCode";
  596. this.GoodsCode.ReadOnly = true;
  597. this.GoodsCode.Width = 150;
  598. //
  599. // g2goodsmodel
  600. //
  601. this.g2goodsmodel.DataPropertyName = "goodsmodel";
  602. this.g2goodsmodel.HeaderText = "产品型号";
  603. this.g2goodsmodel.MinimumWidth = 8;
  604. this.g2goodsmodel.Name = "g2goodsmodel";
  605. this.g2goodsmodel.ReadOnly = true;
  606. this.g2goodsmodel.Width = 150;
  607. //
  608. // g2mcode
  609. //
  610. this.g2mcode.DataPropertyName = "mcode";
  611. this.g2mcode.HeaderText = "物料编码";
  612. this.g2mcode.MinimumWidth = 8;
  613. this.g2mcode.Name = "g2mcode";
  614. this.g2mcode.ReadOnly = true;
  615. this.g2mcode.Width = 150;
  616. //
  617. // g2mremark
  618. //
  619. this.g2mremark.DataPropertyName = "mremark";
  620. this.g2mremark.HeaderText = "物料描述";
  621. this.g2mremark.MinimumWidth = 8;
  622. this.g2mremark.Name = "g2mremark";
  623. this.g2mremark.ReadOnly = true;
  624. this.g2mremark.Width = 150;
  625. //
  626. // LogoName1
  627. //
  628. this.LogoName1.DataPropertyName = "LogoName";
  629. this.LogoName1.HeaderText = "产品商标";
  630. this.LogoName1.MinimumWidth = 8;
  631. this.LogoName1.Name = "LogoName1";
  632. this.LogoName1.ReadOnly = true;
  633. this.LogoName1.Width = 150;
  634. //
  635. // GroutingUserCode
  636. //
  637. this.GroutingUserCode.DataPropertyName = "GroutingUserCode";
  638. this.GroutingUserCode.HeaderText = "成型工号";
  639. this.GroutingUserCode.MinimumWidth = 8;
  640. this.GroutingUserCode.Name = "GroutingUserCode";
  641. this.GroutingUserCode.ReadOnly = true;
  642. this.GroutingUserCode.Width = 150;
  643. //
  644. // GroutingMouldCode
  645. //
  646. this.GroutingMouldCode.DataPropertyName = "GroutingMouldCode";
  647. this.GroutingMouldCode.HeaderText = "模具编号";
  648. this.GroutingMouldCode.MinimumWidth = 8;
  649. this.GroutingMouldCode.Name = "GroutingMouldCode";
  650. this.GroutingMouldCode.ReadOnly = true;
  651. this.GroutingMouldCode.Width = 150;
  652. //
  653. // GroutingLineCode
  654. //
  655. this.GroutingLineCode.DataPropertyName = "GroutingLineCode";
  656. this.GroutingLineCode.HeaderText = "成型线编码";
  657. this.GroutingLineCode.MinimumWidth = 8;
  658. this.GroutingLineCode.Name = "GroutingLineCode";
  659. this.GroutingLineCode.ReadOnly = true;
  660. this.GroutingLineCode.Width = 150;
  661. //
  662. // GroutingDate
  663. //
  664. this.GroutingDate.DataPropertyName = "GroutingDate";
  665. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  666. dataGridViewCellStyle9.Format = "yyyy-MM-dd ";
  667. this.GroutingDate.DefaultCellStyle = dataGridViewCellStyle9;
  668. this.GroutingDate.HeaderText = "注浆日期";
  669. this.GroutingDate.MinimumWidth = 8;
  670. this.GroutingDate.Name = "GroutingDate";
  671. this.GroutingDate.ReadOnly = true;
  672. this.GroutingDate.Width = 150;
  673. //
  674. // DeliverTime
  675. //
  676. this.DeliverTime.DataPropertyName = "DeliverTime";
  677. dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  678. dataGridViewCellStyle10.Format = "yyyy-MM-dd HH:mm:ss";
  679. this.DeliverTime.DefaultCellStyle = dataGridViewCellStyle10;
  680. this.DeliverTime.HeaderText = "交坯日期";
  681. this.DeliverTime.MinimumWidth = 8;
  682. this.DeliverTime.Name = "DeliverTime";
  683. this.DeliverTime.ReadOnly = true;
  684. this.DeliverTime.Width = 150;
  685. //
  686. // ProductFinishedTime
  687. //
  688. this.ProductFinishedTime.DataPropertyName = "ProductFinishedTime";
  689. dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  690. dataGridViewCellStyle11.Format = "yyyy-MM-dd HH:mm:ss";
  691. dataGridViewCellStyle11.NullValue = null;
  692. this.ProductFinishedTime.DefaultCellStyle = dataGridViewCellStyle11;
  693. this.ProductFinishedTime.HeaderText = "生产完成时间";
  694. this.ProductFinishedTime.MinimumWidth = 8;
  695. this.ProductFinishedTime.Name = "ProductFinishedTime";
  696. this.ProductFinishedTime.ReadOnly = true;
  697. this.ProductFinishedTime.Width = 150;
  698. //
  699. // TestMouldFlag
  700. //
  701. this.TestMouldFlag.DataPropertyName = "TestMouldFlag";
  702. this.TestMouldFlag.FalseValue = "0";
  703. this.TestMouldFlag.HeaderText = "试验标识";
  704. this.TestMouldFlag.IndeterminateValue = "0";
  705. this.TestMouldFlag.MinimumWidth = 8;
  706. this.TestMouldFlag.Name = "TestMouldFlag";
  707. this.TestMouldFlag.ReadOnly = true;
  708. this.TestMouldFlag.TrueValue = "1";
  709. this.TestMouldFlag.Width = 150;
  710. //
  711. // tapTotalNum
  712. //
  713. this.tapTotalNum.Controls.Add(this.dgvNum);
  714. this.tapTotalNum.Location = new System.Drawing.Point(4, 22);
  715. this.tapTotalNum.Name = "tapTotalNum";
  716. this.tapTotalNum.Size = new System.Drawing.Size(1143, 401);
  717. this.tapTotalNum.TabIndex = 2;
  718. this.tapTotalNum.Text = "产成品交接数量";
  719. this.tapTotalNum.UseVisualStyleBackColor = true;
  720. //
  721. // dgvNum
  722. //
  723. this.dgvNum.AllowUserToAddRows = false;
  724. this.dgvNum.AllowUserToDeleteRows = false;
  725. this.dgvNum.AllowUserToModifyRows = true;
  726. this.dgvNum.AllowUserToOrderColumns = true;
  727. this.dgvNum.AllowUserToSortRows = false;
  728. dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  729. this.dgvNum.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle13;
  730. this.dgvNum.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  731. this.dgvNum.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  732. this.dgvNum.CellHeight = 23;
  733. this.dgvNum.ChildNodeColumnName = null;
  734. this.dgvNum.ChildNodeColumnText = null;
  735. this.dgvNum.ColumnDeep = 1;
  736. this.dgvNum.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  737. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  738. dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  739. dataGridViewCellStyle14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  740. dataGridViewCellStyle14.ForeColor = System.Drawing.Color.White;
  741. dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  742. dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  743. dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  744. this.dgvNum.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle14;
  745. this.dgvNum.ColumnHeadersHeight = 34;
  746. this.dgvNum.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  747. this.dgvNum.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  748. this.coldate,
  749. this.collogoname,
  750. this.colgoodscode,
  751. this.g3goodsmodel,
  752. this.g3mcode,
  753. this.g3mremark,
  754. this.fhusercode_number,
  755. this.colgoodscount});
  756. this.dgvNum.ColumnTreeView = null;
  757. this.dgvNum.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)));
  758. this.dgvNum.Dock = System.Windows.Forms.DockStyle.Fill;
  759. this.dgvNum.DynamicColumnName = "";
  760. this.dgvNum.EnableHeadersVisualStyles = false;
  761. this.dgvNum.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  762. this.dgvNum.FormatQuantityColumns = null;
  763. this.dgvNum.HasNode = false;
  764. this.dgvNum.HorizontalMergeColumn = null;
  765. this.dgvNum.IsAutoCountSum = true;
  766. this.dgvNum.IsAutoResizeColumns = false;
  767. this.dgvNum.IsClickF12 = false;
  768. this.dgvNum.IsOpenMergeCellFlag = false;
  769. this.dgvNum.IsSubTotalFlag = false;
  770. this.dgvNum.IsTopDeep = false;
  771. this.dgvNum.Location = new System.Drawing.Point(0, 0);
  772. this.dgvNum.Margin = new System.Windows.Forms.Padding(0);
  773. this.dgvNum.MergeColumnNames = null;
  774. this.dgvNum.MergeDetailColumnNames = null;
  775. this.dgvNum.MergeDetailOnlyColumn = null;
  776. this.dgvNum.MergeOnlyColumn = null;
  777. this.dgvNum.MultiSelect = false;
  778. this.dgvNum.Name = "dgvNum";
  779. this.dgvNum.ReadOnly = true;
  780. this.dgvNum.RefreshAtHscroll = false;
  781. this.dgvNum.RowHeadersWidth = 50;
  782. this.dgvNum.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  783. dataGridViewCellStyle17.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  784. this.dgvNum.RowsDefaultCellStyle = dataGridViewCellStyle17;
  785. this.dgvNum.RowTemplate.Height = 21;
  786. this.dgvNum.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  787. this.dgvNum.Size = new System.Drawing.Size(1143, 401);
  788. this.dgvNum.SortOrderColumnName = null;
  789. this.dgvNum.TabIndex = 1;
  790. this.dgvNum.Tag = true;
  791. this.dgvNum.TotalSumColumns = null;
  792. this.dgvNum.ViewRowFilter = "";
  793. this.dgvNum.VirtualNodes = false;
  794. //
  795. // coldate
  796. //
  797. this.coldate.DataPropertyName = "fhtime";
  798. dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  799. dataGridViewCellStyle15.Format = "yyyy-MM-dd ";
  800. this.coldate.DefaultCellStyle = dataGridViewCellStyle15;
  801. this.coldate.HeaderText = "交接日期";
  802. this.coldate.MinimumWidth = 8;
  803. this.coldate.Name = "coldate";
  804. this.coldate.ReadOnly = true;
  805. this.coldate.Width = 150;
  806. //
  807. // collogoname
  808. //
  809. this.collogoname.DataPropertyName = "logoname";
  810. this.collogoname.HeaderText = "产品商标";
  811. this.collogoname.MinimumWidth = 8;
  812. this.collogoname.Name = "collogoname";
  813. this.collogoname.ReadOnly = true;
  814. this.collogoname.Width = 150;
  815. //
  816. // colgoodscode
  817. //
  818. this.colgoodscode.DataPropertyName = "goodscode";
  819. this.colgoodscode.HeaderText = "产品编码";
  820. this.colgoodscode.MinimumWidth = 8;
  821. this.colgoodscode.Name = "colgoodscode";
  822. this.colgoodscode.ReadOnly = true;
  823. this.colgoodscode.Width = 150;
  824. //
  825. // g3goodsmodel
  826. //
  827. this.g3goodsmodel.DataPropertyName = "goodsmodel";
  828. this.g3goodsmodel.HeaderText = "产品型号";
  829. this.g3goodsmodel.MinimumWidth = 8;
  830. this.g3goodsmodel.Name = "g3goodsmodel";
  831. this.g3goodsmodel.ReadOnly = true;
  832. this.g3goodsmodel.Width = 150;
  833. //
  834. // g3mcode
  835. //
  836. this.g3mcode.DataPropertyName = "mcode";
  837. this.g3mcode.HeaderText = "物料编码";
  838. this.g3mcode.MinimumWidth = 8;
  839. this.g3mcode.Name = "g3mcode";
  840. this.g3mcode.ReadOnly = true;
  841. this.g3mcode.Width = 150;
  842. //
  843. // g3mremark
  844. //
  845. this.g3mremark.DataPropertyName = "mremark";
  846. this.g3mremark.HeaderText = "物料描述";
  847. this.g3mremark.MinimumWidth = 8;
  848. this.g3mremark.Name = "g3mremark";
  849. this.g3mremark.ReadOnly = true;
  850. this.g3mremark.Width = 150;
  851. //
  852. // fhusercode_number
  853. //
  854. this.fhusercode_number.DataPropertyName = "fhusercode_number";
  855. this.fhusercode_number.HeaderText = "交接工号";
  856. this.fhusercode_number.MinimumWidth = 8;
  857. this.fhusercode_number.Name = "fhusercode_number";
  858. this.fhusercode_number.ReadOnly = true;
  859. this.fhusercode_number.Width = 150;
  860. //
  861. // colgoodscount
  862. //
  863. this.colgoodscount.DataPropertyName = "goodscount";
  864. dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  865. dataGridViewCellStyle16.Format = "N0";
  866. this.colgoodscount.DefaultCellStyle = dataGridViewCellStyle16;
  867. this.colgoodscount.HeaderText = "产品数量";
  868. this.colgoodscount.MinimumWidth = 8;
  869. this.colgoodscount.Name = "colgoodscount";
  870. this.colgoodscount.ReadOnly = true;
  871. this.colgoodscount.Width = 150;
  872. //
  873. // tabPage1
  874. //
  875. this.tabPage1.Controls.Add(this.dgvGoodsNum);
  876. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  877. this.tabPage1.Name = "tabPage1";
  878. this.tabPage1.Size = new System.Drawing.Size(1143, 401);
  879. this.tabPage1.TabIndex = 3;
  880. this.tabPage1.Text = "产成品型号数量";
  881. this.tabPage1.UseVisualStyleBackColor = true;
  882. //
  883. // dgvGoodsNum
  884. //
  885. this.dgvGoodsNum.AllowUserToAddRows = false;
  886. this.dgvGoodsNum.AllowUserToDeleteRows = false;
  887. this.dgvGoodsNum.AllowUserToModifyRows = true;
  888. this.dgvGoodsNum.AllowUserToOrderColumns = true;
  889. this.dgvGoodsNum.AllowUserToSortRows = false;
  890. dataGridViewCellStyle18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  891. this.dgvGoodsNum.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle18;
  892. this.dgvGoodsNum.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  893. this.dgvGoodsNum.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  894. this.dgvGoodsNum.CellHeight = 23;
  895. this.dgvGoodsNum.ChildNodeColumnName = null;
  896. this.dgvGoodsNum.ChildNodeColumnText = null;
  897. this.dgvGoodsNum.ColumnDeep = 1;
  898. this.dgvGoodsNum.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  899. dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  900. dataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  901. dataGridViewCellStyle19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  902. dataGridViewCellStyle19.ForeColor = System.Drawing.Color.White;
  903. dataGridViewCellStyle19.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  904. dataGridViewCellStyle19.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  905. dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  906. this.dgvGoodsNum.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle19;
  907. this.dgvGoodsNum.ColumnHeadersHeight = 34;
  908. this.dgvGoodsNum.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  909. this.dgvGoodsNum.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  910. this.dataGridViewTextBoxColumn3,
  911. this.dataGridViewTextBoxColumn4,
  912. this.dataGridViewTextBoxColumn5,
  913. this.g4mremark,
  914. this.dataGridViewTextBoxColumn6});
  915. this.dgvGoodsNum.ColumnTreeView = null;
  916. this.dgvGoodsNum.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)));
  917. this.dgvGoodsNum.Dock = System.Windows.Forms.DockStyle.Fill;
  918. this.dgvGoodsNum.DynamicColumnName = "";
  919. this.dgvGoodsNum.EnableHeadersVisualStyles = false;
  920. this.dgvGoodsNum.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  921. this.dgvGoodsNum.FormatQuantityColumns = null;
  922. this.dgvGoodsNum.HasNode = false;
  923. this.dgvGoodsNum.HorizontalMergeColumn = null;
  924. this.dgvGoodsNum.IsAutoCountSum = true;
  925. this.dgvGoodsNum.IsAutoResizeColumns = false;
  926. this.dgvGoodsNum.IsClickF12 = false;
  927. this.dgvGoodsNum.IsOpenMergeCellFlag = false;
  928. this.dgvGoodsNum.IsSubTotalFlag = false;
  929. this.dgvGoodsNum.IsTopDeep = false;
  930. this.dgvGoodsNum.Location = new System.Drawing.Point(0, 0);
  931. this.dgvGoodsNum.Margin = new System.Windows.Forms.Padding(0);
  932. this.dgvGoodsNum.MergeColumnNames = null;
  933. this.dgvGoodsNum.MergeDetailColumnNames = null;
  934. this.dgvGoodsNum.MergeDetailOnlyColumn = null;
  935. this.dgvGoodsNum.MergeOnlyColumn = null;
  936. this.dgvGoodsNum.MultiSelect = false;
  937. this.dgvGoodsNum.Name = "dgvGoodsNum";
  938. this.dgvGoodsNum.ReadOnly = true;
  939. this.dgvGoodsNum.RefreshAtHscroll = false;
  940. this.dgvGoodsNum.RowHeadersWidth = 50;
  941. this.dgvGoodsNum.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  942. dataGridViewCellStyle21.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  943. this.dgvGoodsNum.RowsDefaultCellStyle = dataGridViewCellStyle21;
  944. this.dgvGoodsNum.RowTemplate.Height = 21;
  945. this.dgvGoodsNum.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  946. this.dgvGoodsNum.Size = new System.Drawing.Size(1143, 401);
  947. this.dgvGoodsNum.SortOrderColumnName = null;
  948. this.dgvGoodsNum.TabIndex = 2;
  949. this.dgvGoodsNum.Tag = true;
  950. this.dgvGoodsNum.TotalSumColumns = null;
  951. this.dgvGoodsNum.ViewRowFilter = "";
  952. this.dgvGoodsNum.VirtualNodes = false;
  953. //
  954. // dataGridViewTextBoxColumn3
  955. //
  956. this.dataGridViewTextBoxColumn3.DataPropertyName = "goodscode";
  957. this.dataGridViewTextBoxColumn3.HeaderText = "产品编码";
  958. this.dataGridViewTextBoxColumn3.MinimumWidth = 8;
  959. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  960. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  961. this.dataGridViewTextBoxColumn3.Width = 150;
  962. //
  963. // dataGridViewTextBoxColumn4
  964. //
  965. this.dataGridViewTextBoxColumn4.DataPropertyName = "goodsmodel";
  966. this.dataGridViewTextBoxColumn4.HeaderText = "产品型号";
  967. this.dataGridViewTextBoxColumn4.MinimumWidth = 8;
  968. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  969. this.dataGridViewTextBoxColumn4.ReadOnly = true;
  970. this.dataGridViewTextBoxColumn4.Width = 150;
  971. //
  972. // dataGridViewTextBoxColumn5
  973. //
  974. this.dataGridViewTextBoxColumn5.DataPropertyName = "mcode";
  975. this.dataGridViewTextBoxColumn5.HeaderText = "物料编码";
  976. this.dataGridViewTextBoxColumn5.MinimumWidth = 8;
  977. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  978. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  979. this.dataGridViewTextBoxColumn5.Width = 150;
  980. //
  981. // g4mremark
  982. //
  983. this.g4mremark.DataPropertyName = "mremark";
  984. this.g4mremark.HeaderText = "物料描述";
  985. this.g4mremark.MinimumWidth = 8;
  986. this.g4mremark.Name = "g4mremark";
  987. this.g4mremark.ReadOnly = true;
  988. this.g4mremark.Width = 150;
  989. //
  990. // dataGridViewTextBoxColumn6
  991. //
  992. this.dataGridViewTextBoxColumn6.DataPropertyName = "goodscount";
  993. dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  994. dataGridViewCellStyle20.Format = "N0";
  995. this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle20;
  996. this.dataGridViewTextBoxColumn6.HeaderText = "产品数量";
  997. this.dataGridViewTextBoxColumn6.MinimumWidth = 8;
  998. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  999. this.dataGridViewTextBoxColumn6.ReadOnly = true;
  1000. this.dataGridViewTextBoxColumn6.Width = 150;
  1001. //
  1002. // taptemp
  1003. //
  1004. this.taptemp.Controls.Add(this.dgvtemporarily);
  1005. this.taptemp.Location = new System.Drawing.Point(4, 22);
  1006. this.taptemp.Name = "taptemp";
  1007. this.taptemp.Size = new System.Drawing.Size(1143, 401);
  1008. this.taptemp.TabIndex = 4;
  1009. this.taptemp.Text = "产成品交接未同步明细表";
  1010. this.taptemp.UseVisualStyleBackColor = true;
  1011. //
  1012. // dgvtemporarily
  1013. //
  1014. this.dgvtemporarily.AllowUserToAddRows = false;
  1015. this.dgvtemporarily.AllowUserToDeleteRows = false;
  1016. this.dgvtemporarily.AllowUserToModifyRows = true;
  1017. this.dgvtemporarily.AllowUserToOrderColumns = true;
  1018. dataGridViewCellStyle22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1019. this.dgvtemporarily.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle22;
  1020. this.dgvtemporarily.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1021. | System.Windows.Forms.AnchorStyles.Left)
  1022. | System.Windows.Forms.AnchorStyles.Right)));
  1023. this.dgvtemporarily.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1024. this.dgvtemporarily.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1025. this.dgvtemporarily.CellHeight = 23;
  1026. this.dgvtemporarily.ChildNodeColumnName = null;
  1027. this.dgvtemporarily.ChildNodeColumnText = null;
  1028. this.dgvtemporarily.ColumnDeep = 1;
  1029. this.dgvtemporarily.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1030. dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1031. dataGridViewCellStyle23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1032. dataGridViewCellStyle23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1033. dataGridViewCellStyle23.ForeColor = System.Drawing.Color.White;
  1034. dataGridViewCellStyle23.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1035. dataGridViewCellStyle23.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1036. dataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1037. this.dgvtemporarily.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle23;
  1038. this.dgvtemporarily.ColumnHeadersHeight = 34;
  1039. this.dgvtemporarily.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1040. this.dgvtemporarily.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1041. this.Sel,
  1042. this.dataGridViewTextBoxColumn1,
  1043. this.dataGridViewTextBoxColumn2,
  1044. this.dataGridViewTextBoxColumn7,
  1045. this.dataGridViewTextBoxColumn8,
  1046. this.dataGridViewTextBoxColumn9,
  1047. this.BANMA,
  1048. this.FINISHEDLOADBATCHNO,
  1049. this.dataGridViewTextBoxColumn10,
  1050. this.dataGridViewTextBoxColumn11,
  1051. this.dataGridViewTextBoxColumn12,
  1052. this.dataGridViewTextBoxColumn13,
  1053. this.dataGridViewTextBoxColumn39,
  1054. this.dataGridViewTextBoxColumn40,
  1055. this.dataGridViewTextBoxColumn41,
  1056. this.dataGridViewTextBoxColumn42,
  1057. this.dataGridViewTextBoxColumn43,
  1058. this.dataGridViewTextBoxColumn44,
  1059. this.dataGridViewTextBoxColumn45,
  1060. this.dataGridViewTextBoxColumn46,
  1061. this.dataGridViewCheckBoxColumn2});
  1062. this.dgvtemporarily.ColumnTreeView = null;
  1063. this.dgvtemporarily.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)));
  1064. this.dgvtemporarily.DynamicColumnName = "";
  1065. this.dgvtemporarily.EnableHeadersVisualStyles = false;
  1066. this.dgvtemporarily.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1067. this.dgvtemporarily.FormatQuantityColumns = null;
  1068. this.dgvtemporarily.HasNode = false;
  1069. this.dgvtemporarily.HorizontalMergeColumn = null;
  1070. this.dgvtemporarily.IsAutoCountSum = true;
  1071. this.dgvtemporarily.IsAutoResizeColumns = false;
  1072. this.dgvtemporarily.IsClickF12 = false;
  1073. this.dgvtemporarily.IsOpenMergeCellFlag = false;
  1074. this.dgvtemporarily.IsSubTotalFlag = false;
  1075. this.dgvtemporarily.IsTopDeep = false;
  1076. this.dgvtemporarily.Location = new System.Drawing.Point(0, 0);
  1077. this.dgvtemporarily.Margin = new System.Windows.Forms.Padding(0);
  1078. this.dgvtemporarily.MergeColumnNames = null;
  1079. this.dgvtemporarily.MergeDetailColumnNames = null;
  1080. this.dgvtemporarily.MergeDetailOnlyColumn = null;
  1081. this.dgvtemporarily.MergeOnlyColumn = null;
  1082. this.dgvtemporarily.MultiSelect = false;
  1083. this.dgvtemporarily.Name = "dgvtemporarily";
  1084. this.dgvtemporarily.RefreshAtHscroll = false;
  1085. this.dgvtemporarily.RowHeadersWidth = 50;
  1086. this.dgvtemporarily.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1087. dataGridViewCellStyle28.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1088. this.dgvtemporarily.RowsDefaultCellStyle = dataGridViewCellStyle28;
  1089. this.dgvtemporarily.RowTemplate.Height = 21;
  1090. this.dgvtemporarily.Size = new System.Drawing.Size(1143, 401);
  1091. this.dgvtemporarily.SortOrderColumnName = null;
  1092. this.dgvtemporarily.TabIndex = 1;
  1093. this.dgvtemporarily.Tag = true;
  1094. this.dgvtemporarily.TotalSumColumns = null;
  1095. this.dgvtemporarily.ViewRowFilter = "";
  1096. this.dgvtemporarily.VirtualNodes = false;
  1097. this.dgvtemporarily.CurrentCellDirtyStateChanged += new System.EventHandler(this.dgvtemporarily_CurrentCellDirtyStateChanged);
  1098. //
  1099. // tapLuoCi
  1100. //
  1101. this.tapLuoCi.Controls.Add(this.dgvlc);
  1102. this.tapLuoCi.Location = new System.Drawing.Point(4, 22);
  1103. this.tapLuoCi.Name = "tapLuoCi";
  1104. this.tapLuoCi.Size = new System.Drawing.Size(1143, 401);
  1105. this.tapLuoCi.TabIndex = 5;
  1106. this.tapLuoCi.Text = "裸瓷交接汇总表";
  1107. this.tapLuoCi.UseVisualStyleBackColor = true;
  1108. //
  1109. // dgvlc
  1110. //
  1111. this.dgvlc.AllowUserToAddRows = false;
  1112. this.dgvlc.AllowUserToDeleteRows = false;
  1113. this.dgvlc.AllowUserToModifyRows = true;
  1114. this.dgvlc.AllowUserToOrderColumns = true;
  1115. dataGridViewCellStyle29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1116. this.dgvlc.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle29;
  1117. this.dgvlc.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1118. this.dgvlc.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1119. this.dgvlc.CellHeight = 23;
  1120. this.dgvlc.ChildNodeColumnName = null;
  1121. this.dgvlc.ChildNodeColumnText = null;
  1122. this.dgvlc.ColumnDeep = 1;
  1123. this.dgvlc.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1124. dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1125. dataGridViewCellStyle30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1126. dataGridViewCellStyle30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1127. dataGridViewCellStyle30.ForeColor = System.Drawing.Color.White;
  1128. dataGridViewCellStyle30.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1129. dataGridViewCellStyle30.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1130. dataGridViewCellStyle30.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1131. this.dgvlc.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle30;
  1132. this.dgvlc.ColumnHeadersHeight = 34;
  1133. this.dgvlc.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1134. this.dgvlc.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1135. this.dataGridViewTextBoxColumn30,
  1136. this.dataGridViewTextBoxColumn31,
  1137. this.dataGridViewTextBoxColumn32,
  1138. this.dataGridViewTextBoxColumn33,
  1139. this.dataGridViewTextBoxColumn34,
  1140. this.dataGridViewTextBoxColumn35,
  1141. this.dataGridViewTextBoxColumn36,
  1142. this.dataGridViewTextBoxColumn37,
  1143. this.dataGridViewTextBoxColumn38});
  1144. this.dgvlc.ColumnTreeView = null;
  1145. this.dgvlc.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)));
  1146. this.dgvlc.Dock = System.Windows.Forms.DockStyle.Fill;
  1147. this.dgvlc.DynamicColumnName = "";
  1148. this.dgvlc.EnableHeadersVisualStyles = false;
  1149. this.dgvlc.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1150. this.dgvlc.FormatQuantityColumns = null;
  1151. this.dgvlc.HasNode = false;
  1152. this.dgvlc.HorizontalMergeColumn = null;
  1153. this.dgvlc.IsAutoCountSum = true;
  1154. this.dgvlc.IsAutoResizeColumns = false;
  1155. this.dgvlc.IsClickF12 = false;
  1156. this.dgvlc.IsOpenMergeCellFlag = false;
  1157. this.dgvlc.IsSubTotalFlag = false;
  1158. this.dgvlc.IsTopDeep = false;
  1159. this.dgvlc.Location = new System.Drawing.Point(0, 0);
  1160. this.dgvlc.MergeColumnNames = null;
  1161. this.dgvlc.MergeDetailColumnNames = null;
  1162. this.dgvlc.MergeDetailOnlyColumn = null;
  1163. this.dgvlc.MergeOnlyColumn = null;
  1164. this.dgvlc.Name = "dgvlc";
  1165. this.dgvlc.ReadOnly = true;
  1166. this.dgvlc.RefreshAtHscroll = false;
  1167. this.dgvlc.RowHeadersWidth = 50;
  1168. this.dgvlc.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1169. dataGridViewCellStyle31.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1170. this.dgvlc.RowsDefaultCellStyle = dataGridViewCellStyle31;
  1171. this.dgvlc.RowTemplate.Height = 21;
  1172. this.dgvlc.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1173. this.dgvlc.Size = new System.Drawing.Size(1143, 401);
  1174. this.dgvlc.SortOrderColumnName = null;
  1175. this.dgvlc.TabIndex = 1;
  1176. this.dgvlc.Tag = true;
  1177. this.dgvlc.TotalSumColumns = null;
  1178. this.dgvlc.ViewRowFilter = "";
  1179. this.dgvlc.VirtualNodes = false;
  1180. //
  1181. // dataGridViewTextBoxColumn30
  1182. //
  1183. this.dataGridViewTextBoxColumn30.DataPropertyName = "logoName";
  1184. this.dataGridViewTextBoxColumn30.HeaderText = "产品商标";
  1185. this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
  1186. this.dataGridViewTextBoxColumn30.ReadOnly = true;
  1187. //
  1188. // dataGridViewTextBoxColumn31
  1189. //
  1190. this.dataGridViewTextBoxColumn31.DataPropertyName = "goodsCode";
  1191. this.dataGridViewTextBoxColumn31.HeaderText = "产品编码";
  1192. this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
  1193. this.dataGridViewTextBoxColumn31.ReadOnly = true;
  1194. //
  1195. // dataGridViewTextBoxColumn32
  1196. //
  1197. this.dataGridViewTextBoxColumn32.DataPropertyName = "goodsModel";
  1198. this.dataGridViewTextBoxColumn32.HeaderText = "产品型号";
  1199. this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
  1200. this.dataGridViewTextBoxColumn32.ReadOnly = true;
  1201. //
  1202. // dataGridViewTextBoxColumn33
  1203. //
  1204. this.dataGridViewTextBoxColumn33.DataPropertyName = "materCode";
  1205. this.dataGridViewTextBoxColumn33.HeaderText = "物料编码";
  1206. this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
  1207. this.dataGridViewTextBoxColumn33.ReadOnly = true;
  1208. //
  1209. // dataGridViewTextBoxColumn34
  1210. //
  1211. this.dataGridViewTextBoxColumn34.DataPropertyName = "materRemark";
  1212. this.dataGridViewTextBoxColumn34.HeaderText = "物料描述";
  1213. this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
  1214. this.dataGridViewTextBoxColumn34.ReadOnly = true;
  1215. //
  1216. // dataGridViewTextBoxColumn35
  1217. //
  1218. this.dataGridViewTextBoxColumn35.DataPropertyName = "lcFhUserCode";
  1219. this.dataGridViewTextBoxColumn35.HeaderText = "裸瓷交接工号";
  1220. this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
  1221. this.dataGridViewTextBoxColumn35.ReadOnly = true;
  1222. //
  1223. // dataGridViewTextBoxColumn36
  1224. //
  1225. this.dataGridViewTextBoxColumn36.DataPropertyName = "lcFhCount";
  1226. this.dataGridViewTextBoxColumn36.HeaderText = "裸瓷交接数量";
  1227. this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
  1228. this.dataGridViewTextBoxColumn36.ReadOnly = true;
  1229. //
  1230. // dataGridViewTextBoxColumn37
  1231. //
  1232. this.dataGridViewTextBoxColumn37.DataPropertyName = "logoID";
  1233. this.dataGridViewTextBoxColumn37.HeaderText = "logoid";
  1234. this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
  1235. this.dataGridViewTextBoxColumn37.ReadOnly = true;
  1236. this.dataGridViewTextBoxColumn37.Visible = false;
  1237. //
  1238. // dataGridViewTextBoxColumn38
  1239. //
  1240. this.dataGridViewTextBoxColumn38.DataPropertyName = "goodsID";
  1241. this.dataGridViewTextBoxColumn38.HeaderText = "goodsid";
  1242. this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
  1243. this.dataGridViewTextBoxColumn38.ReadOnly = true;
  1244. this.dataGridViewTextBoxColumn38.Visible = false;
  1245. //
  1246. // tapLuoCiDetail
  1247. //
  1248. this.tapLuoCiDetail.Controls.Add(this.dgvlcDetail);
  1249. this.tapLuoCiDetail.Location = new System.Drawing.Point(4, 22);
  1250. this.tapLuoCiDetail.Name = "tapLuoCiDetail";
  1251. this.tapLuoCiDetail.Padding = new System.Windows.Forms.Padding(3);
  1252. this.tapLuoCiDetail.Size = new System.Drawing.Size(1143, 401);
  1253. this.tapLuoCiDetail.TabIndex = 6;
  1254. this.tapLuoCiDetail.Text = "裸瓷交接明细表";
  1255. this.tapLuoCiDetail.UseVisualStyleBackColor = true;
  1256. //
  1257. // dgvlcDetail
  1258. //
  1259. this.dgvlcDetail.AllowUserToAddRows = false;
  1260. this.dgvlcDetail.AllowUserToDeleteRows = false;
  1261. this.dgvlcDetail.AllowUserToModifyRows = true;
  1262. this.dgvlcDetail.AllowUserToOrderColumns = true;
  1263. dataGridViewCellStyle32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1264. this.dgvlcDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle32;
  1265. this.dgvlcDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1266. this.dgvlcDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1267. this.dgvlcDetail.CellHeight = 23;
  1268. this.dgvlcDetail.ChildNodeColumnName = null;
  1269. this.dgvlcDetail.ChildNodeColumnText = null;
  1270. this.dgvlcDetail.ColumnDeep = 1;
  1271. this.dgvlcDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1272. dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1273. dataGridViewCellStyle33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1274. dataGridViewCellStyle33.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1275. dataGridViewCellStyle33.ForeColor = System.Drawing.Color.White;
  1276. dataGridViewCellStyle33.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1277. dataGridViewCellStyle33.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1278. dataGridViewCellStyle33.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1279. this.dgvlcDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle33;
  1280. this.dgvlcDetail.ColumnHeadersHeight = 34;
  1281. this.dgvlcDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1282. this.dgvlcDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1283. this.dataGridViewTextBoxColumn14,
  1284. this.dataGridViewTextBoxColumn15,
  1285. this.dataGridViewTextBoxColumn16,
  1286. this.dataGridViewTextBoxColumn17,
  1287. this.dataGridViewTextBoxColumn18,
  1288. this.dataGridViewTextBoxColumn19,
  1289. this.dataGridViewTextBoxColumn20,
  1290. this.dataGridViewTextBoxColumn21,
  1291. this.dataGridViewTextBoxColumn22,
  1292. this.dataGridViewTextBoxColumn23,
  1293. this.dataGridViewTextBoxColumn24,
  1294. this.dataGridViewTextBoxColumn25,
  1295. this.dataGridViewTextBoxColumn26,
  1296. this.dataGridViewTextBoxColumn27,
  1297. this.dataGridViewTextBoxColumn28,
  1298. this.dataGridViewTextBoxColumn29,
  1299. this.dataGridViewCheckBoxColumn1});
  1300. this.dgvlcDetail.ColumnTreeView = null;
  1301. this.dgvlcDetail.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)));
  1302. this.dgvlcDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  1303. this.dgvlcDetail.DynamicColumnName = "";
  1304. this.dgvlcDetail.EnableHeadersVisualStyles = false;
  1305. this.dgvlcDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1306. this.dgvlcDetail.FormatQuantityColumns = null;
  1307. this.dgvlcDetail.HasNode = false;
  1308. this.dgvlcDetail.HorizontalMergeColumn = null;
  1309. this.dgvlcDetail.IsAutoCountSum = true;
  1310. this.dgvlcDetail.IsAutoResizeColumns = false;
  1311. this.dgvlcDetail.IsClickF12 = false;
  1312. this.dgvlcDetail.IsOpenMergeCellFlag = false;
  1313. this.dgvlcDetail.IsSubTotalFlag = false;
  1314. this.dgvlcDetail.IsTopDeep = false;
  1315. this.dgvlcDetail.Location = new System.Drawing.Point(3, 3);
  1316. this.dgvlcDetail.MergeColumnNames = null;
  1317. this.dgvlcDetail.MergeDetailColumnNames = null;
  1318. this.dgvlcDetail.MergeDetailOnlyColumn = null;
  1319. this.dgvlcDetail.MergeOnlyColumn = null;
  1320. this.dgvlcDetail.Name = "dgvlcDetail";
  1321. this.dgvlcDetail.ReadOnly = true;
  1322. this.dgvlcDetail.RefreshAtHscroll = false;
  1323. this.dgvlcDetail.RowHeadersWidth = 50;
  1324. this.dgvlcDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1325. dataGridViewCellStyle34.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1326. this.dgvlcDetail.RowsDefaultCellStyle = dataGridViewCellStyle34;
  1327. this.dgvlcDetail.RowTemplate.Height = 21;
  1328. this.dgvlcDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1329. this.dgvlcDetail.Size = new System.Drawing.Size(1137, 395);
  1330. this.dgvlcDetail.SortOrderColumnName = null;
  1331. this.dgvlcDetail.TabIndex = 1;
  1332. this.dgvlcDetail.Tag = true;
  1333. this.dgvlcDetail.TotalSumColumns = null;
  1334. this.dgvlcDetail.ViewRowFilter = "";
  1335. this.dgvlcDetail.VirtualNodes = false;
  1336. //
  1337. // dataGridViewTextBoxColumn14
  1338. //
  1339. this.dataGridViewTextBoxColumn14.DataPropertyName = "LCFHTime";
  1340. this.dataGridViewTextBoxColumn14.HeaderText = "裸瓷交接时间";
  1341. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  1342. this.dataGridViewTextBoxColumn14.ReadOnly = true;
  1343. //
  1344. // dataGridViewTextBoxColumn15
  1345. //
  1346. this.dataGridViewTextBoxColumn15.DataPropertyName = "LCFHUserCode";
  1347. this.dataGridViewTextBoxColumn15.HeaderText = "裸瓷交接工号";
  1348. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  1349. this.dataGridViewTextBoxColumn15.ReadOnly = true;
  1350. //
  1351. // dataGridViewTextBoxColumn16
  1352. //
  1353. this.dataGridViewTextBoxColumn16.DataPropertyName = "BarCode";
  1354. this.dataGridViewTextBoxColumn16.HeaderText = "产品条码";
  1355. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  1356. this.dataGridViewTextBoxColumn16.ReadOnly = true;
  1357. //
  1358. // dataGridViewTextBoxColumn17
  1359. //
  1360. this.dataGridViewTextBoxColumn17.DataPropertyName = "outLabelCode";
  1361. this.dataGridViewTextBoxColumn17.HeaderText = "包装条码";
  1362. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  1363. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  1364. //
  1365. // dataGridViewTextBoxColumn18
  1366. //
  1367. this.dataGridViewTextBoxColumn18.DataPropertyName = "SecurityCode";
  1368. this.dataGridViewTextBoxColumn18.HeaderText = "防伪码";
  1369. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  1370. this.dataGridViewTextBoxColumn18.ReadOnly = true;
  1371. //
  1372. // dataGridViewTextBoxColumn19
  1373. //
  1374. this.dataGridViewTextBoxColumn19.DataPropertyName = "GoodsCode";
  1375. this.dataGridViewTextBoxColumn19.HeaderText = "产品编码";
  1376. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  1377. this.dataGridViewTextBoxColumn19.ReadOnly = true;
  1378. //
  1379. // dataGridViewTextBoxColumn20
  1380. //
  1381. this.dataGridViewTextBoxColumn20.DataPropertyName = "GoodsModel";
  1382. this.dataGridViewTextBoxColumn20.HeaderText = "产品型号";
  1383. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  1384. this.dataGridViewTextBoxColumn20.ReadOnly = true;
  1385. //
  1386. // dataGridViewTextBoxColumn21
  1387. //
  1388. this.dataGridViewTextBoxColumn21.DataPropertyName = "MaterCode";
  1389. this.dataGridViewTextBoxColumn21.HeaderText = "物料编码";
  1390. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  1391. this.dataGridViewTextBoxColumn21.ReadOnly = true;
  1392. //
  1393. // dataGridViewTextBoxColumn22
  1394. //
  1395. this.dataGridViewTextBoxColumn22.DataPropertyName = "MaterRemarks";
  1396. this.dataGridViewTextBoxColumn22.HeaderText = "物料描述";
  1397. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  1398. this.dataGridViewTextBoxColumn22.ReadOnly = true;
  1399. //
  1400. // dataGridViewTextBoxColumn23
  1401. //
  1402. this.dataGridViewTextBoxColumn23.DataPropertyName = "LogoName";
  1403. this.dataGridViewTextBoxColumn23.HeaderText = "产品商标";
  1404. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  1405. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  1406. //
  1407. // dataGridViewTextBoxColumn24
  1408. //
  1409. this.dataGridViewTextBoxColumn24.DataPropertyName = "GroutingUserCode";
  1410. this.dataGridViewTextBoxColumn24.HeaderText = "成型工号";
  1411. this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
  1412. this.dataGridViewTextBoxColumn24.ReadOnly = true;
  1413. //
  1414. // dataGridViewTextBoxColumn25
  1415. //
  1416. this.dataGridViewTextBoxColumn25.DataPropertyName = "GroutingMouldCode";
  1417. this.dataGridViewTextBoxColumn25.HeaderText = "模具编号";
  1418. this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
  1419. this.dataGridViewTextBoxColumn25.ReadOnly = true;
  1420. //
  1421. // dataGridViewTextBoxColumn26
  1422. //
  1423. this.dataGridViewTextBoxColumn26.DataPropertyName = "GroutingLineCode";
  1424. this.dataGridViewTextBoxColumn26.HeaderText = "成型线编码";
  1425. this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
  1426. this.dataGridViewTextBoxColumn26.ReadOnly = true;
  1427. //
  1428. // dataGridViewTextBoxColumn27
  1429. //
  1430. this.dataGridViewTextBoxColumn27.DataPropertyName = "GroutingDate";
  1431. this.dataGridViewTextBoxColumn27.HeaderText = "注浆日期";
  1432. this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
  1433. this.dataGridViewTextBoxColumn27.ReadOnly = true;
  1434. //
  1435. // dataGridViewTextBoxColumn28
  1436. //
  1437. this.dataGridViewTextBoxColumn28.DataPropertyName = "DELIVERTIME";
  1438. this.dataGridViewTextBoxColumn28.HeaderText = "交坯日期";
  1439. this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
  1440. this.dataGridViewTextBoxColumn28.ReadOnly = true;
  1441. //
  1442. // dataGridViewTextBoxColumn29
  1443. //
  1444. this.dataGridViewTextBoxColumn29.DataPropertyName = "FINISHEDDATE";
  1445. this.dataGridViewTextBoxColumn29.HeaderText = "生产完成时间";
  1446. this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
  1447. this.dataGridViewTextBoxColumn29.ReadOnly = true;
  1448. //
  1449. // dataGridViewCheckBoxColumn1
  1450. //
  1451. this.dataGridViewCheckBoxColumn1.DataPropertyName = "TestMouldFlag";
  1452. this.dataGridViewCheckBoxColumn1.HeaderText = "试验标识";
  1453. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  1454. this.dataGridViewCheckBoxColumn1.ReadOnly = true;
  1455. this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1456. this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1457. //
  1458. // tsrOperate
  1459. //
  1460. this.tsrOperate.AutoSize = false;
  1461. this.tsrOperate.BackColor = System.Drawing.Color.Transparent;
  1462. this.tsrOperate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1463. this.tsrOperate.ImageScalingSize = new System.Drawing.Size(24, 24);
  1464. this.tsrOperate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  1465. this.tsbtnAdaptive,
  1466. this.tsbtnClose,
  1467. this.tsbtnSynLog});
  1468. this.tsrOperate.Location = new System.Drawing.Point(0, 0);
  1469. this.tsrOperate.Name = "tsrOperate";
  1470. this.tsrOperate.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
  1471. this.tsrOperate.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  1472. this.tsrOperate.ShowItemToolTips = false;
  1473. this.tsrOperate.Size = new System.Drawing.Size(1167, 35);
  1474. this.tsrOperate.TabIndex = 0;
  1475. this.tsrOperate.Text = "toolStrip1";
  1476. //
  1477. // tsbtnAdaptive
  1478. //
  1479. this.tsbtnAdaptive.AutoSize = false;
  1480. this.tsbtnAdaptive.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1481. this.tsbtnAdaptive.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  1482. this.tsbtnAdaptive.ImageTransparentColor = System.Drawing.Color.Magenta;
  1483. this.tsbtnAdaptive.Name = "tsbtnAdaptive";
  1484. this.tsbtnAdaptive.Size = new System.Drawing.Size(90, 25);
  1485. this.tsbtnAdaptive.Text = "自适应列宽(&A)";
  1486. this.tsbtnAdaptive.Click += new System.EventHandler(this.tsbtnAdaptive_Click);
  1487. //
  1488. // tsbtnClose
  1489. //
  1490. this.tsbtnClose.AutoSize = false;
  1491. this.tsbtnClose.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1492. this.tsbtnClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  1493. this.tsbtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
  1494. this.tsbtnClose.Name = "tsbtnClose";
  1495. this.tsbtnClose.Size = new System.Drawing.Size(60, 25);
  1496. this.tsbtnClose.Text = "关闭(&X)";
  1497. this.tsbtnClose.Click += new System.EventHandler(this.tsbtnClose_Click);
  1498. //
  1499. // tsbtnSynLog
  1500. //
  1501. this.tsbtnSynLog.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  1502. this.tsbtnSynLog.ImageTransparentColor = System.Drawing.Color.Magenta;
  1503. this.tsbtnSynLog.Name = "tsbtnSynLog";
  1504. this.tsbtnSynLog.Size = new System.Drawing.Size(111, 32);
  1505. this.tsbtnSynLog.Text = "同步未交接产品(&L)";
  1506. this.tsbtnSynLog.Click += new System.EventHandler(this.tsbtnSynLog_Click);
  1507. //
  1508. // gbxCondition
  1509. //
  1510. this.gbxCondition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  1511. | System.Windows.Forms.AnchorStyles.Right)));
  1512. this.gbxCondition.BackColor = System.Drawing.Color.Transparent;
  1513. this.gbxCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gbxCondition.BackgroundImage")));
  1514. this.gbxCondition.Controls.Add(this.chkTemporarilyFlag);
  1515. this.gbxCondition.Controls.Add(this.txtBarcode);
  1516. this.gbxCondition.Controls.Add(this.c_Label2);
  1517. this.gbxCondition.Controls.Add(this.btnClearCondition);
  1518. this.gbxCondition.Controls.Add(this.chkTestMouldFlag);
  1519. this.gbxCondition.Controls.Add(this.c_Label1);
  1520. this.gbxCondition.Controls.Add(this.lblGoodsType);
  1521. this.gbxCondition.Controls.Add(this.scbGoodsType);
  1522. this.gbxCondition.Controls.Add(this.txtOrderNo);
  1523. this.gbxCondition.Controls.Add(this.dkLogoSearchBox1);
  1524. this.gbxCondition.Controls.Add(this.chkDateTime);
  1525. this.gbxCondition.Controls.Add(this.lblAccountDateEnd);
  1526. this.gbxCondition.Controls.Add(this.dtpEndTime);
  1527. this.gbxCondition.Controls.Add(this.dtpStartTime);
  1528. this.gbxCondition.Controls.Add(this.btnSearch);
  1529. this.gbxCondition.Controls.Add(this.txtFHUserCode);
  1530. this.gbxCondition.Controls.Add(this.txtGoodsModel);
  1531. this.gbxCondition.Controls.Add(this.txtGoodsCode);
  1532. this.gbxCondition.Controls.Add(this.lblFHUserCode);
  1533. this.gbxCondition.Controls.Add(this.lblGoodsModel);
  1534. this.gbxCondition.Controls.Add(this.lblOrderNo);
  1535. this.gbxCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1536. this.gbxCondition.ForeColor = System.Drawing.SystemColors.ControlText;
  1537. this.gbxCondition.IsMustInput = false;
  1538. this.gbxCondition.Location = new System.Drawing.Point(4, 38);
  1539. this.gbxCondition.Name = "gbxCondition";
  1540. this.gbxCondition.OriginalHeight = -1;
  1541. this.gbxCondition.Size = new System.Drawing.Size(1147, 68);
  1542. this.gbxCondition.TabIndex = 1;
  1543. this.gbxCondition.TabStop = false;
  1544. this.gbxCondition.Text = "查询条件 ▼";
  1545. //
  1546. // chkTemporarilyFlag
  1547. //
  1548. this.chkTemporarilyFlag.BackColor = System.Drawing.SystemColors.Control;
  1549. this.chkTemporarilyFlag.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("chkTemporarilyFlag.BackgroundImage")));
  1550. this.chkTemporarilyFlag.FalseText = "否";
  1551. this.chkTemporarilyFlag.Location = new System.Drawing.Point(903, 16);
  1552. this.chkTemporarilyFlag.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1553. this.chkTemporarilyFlag.Name = "chkTemporarilyFlag";
  1554. this.chkTemporarilyFlag.Size = new System.Drawing.Size(178, 16);
  1555. this.chkTemporarilyFlag.TabIndex = 48;
  1556. this.chkTemporarilyFlag.Title = "产成品暂存标识";
  1557. this.chkTemporarilyFlag.TitleAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1558. this.chkTemporarilyFlag.TrueText = "是";
  1559. //
  1560. // txtBarcode
  1561. //
  1562. this.txtBarcode.BackColor = System.Drawing.SystemColors.Window;
  1563. this.txtBarcode.BackgroundColor = System.Drawing.SystemColors.Window;
  1564. this.txtBarcode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  1565. this.txtBarcode.ErrorMessage = "";
  1566. this.txtBarcode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1567. this.txtBarcode.ImeMode = System.Windows.Forms.ImeMode.Off;
  1568. this.txtBarcode.Location = new System.Drawing.Point(445, 40);
  1569. this.txtBarcode.MaxLength = 21;
  1570. this.txtBarcode.Name = "txtBarcode";
  1571. this.txtBarcode.Size = new System.Drawing.Size(110, 21);
  1572. this.txtBarcode.TabIndex = 47;
  1573. this.txtBarcode.TextValue = "";
  1574. //
  1575. // c_Label2
  1576. //
  1577. this.c_Label2.AutoSize = true;
  1578. this.c_Label2.BackColor = System.Drawing.Color.Transparent;
  1579. this.c_Label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1580. this.c_Label2.ForeColor = System.Drawing.SystemColors.ControlText;
  1581. this.c_Label2.Location = new System.Drawing.Point(383, 45);
  1582. this.c_Label2.Name = "c_Label2";
  1583. this.c_Label2.Size = new System.Drawing.Size(53, 12);
  1584. this.c_Label2.TabIndex = 46;
  1585. this.c_Label2.Text = "产品条码";
  1586. //
  1587. // btnClearCondition
  1588. //
  1589. this.btnClearCondition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1590. this.btnClearCondition.BackColor = System.Drawing.Color.Transparent;
  1591. this.btnClearCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClearCondition.BackgroundImage")));
  1592. this.btnClearCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1593. this.btnClearCondition.ForeColor = System.Drawing.Color.White;
  1594. this.btnClearCondition.Location = new System.Drawing.Point(1045, 32);
  1595. this.btnClearCondition.Name = "btnClearCondition";
  1596. this.btnClearCondition.Size = new System.Drawing.Size(85, 30);
  1597. this.btnClearCondition.TabIndex = 13;
  1598. this.btnClearCondition.Text = "清空条件";
  1599. this.btnClearCondition.UseVisualStyleBackColor = true;
  1600. this.btnClearCondition.Click += new System.EventHandler(this.btnClearCondition_Click);
  1601. //
  1602. // chkTestMouldFlag
  1603. //
  1604. this.chkTestMouldFlag.BackColor = System.Drawing.SystemColors.Control;
  1605. this.chkTestMouldFlag.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("chkTestMouldFlag.BackgroundImage")));
  1606. this.chkTestMouldFlag.FalseText = "否";
  1607. this.chkTestMouldFlag.Location = new System.Drawing.Point(748, 16);
  1608. this.chkTestMouldFlag.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  1609. this.chkTestMouldFlag.Name = "chkTestMouldFlag";
  1610. this.chkTestMouldFlag.Size = new System.Drawing.Size(130, 16);
  1611. this.chkTestMouldFlag.TabIndex = 45;
  1612. this.chkTestMouldFlag.Title = "试验标识";
  1613. this.chkTestMouldFlag.TitleAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1614. this.chkTestMouldFlag.TrueText = "是";
  1615. //
  1616. // c_Label1
  1617. //
  1618. this.c_Label1.AutoSize = true;
  1619. this.c_Label1.BackColor = System.Drawing.Color.Transparent;
  1620. this.c_Label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1621. this.c_Label1.ForeColor = System.Drawing.SystemColors.ControlText;
  1622. this.c_Label1.Location = new System.Drawing.Point(572, 45);
  1623. this.c_Label1.Name = "c_Label1";
  1624. this.c_Label1.Size = new System.Drawing.Size(53, 12);
  1625. this.c_Label1.TabIndex = 42;
  1626. this.c_Label1.Text = "产品型号";
  1627. //
  1628. // lblGoodsType
  1629. //
  1630. this.lblGoodsType.AutoSize = true;
  1631. this.lblGoodsType.BackColor = System.Drawing.SystemColors.Control;
  1632. this.lblGoodsType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1633. this.lblGoodsType.ForeColor = System.Drawing.SystemColors.ControlText;
  1634. this.lblGoodsType.Location = new System.Drawing.Point(7, 43);
  1635. this.lblGoodsType.Name = "lblGoodsType";
  1636. this.lblGoodsType.Size = new System.Drawing.Size(53, 12);
  1637. this.lblGoodsType.TabIndex = 41;
  1638. this.lblGoodsType.Text = "产品类别";
  1639. //
  1640. // scbGoodsType
  1641. //
  1642. this.scbGoodsType.CheckedData = null;
  1643. this.scbGoodsType.IsOnlyDisplayEnd = false;
  1644. this.scbGoodsType.Location = new System.Drawing.Point(66, 40);
  1645. this.scbGoodsType.Name = "scbGoodsType";
  1646. this.scbGoodsType.Size = new System.Drawing.Size(116, 21);
  1647. this.scbGoodsType.TabIndex = 40;
  1648. //
  1649. // txtOrderNo
  1650. //
  1651. this.txtOrderNo.BackColor = System.Drawing.SystemColors.Window;
  1652. this.txtOrderNo.BackgroundColor = System.Drawing.SystemColors.Window;
  1653. this.txtOrderNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1654. this.txtOrderNo.Location = new System.Drawing.Point(66, 14);
  1655. this.txtOrderNo.MaxLength = 100;
  1656. this.txtOrderNo.Name = "txtOrderNo";
  1657. this.txtOrderNo.Size = new System.Drawing.Size(116, 21);
  1658. this.txtOrderNo.TabIndex = 1;
  1659. //
  1660. // dkLogoSearchBox1
  1661. //
  1662. this.dkLogoSearchBox1.BackColor = System.Drawing.Color.Transparent;
  1663. this.dkLogoSearchBox1.DataSource = null;
  1664. this.dkLogoSearchBox1.Enabled = true;
  1665. this.dkLogoSearchBox1.IsEnablePurview = false;
  1666. this.dkLogoSearchBox1.IsMustInput = false;
  1667. this.dkLogoSearchBox1.Location = new System.Drawing.Point(748, 40);
  1668. this.dkLogoSearchBox1.LogoCode = "";
  1669. this.dkLogoSearchBox1.LogoID = null;
  1670. this.dkLogoSearchBox1.LogoIDS = null;
  1671. this.dkLogoSearchBox1.LogoName = null;
  1672. this.dkLogoSearchBox1.Margin = new System.Windows.Forms.Padding(4);
  1673. this.dkLogoSearchBox1.ModelType = null;
  1674. this.dkLogoSearchBox1.Name = "dkLogoSearchBox1";
  1675. this.dkLogoSearchBox1.Purview = null;
  1676. this.dkLogoSearchBox1.PurviewType = ((byte)(0));
  1677. this.dkLogoSearchBox1.SelectMore = true;
  1678. this.dkLogoSearchBox1.Size = new System.Drawing.Size(157, 21);
  1679. this.dkLogoSearchBox1.TabIndex = 11;
  1680. this.dkLogoSearchBox1.Title = "产品商标";
  1681. this.dkLogoSearchBox1.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
  1682. //
  1683. // chkDateTime
  1684. //
  1685. this.chkDateTime.AutoSize = true;
  1686. this.chkDateTime.Checked = true;
  1687. this.chkDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
  1688. this.chkDateTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1689. this.chkDateTime.Location = new System.Drawing.Point(367, 16);
  1690. this.chkDateTime.Name = "chkDateTime";
  1691. this.chkDateTime.Size = new System.Drawing.Size(72, 16);
  1692. this.chkDateTime.TabIndex = 4;
  1693. this.chkDateTime.Text = "交接日期";
  1694. this.chkDateTime.UseVisualStyleBackColor = true;
  1695. this.chkDateTime.CheckedChanged += new System.EventHandler(this.chkDateTime_CheckedChanged);
  1696. //
  1697. // lblAccountDateEnd
  1698. //
  1699. this.lblAccountDateEnd.AutoSize = true;
  1700. this.lblAccountDateEnd.BackColor = System.Drawing.Color.Transparent;
  1701. this.lblAccountDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1702. this.lblAccountDateEnd.ForeColor = System.Drawing.SystemColors.ControlText;
  1703. this.lblAccountDateEnd.Location = new System.Drawing.Point(585, 18);
  1704. this.lblAccountDateEnd.Name = "lblAccountDateEnd";
  1705. this.lblAccountDateEnd.Size = new System.Drawing.Size(17, 12);
  1706. this.lblAccountDateEnd.TabIndex = 6;
  1707. this.lblAccountDateEnd.Text = "至";
  1708. //
  1709. // dtpEndTime
  1710. //
  1711. this.dtpEndTime.CustomFormat = "yyyy-MM-dd HH:mm";
  1712. this.dtpEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  1713. this.dtpEndTime.Location = new System.Drawing.Point(608, 14);
  1714. this.dtpEndTime.Name = "dtpEndTime";
  1715. this.dtpEndTime.Size = new System.Drawing.Size(134, 21);
  1716. this.dtpEndTime.TabIndex = 7;
  1717. this.dtpEndTime.Value = new System.DateTime(2014, 9, 23, 0, 0, 0, 0);
  1718. //
  1719. // dtpStartTime
  1720. //
  1721. this.dtpStartTime.CustomFormat = "yyyy-MM-dd HH:mm";
  1722. this.dtpStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  1723. this.dtpStartTime.Location = new System.Drawing.Point(445, 14);
  1724. this.dtpStartTime.Name = "dtpStartTime";
  1725. this.dtpStartTime.Size = new System.Drawing.Size(134, 21);
  1726. this.dtpStartTime.TabIndex = 5;
  1727. this.dtpStartTime.Value = new System.DateTime(2014, 9, 24, 0, 0, 0, 0);
  1728. //
  1729. // btnSearch
  1730. //
  1731. this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1732. this.btnSearch.BackColor = System.Drawing.Color.Transparent;
  1733. this.btnSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSearch.BackgroundImage")));
  1734. this.btnSearch.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1735. this.btnSearch.ForeColor = System.Drawing.Color.White;
  1736. this.btnSearch.Location = new System.Drawing.Point(954, 32);
  1737. this.btnSearch.Name = "btnSearch";
  1738. this.btnSearch.Size = new System.Drawing.Size(85, 30);
  1739. this.btnSearch.TabIndex = 12;
  1740. this.btnSearch.Text = "查询";
  1741. this.btnSearch.UseVisualStyleBackColor = true;
  1742. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  1743. //
  1744. // txtFHUserCode
  1745. //
  1746. this.txtFHUserCode.BackColor = System.Drawing.SystemColors.Window;
  1747. this.txtFHUserCode.BackgroundColor = System.Drawing.SystemColors.Window;
  1748. this.txtFHUserCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  1749. this.txtFHUserCode.ErrorMessage = "";
  1750. this.txtFHUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1751. this.txtFHUserCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  1752. this.txtFHUserCode.Location = new System.Drawing.Point(246, 14);
  1753. this.txtFHUserCode.MaxLength = 21;
  1754. this.txtFHUserCode.Name = "txtFHUserCode";
  1755. this.txtFHUserCode.Size = new System.Drawing.Size(116, 21);
  1756. this.txtFHUserCode.TabIndex = 3;
  1757. this.txtFHUserCode.TextValue = "";
  1758. //
  1759. // txtGoodsModel
  1760. //
  1761. this.txtGoodsModel.BackColor = System.Drawing.SystemColors.Window;
  1762. this.txtGoodsModel.BackgroundColor = System.Drawing.SystemColors.Window;
  1763. this.txtGoodsModel.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  1764. this.txtGoodsModel.ErrorMessage = "";
  1765. this.txtGoodsModel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1766. this.txtGoodsModel.ImeMode = System.Windows.Forms.ImeMode.Off;
  1767. this.txtGoodsModel.Location = new System.Drawing.Point(631, 41);
  1768. this.txtGoodsModel.MaxLength = 21;
  1769. this.txtGoodsModel.Name = "txtGoodsModel";
  1770. this.txtGoodsModel.Size = new System.Drawing.Size(110, 21);
  1771. this.txtGoodsModel.TabIndex = 10;
  1772. this.txtGoodsModel.TextValue = "";
  1773. //
  1774. // txtGoodsCode
  1775. //
  1776. this.txtGoodsCode.BackColor = System.Drawing.SystemColors.Window;
  1777. this.txtGoodsCode.BackgroundColor = System.Drawing.SystemColors.Window;
  1778. this.txtGoodsCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  1779. this.txtGoodsCode.ErrorMessage = "";
  1780. this.txtGoodsCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1781. this.txtGoodsCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  1782. this.txtGoodsCode.Location = new System.Drawing.Point(246, 40);
  1783. this.txtGoodsCode.MaxLength = 21;
  1784. this.txtGoodsCode.Name = "txtGoodsCode";
  1785. this.txtGoodsCode.Size = new System.Drawing.Size(116, 21);
  1786. this.txtGoodsCode.TabIndex = 10;
  1787. this.txtGoodsCode.TextValue = "";
  1788. //
  1789. // lblFHUserCode
  1790. //
  1791. this.lblFHUserCode.AutoSize = true;
  1792. this.lblFHUserCode.BackColor = System.Drawing.Color.Transparent;
  1793. this.lblFHUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1794. this.lblFHUserCode.ForeColor = System.Drawing.SystemColors.ControlText;
  1795. this.lblFHUserCode.Location = new System.Drawing.Point(188, 18);
  1796. this.lblFHUserCode.Name = "lblFHUserCode";
  1797. this.lblFHUserCode.Size = new System.Drawing.Size(53, 12);
  1798. this.lblFHUserCode.TabIndex = 2;
  1799. this.lblFHUserCode.Text = "交接工号";
  1800. //
  1801. // lblGoodsModel
  1802. //
  1803. this.lblGoodsModel.AutoSize = true;
  1804. this.lblGoodsModel.BackColor = System.Drawing.Color.Transparent;
  1805. this.lblGoodsModel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1806. this.lblGoodsModel.ForeColor = System.Drawing.SystemColors.ControlText;
  1807. this.lblGoodsModel.Location = new System.Drawing.Point(188, 44);
  1808. this.lblGoodsModel.Name = "lblGoodsModel";
  1809. this.lblGoodsModel.Size = new System.Drawing.Size(53, 12);
  1810. this.lblGoodsModel.TabIndex = 9;
  1811. this.lblGoodsModel.Text = "产品编码";
  1812. //
  1813. // lblOrderNo
  1814. //
  1815. this.lblOrderNo.AutoSize = true;
  1816. this.lblOrderNo.BackColor = System.Drawing.Color.Transparent;
  1817. this.lblOrderNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1818. this.lblOrderNo.ForeColor = System.Drawing.SystemColors.ControlText;
  1819. this.lblOrderNo.Location = new System.Drawing.Point(7, 19);
  1820. this.lblOrderNo.Name = "lblOrderNo";
  1821. this.lblOrderNo.Size = new System.Drawing.Size(53, 12);
  1822. this.lblOrderNo.TabIndex = 0;
  1823. this.lblOrderNo.Text = "生产订单";
  1824. //
  1825. // Sel
  1826. //
  1827. this.Sel.DataPropertyName = "Sel";
  1828. this.Sel.FalseValue = "0";
  1829. this.Sel.HeaderText = "选择";
  1830. this.Sel.Name = "Sel";
  1831. this.Sel.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1832. this.Sel.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1833. this.Sel.TrueValue = "1";
  1834. this.Sel.Width = 65;
  1835. //
  1836. // dataGridViewTextBoxColumn1
  1837. //
  1838. this.dataGridViewTextBoxColumn1.DataPropertyName = "OrderNo";
  1839. this.dataGridViewTextBoxColumn1.HeaderText = "生产订单";
  1840. this.dataGridViewTextBoxColumn1.MinimumWidth = 8;
  1841. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  1842. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  1843. this.dataGridViewTextBoxColumn1.Width = 150;
  1844. //
  1845. // dataGridViewTextBoxColumn2
  1846. //
  1847. this.dataGridViewTextBoxColumn2.DataPropertyName = "FHTime";
  1848. dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1849. dataGridViewCellStyle24.Format = "yyyy-MM-dd HH:mm:ss";
  1850. this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle24;
  1851. this.dataGridViewTextBoxColumn2.HeaderText = "交接时间";
  1852. this.dataGridViewTextBoxColumn2.MinimumWidth = 8;
  1853. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  1854. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  1855. this.dataGridViewTextBoxColumn2.Width = 150;
  1856. //
  1857. // dataGridViewTextBoxColumn7
  1858. //
  1859. this.dataGridViewTextBoxColumn7.DataPropertyName = "FHUserCode";
  1860. this.dataGridViewTextBoxColumn7.HeaderText = "交接工号";
  1861. this.dataGridViewTextBoxColumn7.MinimumWidth = 8;
  1862. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  1863. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  1864. this.dataGridViewTextBoxColumn7.Width = 150;
  1865. //
  1866. // dataGridViewTextBoxColumn8
  1867. //
  1868. this.dataGridViewTextBoxColumn8.DataPropertyName = "BarCode";
  1869. this.dataGridViewTextBoxColumn8.HeaderText = "产品条码";
  1870. this.dataGridViewTextBoxColumn8.MinimumWidth = 8;
  1871. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  1872. this.dataGridViewTextBoxColumn8.ReadOnly = true;
  1873. this.dataGridViewTextBoxColumn8.Width = 150;
  1874. //
  1875. // dataGridViewTextBoxColumn9
  1876. //
  1877. this.dataGridViewTextBoxColumn9.DataPropertyName = "FinishedBarCode";
  1878. this.dataGridViewTextBoxColumn9.HeaderText = "包装条码";
  1879. this.dataGridViewTextBoxColumn9.MinimumWidth = 8;
  1880. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  1881. this.dataGridViewTextBoxColumn9.ReadOnly = true;
  1882. this.dataGridViewTextBoxColumn9.Width = 150;
  1883. //
  1884. // BANMA
  1885. //
  1886. this.BANMA.DataPropertyName = "BANMA";
  1887. this.BANMA.HeaderText = "托盘码";
  1888. this.BANMA.Name = "BANMA";
  1889. this.BANMA.ReadOnly = true;
  1890. //
  1891. // FINISHEDLOADBATCHNO
  1892. //
  1893. this.FINISHEDLOADBATCHNO.DataPropertyName = "FINISHEDLOADBATCHNO";
  1894. this.FINISHEDLOADBATCHNO.HeaderText = "板码";
  1895. this.FINISHEDLOADBATCHNO.Name = "FINISHEDLOADBATCHNO";
  1896. this.FINISHEDLOADBATCHNO.ReadOnly = true;
  1897. //
  1898. // dataGridViewTextBoxColumn10
  1899. //
  1900. this.dataGridViewTextBoxColumn10.DataPropertyName = "SecurityCode";
  1901. this.dataGridViewTextBoxColumn10.HeaderText = "防伪码";
  1902. this.dataGridViewTextBoxColumn10.MinimumWidth = 8;
  1903. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  1904. this.dataGridViewTextBoxColumn10.ReadOnly = true;
  1905. this.dataGridViewTextBoxColumn10.Width = 150;
  1906. //
  1907. // dataGridViewTextBoxColumn11
  1908. //
  1909. this.dataGridViewTextBoxColumn11.DataPropertyName = "GoodsCode";
  1910. this.dataGridViewTextBoxColumn11.HeaderText = "产品编码";
  1911. this.dataGridViewTextBoxColumn11.MinimumWidth = 8;
  1912. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  1913. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  1914. this.dataGridViewTextBoxColumn11.Width = 150;
  1915. //
  1916. // dataGridViewTextBoxColumn12
  1917. //
  1918. this.dataGridViewTextBoxColumn12.DataPropertyName = "goodsmodel";
  1919. this.dataGridViewTextBoxColumn12.HeaderText = "产品型号";
  1920. this.dataGridViewTextBoxColumn12.MinimumWidth = 8;
  1921. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  1922. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  1923. this.dataGridViewTextBoxColumn12.Width = 150;
  1924. //
  1925. // dataGridViewTextBoxColumn13
  1926. //
  1927. this.dataGridViewTextBoxColumn13.DataPropertyName = "mcode";
  1928. this.dataGridViewTextBoxColumn13.HeaderText = "物料编码";
  1929. this.dataGridViewTextBoxColumn13.MinimumWidth = 8;
  1930. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  1931. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  1932. this.dataGridViewTextBoxColumn13.Width = 150;
  1933. //
  1934. // dataGridViewTextBoxColumn39
  1935. //
  1936. this.dataGridViewTextBoxColumn39.DataPropertyName = "mremark";
  1937. this.dataGridViewTextBoxColumn39.HeaderText = "物料描述";
  1938. this.dataGridViewTextBoxColumn39.MinimumWidth = 8;
  1939. this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
  1940. this.dataGridViewTextBoxColumn39.ReadOnly = true;
  1941. this.dataGridViewTextBoxColumn39.Width = 150;
  1942. //
  1943. // dataGridViewTextBoxColumn40
  1944. //
  1945. this.dataGridViewTextBoxColumn40.DataPropertyName = "LogoName";
  1946. this.dataGridViewTextBoxColumn40.HeaderText = "产品商标";
  1947. this.dataGridViewTextBoxColumn40.MinimumWidth = 8;
  1948. this.dataGridViewTextBoxColumn40.Name = "dataGridViewTextBoxColumn40";
  1949. this.dataGridViewTextBoxColumn40.ReadOnly = true;
  1950. this.dataGridViewTextBoxColumn40.Width = 150;
  1951. //
  1952. // dataGridViewTextBoxColumn41
  1953. //
  1954. this.dataGridViewTextBoxColumn41.DataPropertyName = "GroutingUserCode";
  1955. this.dataGridViewTextBoxColumn41.HeaderText = "成型工号";
  1956. this.dataGridViewTextBoxColumn41.MinimumWidth = 8;
  1957. this.dataGridViewTextBoxColumn41.Name = "dataGridViewTextBoxColumn41";
  1958. this.dataGridViewTextBoxColumn41.ReadOnly = true;
  1959. this.dataGridViewTextBoxColumn41.Width = 150;
  1960. //
  1961. // dataGridViewTextBoxColumn42
  1962. //
  1963. this.dataGridViewTextBoxColumn42.DataPropertyName = "GroutingMouldCode";
  1964. this.dataGridViewTextBoxColumn42.HeaderText = "模具编号";
  1965. this.dataGridViewTextBoxColumn42.MinimumWidth = 8;
  1966. this.dataGridViewTextBoxColumn42.Name = "dataGridViewTextBoxColumn42";
  1967. this.dataGridViewTextBoxColumn42.ReadOnly = true;
  1968. this.dataGridViewTextBoxColumn42.Width = 150;
  1969. //
  1970. // dataGridViewTextBoxColumn43
  1971. //
  1972. this.dataGridViewTextBoxColumn43.DataPropertyName = "GroutingLineCode";
  1973. this.dataGridViewTextBoxColumn43.HeaderText = "成型线编码";
  1974. this.dataGridViewTextBoxColumn43.MinimumWidth = 8;
  1975. this.dataGridViewTextBoxColumn43.Name = "dataGridViewTextBoxColumn43";
  1976. this.dataGridViewTextBoxColumn43.ReadOnly = true;
  1977. this.dataGridViewTextBoxColumn43.Width = 150;
  1978. //
  1979. // dataGridViewTextBoxColumn44
  1980. //
  1981. this.dataGridViewTextBoxColumn44.DataPropertyName = "GroutingDate";
  1982. dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1983. dataGridViewCellStyle25.Format = "yyyy-MM-dd ";
  1984. this.dataGridViewTextBoxColumn44.DefaultCellStyle = dataGridViewCellStyle25;
  1985. this.dataGridViewTextBoxColumn44.HeaderText = "注浆日期";
  1986. this.dataGridViewTextBoxColumn44.MinimumWidth = 8;
  1987. this.dataGridViewTextBoxColumn44.Name = "dataGridViewTextBoxColumn44";
  1988. this.dataGridViewTextBoxColumn44.ReadOnly = true;
  1989. this.dataGridViewTextBoxColumn44.Width = 150;
  1990. //
  1991. // dataGridViewTextBoxColumn45
  1992. //
  1993. this.dataGridViewTextBoxColumn45.DataPropertyName = "DeliverTime";
  1994. dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1995. dataGridViewCellStyle26.Format = "yyyy-MM-dd HH:mm:ss";
  1996. this.dataGridViewTextBoxColumn45.DefaultCellStyle = dataGridViewCellStyle26;
  1997. this.dataGridViewTextBoxColumn45.HeaderText = "交坯日期";
  1998. this.dataGridViewTextBoxColumn45.MinimumWidth = 8;
  1999. this.dataGridViewTextBoxColumn45.Name = "dataGridViewTextBoxColumn45";
  2000. this.dataGridViewTextBoxColumn45.ReadOnly = true;
  2001. this.dataGridViewTextBoxColumn45.Width = 150;
  2002. //
  2003. // dataGridViewTextBoxColumn46
  2004. //
  2005. this.dataGridViewTextBoxColumn46.DataPropertyName = "ProductFinishedTime";
  2006. dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2007. dataGridViewCellStyle27.Format = "yyyy-MM-dd HH:mm:ss";
  2008. dataGridViewCellStyle27.NullValue = null;
  2009. this.dataGridViewTextBoxColumn46.DefaultCellStyle = dataGridViewCellStyle27;
  2010. this.dataGridViewTextBoxColumn46.HeaderText = "生产完成时间";
  2011. this.dataGridViewTextBoxColumn46.MinimumWidth = 8;
  2012. this.dataGridViewTextBoxColumn46.Name = "dataGridViewTextBoxColumn46";
  2013. this.dataGridViewTextBoxColumn46.ReadOnly = true;
  2014. this.dataGridViewTextBoxColumn46.Width = 150;
  2015. //
  2016. // dataGridViewCheckBoxColumn2
  2017. //
  2018. this.dataGridViewCheckBoxColumn2.DataPropertyName = "TestMouldFlag";
  2019. this.dataGridViewCheckBoxColumn2.FalseValue = "0";
  2020. this.dataGridViewCheckBoxColumn2.HeaderText = "试验标识";
  2021. this.dataGridViewCheckBoxColumn2.IndeterminateValue = "0";
  2022. this.dataGridViewCheckBoxColumn2.MinimumWidth = 8;
  2023. this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
  2024. this.dataGridViewCheckBoxColumn2.ReadOnly = true;
  2025. this.dataGridViewCheckBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  2026. this.dataGridViewCheckBoxColumn2.TrueValue = "1";
  2027. this.dataGridViewCheckBoxColumn2.Width = 150;
  2028. //
  2029. // F_RPT_030112
  2030. //
  2031. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2032. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2033. this.ClientSize = new System.Drawing.Size(1167, 536);
  2034. this.Controls.Add(this.gbxCondition);
  2035. this.Controls.Add(this.tblScrapTotalModule);
  2036. this.Controls.Add(this.tsrOperate);
  2037. this.Margin = new System.Windows.Forms.Padding(4);
  2038. this.Name = "F_RPT_030112";
  2039. this.Text = "产成品交接汇总表";
  2040. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_RPT_030102_1_FormClosed);
  2041. this.Load += new System.EventHandler(this.F_RPT_030102_1_Load);
  2042. this.tblScrapTotalModule.ResumeLayout(false);
  2043. this.tapScrapTotalModule.ResumeLayout(false);
  2044. ((System.ComponentModel.ISupportInitialize)(this.dgvOrder)).EndInit();
  2045. this.tapScrapTotalModuleDetail.ResumeLayout(false);
  2046. ((System.ComponentModel.ISupportInitialize)(this.dgvOrderDetail)).EndInit();
  2047. this.tapTotalNum.ResumeLayout(false);
  2048. ((System.ComponentModel.ISupportInitialize)(this.dgvNum)).EndInit();
  2049. this.tabPage1.ResumeLayout(false);
  2050. ((System.ComponentModel.ISupportInitialize)(this.dgvGoodsNum)).EndInit();
  2051. this.taptemp.ResumeLayout(false);
  2052. ((System.ComponentModel.ISupportInitialize)(this.dgvtemporarily)).EndInit();
  2053. this.tapLuoCi.ResumeLayout(false);
  2054. ((System.ComponentModel.ISupportInitialize)(this.dgvlc)).EndInit();
  2055. this.tapLuoCiDetail.ResumeLayout(false);
  2056. ((System.ComponentModel.ISupportInitialize)(this.dgvlcDetail)).EndInit();
  2057. this.tsrOperate.ResumeLayout(false);
  2058. this.tsrOperate.PerformLayout();
  2059. this.gbxCondition.ResumeLayout(false);
  2060. this.gbxCondition.PerformLayout();
  2061. this.ResumeLayout(false);
  2062. }
  2063. #endregion
  2064. private Basics.BaseControls.C_ToolStrip tsrOperate;
  2065. private System.Windows.Forms.ToolStripButton tsbtnAdaptive;
  2066. private System.Windows.Forms.ToolStripButton tsbtnClose;
  2067. private System.Windows.Forms.TabControl tblScrapTotalModule;
  2068. private System.Windows.Forms.TabPage tapScrapTotalModule;
  2069. private Basics.BaseControls.C_DataGridView dgvOrder;
  2070. private System.Windows.Forms.TabPage tapScrapTotalModuleDetail;
  2071. private Basics.BaseControls.C_DataGridView dgvOrderDetail;
  2072. private Basics.BaseControls.C_GroupBox gbxCondition;
  2073. private Controls.SearchTextBox.dkLogoSearchBox dkLogoSearchBox1;
  2074. private Basics.BaseControls.C_CheckBox chkDateTime;
  2075. private Basics.BaseControls.C_Label lblAccountDateEnd;
  2076. private System.Windows.Forms.DateTimePicker dtpEndTime;
  2077. private System.Windows.Forms.DateTimePicker dtpStartTime;
  2078. private Basics.BaseControls.C_Button btnSearch;
  2079. private Basics.BaseControls.C_Button btnClearCondition;
  2080. private Basics.BaseControls.C_TXT_Code txtFHUserCode;
  2081. private Basics.BaseControls.C_TextBox txtGoodsCode;
  2082. private Basics.BaseControls.C_Label lblFHUserCode;
  2083. private Basics.BaseControls.C_Label lblGoodsModel;
  2084. private Basics.BaseControls.C_Label lblOrderNo;
  2085. private Basics.BaseControls.C_TextBox txtOrderNo;
  2086. private System.Windows.Forms.TabPage tapTotalNum;
  2087. private Basics.BaseControls.C_DataGridView dgvNum;
  2088. private Basics.BaseControls.C_Label lblGoodsType;
  2089. private Controls.SearchBox.ScbGoodsType scbGoodsType;
  2090. private Basics.BaseControls.C_TextBox txtGoodsModel;
  2091. private Basics.BaseControls.C_Label c_Label1;
  2092. private System.Windows.Forms.TabPage tabPage1;
  2093. private Basics.BaseControls.C_DataGridView dgvGoodsNum;
  2094. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  2095. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  2096. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  2097. private System.Windows.Forms.DataGridViewTextBoxColumn g4mremark;
  2098. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  2099. private Basics.BaseControls.C_StatusCheckBox chkTestMouldFlag;
  2100. private System.Windows.Forms.DataGridViewTextBoxColumn OrderNo1;
  2101. private System.Windows.Forms.DataGridViewTextBoxColumn FHTime1;
  2102. private System.Windows.Forms.DataGridViewTextBoxColumn FHUserCode;
  2103. private System.Windows.Forms.DataGridViewTextBoxColumn BarCode;
  2104. private System.Windows.Forms.DataGridViewTextBoxColumn FinishedBarCode;
  2105. private System.Windows.Forms.DataGridViewTextBoxColumn SecurityCode;
  2106. private System.Windows.Forms.DataGridViewTextBoxColumn GoodsCode;
  2107. private System.Windows.Forms.DataGridViewTextBoxColumn g2goodsmodel;
  2108. private System.Windows.Forms.DataGridViewTextBoxColumn g2mcode;
  2109. private System.Windows.Forms.DataGridViewTextBoxColumn g2mremark;
  2110. private System.Windows.Forms.DataGridViewTextBoxColumn LogoName1;
  2111. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingUserCode;
  2112. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingMouldCode;
  2113. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineCode;
  2114. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingDate;
  2115. private System.Windows.Forms.DataGridViewTextBoxColumn DeliverTime;
  2116. private System.Windows.Forms.DataGridViewTextBoxColumn ProductFinishedTime;
  2117. private System.Windows.Forms.DataGridViewCheckBoxColumn TestMouldFlag;
  2118. private Basics.BaseControls.C_TextBox txtBarcode;
  2119. private Basics.BaseControls.C_Label c_Label2;
  2120. private System.Windows.Forms.DataGridViewTextBoxColumn coldate;
  2121. private System.Windows.Forms.DataGridViewTextBoxColumn collogoname;
  2122. private System.Windows.Forms.DataGridViewTextBoxColumn colgoodscode;
  2123. private System.Windows.Forms.DataGridViewTextBoxColumn g3goodsmodel;
  2124. private System.Windows.Forms.DataGridViewTextBoxColumn g3mcode;
  2125. private System.Windows.Forms.DataGridViewTextBoxColumn g3mremark;
  2126. private System.Windows.Forms.DataGridViewTextBoxColumn fhusercode_number;
  2127. private System.Windows.Forms.DataGridViewTextBoxColumn colgoodscount;
  2128. private System.Windows.Forms.DataGridViewTextBoxColumn orderno;
  2129. private System.Windows.Forms.DataGridViewTextBoxColumn logoname;
  2130. private System.Windows.Forms.DataGridViewTextBoxColumn g1goodscode;
  2131. private System.Windows.Forms.DataGridViewTextBoxColumn goodsmodel;
  2132. private System.Windows.Forms.DataGridViewTextBoxColumn g1mcode;
  2133. private System.Windows.Forms.DataGridViewTextBoxColumn g1mremark;
  2134. private System.Windows.Forms.DataGridViewTextBoxColumn fhusercode_summary;
  2135. private System.Windows.Forms.DataGridViewTextBoxColumn fhtime;
  2136. private System.Windows.Forms.DataGridViewTextBoxColumn count;
  2137. private System.Windows.Forms.DataGridViewTextBoxColumn logoid;
  2138. private System.Windows.Forms.DataGridViewTextBoxColumn goodsid;
  2139. private System.Windows.Forms.DataGridViewTextBoxColumn orderid;
  2140. private System.Windows.Forms.TabPage taptemp;
  2141. private System.Windows.Forms.TabPage tapLuoCi;
  2142. private System.Windows.Forms.TabPage tapLuoCiDetail;
  2143. private Basics.BaseControls.C_DataGridView dgvlc;
  2144. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
  2145. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
  2146. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
  2147. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
  2148. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
  2149. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
  2150. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
  2151. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
  2152. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
  2153. private Basics.BaseControls.C_DataGridView dgvlcDetail;
  2154. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  2155. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  2156. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  2157. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  2158. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  2159. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  2160. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  2161. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  2162. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  2163. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  2164. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
  2165. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
  2166. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
  2167. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
  2168. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
  2169. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
  2170. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  2171. private Basics.BaseControls.C_DataGridView dgvtemporarily;
  2172. private System.Windows.Forms.ToolStripButton tsbtnSynLog;
  2173. private Basics.BaseControls.C_StatusCheckBox chkTemporarilyFlag;
  2174. private System.Windows.Forms.DataGridViewCheckBoxColumn Sel;
  2175. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  2176. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  2177. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  2178. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  2179. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  2180. private System.Windows.Forms.DataGridViewTextBoxColumn BANMA;
  2181. private System.Windows.Forms.DataGridViewTextBoxColumn FINISHEDLOADBATCHNO;
  2182. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  2183. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  2184. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  2185. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  2186. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
  2187. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn40;
  2188. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn41;
  2189. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn42;
  2190. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn43;
  2191. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn44;
  2192. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn45;
  2193. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn46;
  2194. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
  2195. }
  2196. }