Core.StlMes.Client.PlnSaleOrd.csproj 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{8034736C-47A3-49D3-9703-8820FF9CB912}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Core.StlMes.Client.PlnSaleOrd</RootNamespace>
  12. <AssemblyName>Core.StlMes.Client.PlnSaleOrd</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <StartupObject>
  16. </StartupObject>
  17. <FileUpgradeFlags>
  18. </FileUpgradeFlags>
  19. <UpgradeBackupLocation>
  20. </UpgradeBackupLocation>
  21. <OldToolsVersion>3.5</OldToolsVersion>
  22. <TargetFrameworkProfile />
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  25. <DebugSymbols>true</DebugSymbols>
  26. <DebugType>full</DebugType>
  27. <Optimize>false</Optimize>
  28. <OutputPath>..\output\</OutputPath>
  29. <DefineConstants>DEBUG;TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  34. <DebugType>pdbonly</DebugType>
  35. <Optimize>true</Optimize>
  36. <OutputPath>bin\Release\</OutputPath>
  37. <DefineConstants>TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="Core.Mes.Client.Comm, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
  43. <Reference Include="Core.StlMes.Client.SaleComm, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
  44. <Reference Include="CoreFS.CA06, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
  45. <Reference Include="Infragistics2.Excel.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  46. <SpecificVersion>False</SpecificVersion>
  47. <HintPath>..\output\Infragistics2.Excel.v9.2.dll</HintPath>
  48. </Reference>
  49. <Reference Include="Infragistics2.Shared.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  50. <SpecificVersion>False</SpecificVersion>
  51. <HintPath>..\output\Infragistics2.Shared.v9.2.dll</HintPath>
  52. </Reference>
  53. <Reference Include="Infragistics2.Win.Misc.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  54. <SpecificVersion>False</SpecificVersion>
  55. <HintPath>..\output\Infragistics2.Win.Misc.v9.2.dll</HintPath>
  56. </Reference>
  57. <Reference Include="Infragistics2.Win.UltraWinDataSource.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  58. <SpecificVersion>False</SpecificVersion>
  59. <HintPath>..\output\Infragistics2.Win.UltraWinDataSource.v9.2.dll</HintPath>
  60. </Reference>
  61. <Reference Include="Infragistics2.Win.UltraWinEditors.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  62. <SpecificVersion>False</SpecificVersion>
  63. <HintPath>..\output\Infragistics2.Win.UltraWinEditors.v9.2.dll</HintPath>
  64. </Reference>
  65. <Reference Include="Infragistics2.Win.UltraWinGrid.ExcelExport.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  66. <SpecificVersion>False</SpecificVersion>
  67. <HintPath>..\output\Infragistics2.Win.UltraWinGrid.ExcelExport.v9.2.dll</HintPath>
  68. </Reference>
  69. <Reference Include="Infragistics2.Win.UltraWinGrid.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  70. <SpecificVersion>False</SpecificVersion>
  71. <HintPath>..\output\Infragistics2.Win.UltraWinGrid.v9.2.dll</HintPath>
  72. </Reference>
  73. <Reference Include="Infragistics2.Win.UltraWinTabControl.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  74. <SpecificVersion>False</SpecificVersion>
  75. <HintPath>..\output\Infragistics2.Win.UltraWinTabControl.v9.2.dll</HintPath>
  76. </Reference>
  77. <Reference Include="Infragistics2.Win.UltraWinToolbars.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  78. <SpecificVersion>False</SpecificVersion>
  79. <HintPath>..\output\Infragistics2.Win.UltraWinToolbars.v9.2.dll</HintPath>
  80. </Reference>
  81. <Reference Include="Infragistics2.Win.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
  82. <SpecificVersion>False</SpecificVersion>
  83. <HintPath>..\output\Infragistics2.Win.v9.2.dll</HintPath>
  84. </Reference>
  85. <Reference Include="Microsoft.Office.Interop.Excel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
  86. <SpecificVersion>False</SpecificVersion>
  87. <HintPath>..\output\Microsoft.Office.Interop.Excel.dll</HintPath>
  88. <Private>False</Private>
  89. </Reference>
  90. <Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  91. <SpecificVersion>False</SpecificVersion>
  92. <HintPath>..\output\Newtonsoft.Json.dll</HintPath>
  93. </Reference>
  94. <Reference Include="NPOI, Version=2.2.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  95. <SpecificVersion>False</SpecificVersion>
  96. <HintPath>..\output\NPOI.dll</HintPath>
  97. </Reference>
  98. <Reference Include="NPOI.OOXML, Version=2.2.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  99. <SpecificVersion>False</SpecificVersion>
  100. <HintPath>..\output\NPOI.OOXML.dll</HintPath>
  101. </Reference>
  102. <Reference Include="NPOI.OpenXml4Net, Version=2.2.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  103. <SpecificVersion>False</SpecificVersion>
  104. <HintPath>..\output\NPOI.OpenXml4Net.dll</HintPath>
  105. </Reference>
  106. <Reference Include="NPOI.OpenXmlFormats, Version=2.2.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  107. <SpecificVersion>False</SpecificVersion>
  108. <HintPath>..\output\NPOI.OpenXmlFormats.dll</HintPath>
  109. </Reference>
  110. <Reference Include="System" />
  111. <Reference Include="System.Core">
  112. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  113. </Reference>
  114. <Reference Include="System.Xml.Linq">
  115. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  116. </Reference>
  117. <Reference Include="System.Data.DataSetExtensions">
  118. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  119. </Reference>
  120. <Reference Include="System.Data" />
  121. <Reference Include="System.Deployment" />
  122. <Reference Include="System.Drawing" />
  123. <Reference Include="System.Windows.Forms" />
  124. <Reference Include="System.Xml" />
  125. </ItemGroup>
  126. <ItemGroup>
  127. <Compile Include="BaseForm.cs">
  128. <SubType>Form</SubType>
  129. </Compile>
  130. <Compile Include="BaseForm.Designer.cs">
  131. <DependentUpon>BaseForm.cs</DependentUpon>
  132. </Compile>
  133. <Compile Include="BaseMethod\BaseHelper.cs" />
  134. <Compile Include="BaseMethod\FrmDefGroup.cs">
  135. </Compile>
  136. <Compile Include="BaseMethod\FrmReturnCon.cs">
  137. <SubType>Form</SubType>
  138. </Compile>
  139. <Compile Include="BaseMethod\FrmReturnCon.Designer.cs">
  140. <DependentUpon>FrmReturnCon.cs</DependentUpon>
  141. </Compile>
  142. <Compile Include="BaseMethod\model\InOrdParamEntity.cs" />
  143. <Compile Include="BaseMethod\model\OutOrdParamEntity.cs" />
  144. <Compile Include="BaseMethod\OrderStdSic.cs">
  145. </Compile>
  146. <Compile Include="BaseMethod\PlnGetOrdAmount.cs" />
  147. <Compile Include="BaseMethod\PlnOrdProcRefresCal.cs" />
  148. <Compile Include="BaseMethod\PlnSaleOrderBase.cs" />
  149. <Compile Include="BaseMethod\ToleranceNk.cs">
  150. </Compile>
  151. <Compile Include="BLDEAL\FrmPlnBlReqOrd.cs">
  152. <SubType>Form</SubType>
  153. </Compile>
  154. <Compile Include="BLDEAL\FrmPlnBlReqOrd.Designer.cs">
  155. <DependentUpon>FrmPlnBlReqOrd.cs</DependentUpon>
  156. </Compile>
  157. <Compile Include="BLDEAL\model\PlnBlReqOrdInfEntity.cs" />
  158. <Compile Include="BLL\ComMscPilneBLL.cs" />
  159. <Compile Include="BLL\ComOrdExportBLL.cs" />
  160. <Compile Include="ComPlnJGDJDeal.cs">
  161. <SubType>UserControl</SubType>
  162. </Compile>
  163. <Compile Include="ComPlnJGDJDeal.Designer.cs">
  164. <DependentUpon>ComPlnJGDJDeal.cs</DependentUpon>
  165. </Compile>
  166. <Compile Include="Controls\ButtonKey.cs" />
  167. <Compile Include="Controls\Constant.cs" />
  168. <Compile Include="Controls\FrmMatGpInfo.cs">
  169. <SubType>Form</SubType>
  170. </Compile>
  171. <Compile Include="Controls\FrmMatGpInfo.Designer.cs">
  172. <DependentUpon>FrmMatGpInfo.cs</DependentUpon>
  173. </Compile>
  174. <Compile Include="Controls\PipeManageClass.cs" />
  175. <Compile Include="Controls\PopupTextBox.cs">
  176. <SubType>Form</SubType>
  177. </Compile>
  178. <Compile Include="Controls\PopupTextBox.Designer.cs">
  179. <DependentUpon>PopupTextBox.cs</DependentUpon>
  180. </Compile>
  181. <Compile Include="Controls\WaitingForm.cs">
  182. <SubType>Form</SubType>
  183. </Compile>
  184. <Compile Include="Controls\WaitingForm.designer.cs">
  185. <DependentUpon>WaitingForm.cs</DependentUpon>
  186. </Compile>
  187. <Compile Include="Control\ComMscPilneCtrl.cs">
  188. <SubType>UserControl</SubType>
  189. </Compile>
  190. <Compile Include="Control\ComMscPilneCtrl.Designer.cs">
  191. <DependentUpon>ComMscPilneCtrl.cs</DependentUpon>
  192. </Compile>
  193. <Compile Include="Control\ComOrdExportCtrl.cs">
  194. <SubType>UserControl</SubType>
  195. </Compile>
  196. <Compile Include="Control\ComOrdExportCtrl.Designer.cs">
  197. <DependentUpon>ComOrdExportCtrl.cs</DependentUpon>
  198. </Compile>
  199. <Compile Include="Control\ComOrdJGDJPanel.cs">
  200. <SubType>UserControl</SubType>
  201. </Compile>
  202. <Compile Include="Control\ComOrdJGDJPanel.Designer.cs">
  203. <DependentUpon>ComOrdJGDJPanel.cs</DependentUpon>
  204. </Compile>
  205. <Compile Include="Control\ComQueryPandProcOrd.cs">
  206. <SubType>UserControl</SubType>
  207. </Compile>
  208. <Compile Include="Control\ComQueryPandProcOrd.Designer.cs">
  209. <DependentUpon>ComQueryPandProcOrd.cs</DependentUpon>
  210. </Compile>
  211. <Compile Include="Control\ComQueryPanel.cs">
  212. <SubType>UserControl</SubType>
  213. </Compile>
  214. <Compile Include="Control\ComQueryPanel.Designer.cs">
  215. <DependentUpon>ComQueryPanel.cs</DependentUpon>
  216. </Compile>
  217. <Compile Include="Control\ComQueryPanelProdu.cs">
  218. <SubType>UserControl</SubType>
  219. </Compile>
  220. <Compile Include="Control\ComQueryPanelProdu.Designer.cs">
  221. <DependentUpon>ComQueryPanelProdu.cs</DependentUpon>
  222. </Compile>
  223. <Compile Include="Control\ComQueryPanelSource.cs">
  224. <SubType>UserControl</SubType>
  225. </Compile>
  226. <Compile Include="Control\ComQueryPanelSource.Designer.cs">
  227. <DependentUpon>ComQueryPanelSource.cs</DependentUpon>
  228. </Compile>
  229. <Compile Include="Control\ComQueryPanlInf.cs">
  230. <SubType>UserControl</SubType>
  231. </Compile>
  232. <Compile Include="Control\ComQueryPanlInf.Designer.cs">
  233. <DependentUpon>ComQueryPanlInf.cs</DependentUpon>
  234. </Compile>
  235. <Compile Include="Control\ContorlPlanStatus.cs">
  236. <SubType>UserControl</SubType>
  237. </Compile>
  238. <Compile Include="Control\ContorlPlanStatus.Designer.cs">
  239. <DependentUpon>ContorlPlanStatus.cs</DependentUpon>
  240. </Compile>
  241. <Compile Include="Control\ControlRadioButton.cs">
  242. <SubType>Component</SubType>
  243. </Compile>
  244. <Compile Include="Control\FrmReportLiKu.cs">
  245. <SubType>Form</SubType>
  246. </Compile>
  247. <Compile Include="Control\FrmReportLiKu.Designer.cs">
  248. <DependentUpon>FrmReportLiKu.cs</DependentUpon>
  249. </Compile>
  250. <Compile Include="Control\UserControlSaleordProc.cs">
  251. <SubType>UserControl</SubType>
  252. </Compile>
  253. <Compile Include="Control\UserControlSaleordProc.Designer.cs">
  254. <DependentUpon>UserControlSaleordProc.cs</DependentUpon>
  255. </Compile>
  256. <Compile Include="Entity\CraftFileLv2Entity.cs" />
  257. <Compile Include="Entity\CraftOrdDesignMscPlEntity.cs" />
  258. <Compile Include="Entity\CraftOrdDesignMscPlGzEntity.cs" />
  259. <Compile Include="Entity\CraftOrdDesignMscPlPrcEntity.cs" />
  260. <Compile Include="Entity\FrmJgxsInfoEntity.cs" />
  261. <Compile Include="Entity\FrmRclInfoEntity.cs" />
  262. <Compile Include="Entity\MatGpMEntity.cs" />
  263. <Compile Include="Entity\MscPlineChangeEntity.cs" />
  264. <Compile Include="Entity\PlnOrderDbkEntity.cs" />
  265. <Compile Include="Entity\PlnOrderDbkSEntity.cs" />
  266. <Compile Include="Entity\PlnOrderDownLogEntity.cs" />
  267. <Compile Include="Entity\PlnOrderDzEntity.cs" />
  268. <Compile Include="Entity\PlnOrderJgxEntity.cs" />
  269. <Compile Include="Entity\PlnOrderJgxSEntity.cs" />
  270. <Compile Include="Entity\PlnOrderRclEntity.cs" />
  271. <Compile Include="Entity\PlnOrderRclSEntity.cs" />
  272. <Compile Include="Entity\PlnOrderZgEntity.cs" />
  273. <Compile Include="Entity\PlnOrdJgxSPineEntity.cs" />
  274. <Compile Include="Entity\PlnOrdRclSPineEntity.cs" />
  275. <Compile Include="Entity\PlnReqinfGpEntity.cs" />
  276. <Compile Include="Entity\PlnSaleorderEntity.cs" />
  277. <Compile Include="Entity\PlnSaleordProcEntity.cs" />
  278. <Compile Include="Entity\PreGxInfoEntity.cs" />
  279. <Compile Include="Entity\QcmZgJugdeApplyEntity.cs" />
  280. <Compile Include="Entity\ReportOrderLineDelivery.cs" />
  281. <Compile Include="Entity\SlmBaseMaterialBPlEntity.cs" />
  282. <Compile Include="Entity\SlmBaseMaterialCPlEntity.cs" />
  283. <Compile Include="Entity\SlmBaseMaterialDPlEntity.cs" />
  284. <Compile Include="Entity\SlmBaseMaterialEPlEntity.cs" />
  285. <Compile Include="Entity\SlmBaseMaterialFPlEntity.cs" />
  286. <Compile Include="Entity\SlmBaseMaterialHPlEntity.cs" />
  287. <Compile Include="Entity\SlmBaseMaterialIPlEntity.cs" />
  288. <Compile Include="Entity\SlmBaseMaterialKPlEntity .cs" />
  289. <Compile Include="Entity\SlmOrdDesignBomEntity.cs" />
  290. <Compile Include="Entity\SlmOrderLenEntity.cs" />
  291. <Compile Include="Entity\SlmOrderLinePrdcrEntity.cs" />
  292. <Compile Include="Entity\SlmOrderLinePrdcrLstEntity.cs" />
  293. <Compile Include="FrmApplyRoval.cs">
  294. <SubType>Form</SubType>
  295. </Compile>
  296. <Compile Include="FrmApplyRoval.Designer.cs">
  297. <DependentUpon>FrmApplyRoval.cs</DependentUpon>
  298. </Compile>
  299. <Compile Include="FrmBaseModelLen.cs">
  300. <SubType>Form</SubType>
  301. </Compile>
  302. <Compile Include="FrmBaseModelLen.Designer.cs">
  303. <DependentUpon>FrmBaseModelLen.cs</DependentUpon>
  304. </Compile>
  305. <Compile Include="FrmBlOrderPln.cs">
  306. <SubType>Form</SubType>
  307. </Compile>
  308. <Compile Include="FrmBlOrderPln.Designer.cs">
  309. <DependentUpon>FrmBlOrderPln.cs</DependentUpon>
  310. </Compile>
  311. <Compile Include="FrmConfirmCraft.cs">
  312. <SubType>Form</SubType>
  313. </Compile>
  314. <Compile Include="FrmConfirmCraft.Designer.cs">
  315. <DependentUpon>FrmConfirmCraft.cs</DependentUpon>
  316. </Compile>
  317. <Compile Include="FrmConfirmCraftQuery.cs">
  318. <SubType>Form</SubType>
  319. </Compile>
  320. <Compile Include="FrmConfirmCraftQuery.Designer.cs">
  321. <DependentUpon>FrmConfirmCraftQuery.cs</DependentUpon>
  322. </Compile>
  323. <Compile Include="FrmMatJgMImport.cs">
  324. <SubType>Form</SubType>
  325. </Compile>
  326. <Compile Include="FrmMatJgMImport.Designer.cs">
  327. <DependentUpon>FrmMatJgMImport.cs</DependentUpon>
  328. </Compile>
  329. <Compile Include="frmOrderLenPln.cs">
  330. <SubType>Form</SubType>
  331. </Compile>
  332. <Compile Include="frmOrderLenPln.Designer.cs">
  333. <DependentUpon>frmOrderLenPln.cs</DependentUpon>
  334. </Compile>
  335. <Compile Include="FrmOrderStatusSet.cs">
  336. <SubType>Form</SubType>
  337. </Compile>
  338. <Compile Include="FrmOrderStatusSet.Designer.cs">
  339. <DependentUpon>FrmOrderStatusSet.cs</DependentUpon>
  340. </Compile>
  341. <Compile Include="FrmOrdFinishSet.cs">
  342. <SubType>Form</SubType>
  343. </Compile>
  344. <Compile Include="FrmOrdFinishSet.Designer.cs">
  345. <DependentUpon>FrmOrdFinishSet.cs</DependentUpon>
  346. </Compile>
  347. <Compile Include="FrmPlnModifyOrdDPine.cs">
  348. <SubType>Form</SubType>
  349. </Compile>
  350. <Compile Include="FrmPlnModifyOrdDPine.Designer.cs">
  351. <DependentUpon>FrmPlnModifyOrdDPine.cs</DependentUpon>
  352. </Compile>
  353. <Compile Include="FrmPlnOrdCraftModifyLog.cs">
  354. <SubType>Form</SubType>
  355. </Compile>
  356. <Compile Include="FrmPlnOrdCraftModifyLog.Designer.cs">
  357. <DependentUpon>FrmPlnOrdCraftModifyLog.cs</DependentUpon>
  358. </Compile>
  359. <Compile Include="FrmPlnOrderDownLog.cs">
  360. <SubType>Form</SubType>
  361. </Compile>
  362. <Compile Include="FrmPlnOrderDownLog.Designer.cs">
  363. <DependentUpon>FrmPlnOrderDownLog.cs</DependentUpon>
  364. </Compile>
  365. <Compile Include="FrmPlnOrdJgDjDeal.cs">
  366. <SubType>Form</SubType>
  367. </Compile>
  368. <Compile Include="FrmPlnOrdJgDjDeal.Designer.cs">
  369. <DependentUpon>FrmPlnOrdJgDjDeal.cs</DependentUpon>
  370. </Compile>
  371. <Compile Include="FrmPlnOrdPriority.cs">
  372. <SubType>Form</SubType>
  373. </Compile>
  374. <Compile Include="FrmPlnOrdPriority.Designer.cs">
  375. <DependentUpon>FrmPlnOrdPriority.cs</DependentUpon>
  376. </Compile>
  377. <Compile Include="FrmPlnSaleOrder.cs">
  378. <SubType>Form</SubType>
  379. </Compile>
  380. <Compile Include="FrmPlnSaleOrder.Designer.cs">
  381. <DependentUpon>FrmPlnSaleOrder.cs</DependentUpon>
  382. </Compile>
  383. <Compile Include="FrmQueryOrdProcInf.cs">
  384. <SubType>Form</SubType>
  385. </Compile>
  386. <Compile Include="FrmQueryOrdProcInf.Designer.cs">
  387. <DependentUpon>FrmQueryOrdProcInf.cs</DependentUpon>
  388. </Compile>
  389. <Compile Include="FrmReqApplyInfo.cs">
  390. <SubType>Form</SubType>
  391. </Compile>
  392. <Compile Include="FrmReqApplyInfo.Designer.cs">
  393. <DependentUpon>FrmReqApplyInfo.cs</DependentUpon>
  394. </Compile>
  395. <Compile Include="FrmSaleOrderlog.cs">
  396. <SubType>Form</SubType>
  397. </Compile>
  398. <Compile Include="FrmSaleOrderlog.Designer.cs">
  399. <DependentUpon>FrmSaleOrderlog.cs</DependentUpon>
  400. </Compile>
  401. <Compile Include="FrmSaleOrderReceive.cs">
  402. <SubType>Form</SubType>
  403. </Compile>
  404. <Compile Include="FrmSaleOrderReceive.Designer.cs">
  405. <DependentUpon>FrmSaleOrderReceive.cs</DependentUpon>
  406. </Compile>
  407. <Compile Include="FrmSaleOrdFillApply.cs">
  408. <SubType>Form</SubType>
  409. </Compile>
  410. <Compile Include="FrmSaleOrdFillApply.Designer.cs">
  411. <DependentUpon>FrmSaleOrdFillApply.cs</DependentUpon>
  412. </Compile>
  413. <Compile Include="FrmYieldInOutputQuery.cs">
  414. <SubType>Form</SubType>
  415. </Compile>
  416. <Compile Include="FrmYieldInOutputQuery.Designer.cs">
  417. <DependentUpon>FrmYieldInOutputQuery.cs</DependentUpon>
  418. </Compile>
  419. <Compile Include="InventoryAdjustment\entity\PlnOrderZgSEntity.cs" />
  420. <Compile Include="InventoryAdjustment\entity\PlnOrderZgSOEntity.cs" />
  421. <Compile Include="InventoryAdjustment\entity\PlnZyZgMEntityAc.cs" />
  422. <Compile Include="InventoryAdjustment\InventoryAdjustment.cs">
  423. <SubType>Form</SubType>
  424. </Compile>
  425. <Compile Include="InventoryAdjustment\InventoryAdjustment.Designer.cs">
  426. <DependentUpon>InventoryAdjustment.cs</DependentUpon>
  427. </Compile>
  428. <Compile Include="InventoryAdjustment\TubeRolling.cs">
  429. <SubType>Form</SubType>
  430. </Compile>
  431. <Compile Include="InventoryAdjustment\TubeRolling.Designer.cs">
  432. <DependentUpon>TubeRolling.cs</DependentUpon>
  433. </Compile>
  434. <Compile Include="JGGXPln\BLL\ComPlineTimeBLL.cs" />
  435. <Compile Include="JGGXPln\Control\ComJgMBlOrd.cs">
  436. <SubType>UserControl</SubType>
  437. </Compile>
  438. <Compile Include="JGGXPln\Control\ComJgMBlOrd.Designer.cs">
  439. <DependentUpon>ComJgMBlOrd.cs</DependentUpon>
  440. </Compile>
  441. <Compile Include="JGGXPln\Control\ComPlineTimeCtrl.cs">
  442. <SubType>UserControl</SubType>
  443. </Compile>
  444. <Compile Include="JGGXPln\Control\ComPlineTimeCtrl.Designer.cs">
  445. <DependentUpon>ComPlineTimeCtrl.cs</DependentUpon>
  446. </Compile>
  447. <Compile Include="JGGXPln\Control\ComPlnJgOrdToDd.cs">
  448. <SubType>UserControl</SubType>
  449. </Compile>
  450. <Compile Include="JGGXPln\Control\ComPlnJgOrdToDd.Designer.cs">
  451. <DependentUpon>ComPlnJgOrdToDd.cs</DependentUpon>
  452. </Compile>
  453. <Compile Include="JGGXPln\Entity\CouplingMatMEntity.cs" />
  454. <Compile Include="JGGXPln\Entity\CouplingMatMOrderEntity.cs" />
  455. <Compile Include="JGGXPln\Entity\FrmPlnGxJgMEntity.cs" />
  456. <Compile Include="JGGXPln\Entity\FrmPlnZyJgEntity.cs" />
  457. <Compile Include="JGGXPln\Entity\PlnOrderGxJgCEntity.cs" />
  458. <Compile Include="JGGXPln\Entity\PlnOrderJgEntity.cs" />
  459. <Compile Include="JGGXPln\Entity\PlnOrderJgEntityCraftNo.cs" />
  460. <Compile Include="JGGXPln\Entity\PlnZyJgWorkbillEntity.cs" />
  461. <Compile Include="JGGXPln\FrmCraftJgNoSecond.cs">
  462. <SubType>Form</SubType>
  463. </Compile>
  464. <Compile Include="JGGXPln\FrmCraftJgNoSecond.Designer.cs">
  465. <DependentUpon>FrmCraftJgNoSecond.cs</DependentUpon>
  466. </Compile>
  467. <Compile Include="JGGXPln\FrmJgMPlnZy.cs">
  468. <SubType>Form</SubType>
  469. </Compile>
  470. <Compile Include="JGGXPln\FrmJgMPlnZy.Designer.cs">
  471. <DependentUpon>FrmJgMPlnZy.cs</DependentUpon>
  472. </Compile>
  473. <Compile Include="JGGXPln\FrmJgOperatPln.cs">
  474. <SubType>Form</SubType>
  475. </Compile>
  476. <Compile Include="JGGXPln\FrmJgOperatPln.Designer.cs">
  477. <DependentUpon>FrmJgOperatPln.cs</DependentUpon>
  478. </Compile>
  479. <Compile Include="JGGXPln\FrmJgOrderLk.cs">
  480. <SubType>Form</SubType>
  481. </Compile>
  482. <Compile Include="JGGXPln\FrmJgOrderLk.Designer.cs">
  483. <DependentUpon>FrmJgOrderLk.cs</DependentUpon>
  484. </Compile>
  485. <Compile Include="JGGXPln\FrmJgSecondProcess.cs">
  486. <SubType>Form</SubType>
  487. </Compile>
  488. <Compile Include="JGGXPln\FrmJgSecondProcess.Designer.cs">
  489. <DependentUpon>FrmJgSecondProcess.cs</DependentUpon>
  490. </Compile>
  491. <Compile Include="JGGXPln\FrmJgZYPlnEdit.cs">
  492. <SubType>Form</SubType>
  493. </Compile>
  494. <Compile Include="JGGXPln\FrmJgZYPlnEdit.Designer.cs">
  495. <DependentUpon>FrmJgZYPlnEdit.cs</DependentUpon>
  496. </Compile>
  497. <Compile Include="JGGXPln\FrmPlnZyJgWorkBill.cs">
  498. <SubType>Form</SubType>
  499. </Compile>
  500. <Compile Include="JGGXPln\FrmPlnZyJgWorkBill.Designer.cs">
  501. <DependentUpon>FrmPlnZyJgWorkBill.cs</DependentUpon>
  502. </Compile>
  503. <Compile Include="JGGXPln\FrmSpitBill.cs">
  504. <SubType>Form</SubType>
  505. </Compile>
  506. <Compile Include="JGGXPln\FrmSpitBill.Designer.cs">
  507. <DependentUpon>FrmSpitBill.cs</DependentUpon>
  508. </Compile>
  509. <Compile Include="JGGXPln\model\CouplingMatButtressEntity.cs" />
  510. <Compile Include="JGGXPln\model\MatZcMEntity.cs" />
  511. <Compile Include="JGGXPln\model\PlnGxJgDEntity.cs" />
  512. <Compile Include="JGGXPln\model\PlnGxJgMEntity.cs" />
  513. <Compile Include="JGGXPln\model\PlnGxJgPropEntity.cs" />
  514. <Compile Include="JGGXPln\model\PlnOrdJgEditEntity.cs" />
  515. <Compile Include="JGGXPln\model\PlnZyJgCutEntity.cs" />
  516. <Compile Include="JGGXPln\model\PlnZyJgEntity.cs" />
  517. <Compile Include="JGGXPln\model\PlnZyJgProEntity.cs" />
  518. <Compile Include="JGGXPln\Old\FrmModifyPlnJgM.cs">
  519. <SubType>Form</SubType>
  520. </Compile>
  521. <Compile Include="JGGXPln\Old\FrmModifyPlnJgM.Designer.cs">
  522. <DependentUpon>FrmModifyPlnJgM.cs</DependentUpon>
  523. </Compile>
  524. <Compile Include="JGGXPln\Old\FrmOrderJGGXPln.cs">
  525. <SubType>Form</SubType>
  526. </Compile>
  527. <Compile Include="JGGXPln\Old\FrmOrderJGGXPln.designer.cs">
  528. <DependentUpon>FrmOrderJGGXPln.cs</DependentUpon>
  529. </Compile>
  530. <Compile Include="JGGXPln\Old\PlnGxJgMEntity.cs" />
  531. <Compile Include="JGGXPln\PopupWindow\FrmGXandTime.cs">
  532. <SubType>Form</SubType>
  533. </Compile>
  534. <Compile Include="JGGXPln\PopupWindow\FrmGXandTime.Designer.cs">
  535. <DependentUpon>FrmGXandTime.cs</DependentUpon>
  536. </Compile>
  537. <Compile Include="JGGXPln\PopupWindow\FrmGxJgMPrdcrLst.cs">
  538. <SubType>Form</SubType>
  539. </Compile>
  540. <Compile Include="JGGXPln\PopupWindow\FrmGxJgMPrdcrLst.Designer.cs">
  541. <DependentUpon>FrmGxJgMPrdcrLst.cs</DependentUpon>
  542. </Compile>
  543. <Compile Include="JGGXPln\窗体\FrmJgUseStock.cs">
  544. <SubType>Form</SubType>
  545. </Compile>
  546. <Compile Include="JGGXPln\窗体\FrmJgUseStock.Designer.cs">
  547. <DependentUpon>FrmJgUseStock.cs</DependentUpon>
  548. </Compile>
  549. <Compile Include="JGGXPln\窗体\FrmMatZcM.cs">
  550. <SubType>Form</SubType>
  551. </Compile>
  552. <Compile Include="JGGXPln\窗体\FrmMatZcM.Designer.cs">
  553. <DependentUpon>FrmMatZcM.cs</DependentUpon>
  554. </Compile>
  555. <Compile Include="Object\MatZcMEntity.cs" />
  556. <Compile Include="Object\PlnDbkInOutInfoEntity.cs" />
  557. <Compile Include="Object\PlnOrdCraftFileEntity.cs" />
  558. <Compile Include="Object\PlnOrderJgEntity.cs" />
  559. <Compile Include="Object\PlnOrdJgEditEntity.cs" />
  560. <Compile Include="Object\PlnPorderBlReqEntity.cs" />
  561. <Compile Include="Object\PlnSaleordCrfEditLogEntity.cs" />
  562. <Compile Include="Object\PlnSaleordEntity.cs" />
  563. <Compile Include="Object\PlnSaleOrderQueryEntity.cs" />
  564. <Compile Include="Object\PlnSaleorderRNumEntity.cs" />
  565. <Compile Include="Object\PlnSaleordProcEntity.cs" />
  566. <Compile Include="Object\PlnSaleordSetEntity.cs" />
  567. <Compile Include="Object\SlmBaseMaterialDPlEntity.cs" />
  568. <Compile Include="Object\SlmOrdDesignBomEntity.cs" />
  569. <Compile Include="OrderManage\entity\comBasePassModelEntity.cs" />
  570. <Compile Include="OrderManage\entity\CraftOrdDesignMscPlGxPrlEntity.cs" />
  571. <Compile Include="OrderManage\entity\SlmOrdDesignBomEntity.cs" />
  572. <Compile Include="OrderManage\froms\FrmBomConfirm.cs">
  573. <SubType>Form</SubType>
  574. </Compile>
  575. <Compile Include="OrderManage\froms\FrmBomConfirm.Designer.cs">
  576. <DependentUpon>FrmBomConfirm.cs</DependentUpon>
  577. </Compile>
  578. <Compile Include="OrderManage\froms\FrmGradeChoose.cs">
  579. <SubType>Form</SubType>
  580. </Compile>
  581. <Compile Include="OrderManage\froms\FrmGradeChoose.Designer.cs">
  582. <DependentUpon>FrmGradeChoose.cs</DependentUpon>
  583. </Compile>
  584. <Compile Include="PlanComm\ExcelHelper.cs" />
  585. <Compile Include="PlanComm\ExclReportHelper.cs" />
  586. <Compile Include="PlanComm\LogOperator.cs" />
  587. <Compile Include="PlanComm\NPOIHelper.cs" />
  588. <Compile Include="PlanComm\PlanComm.cs" />
  589. <Compile Include="PlanComm\RollLenCal.cs" />
  590. <Compile Include="PlanComm\TreeViewHelper.cs" />
  591. <Compile Include="PlanStove\Comm\ClassDef.cs" />
  592. <Compile Include="PlanStove\Comm\CommHelper.cs" />
  593. <Compile Include="PlanStove\Comm\CustomInfoDef.cs" />
  594. <Compile Include="PlanStove\Comm\DBComm.cs" />
  595. <Compile Include="PlanStove\Comm\MethodDef.cs" />
  596. <Compile Include="PlanStove\Comm\PROCESS_CODEDef.cs" />
  597. <Compile Include="PlanStove\Comm\SqlIDDef.cs" />
  598. <Compile Include="PlanStove\Comm\TableNameDef.cs" />
  599. <Compile Include="PlanStove\DAL\BaseEntityDAL.cs" />
  600. <Compile Include="PlanStove\Dlg\FrmMaterialChoose.cs">
  601. <SubType>Form</SubType>
  602. </Compile>
  603. <Compile Include="PlanStove\Dlg\FrmMaterialChoose.Designer.cs">
  604. <DependentUpon>FrmMaterialChoose.cs</DependentUpon>
  605. </Compile>
  606. <Compile Include="PlanStove\Dlg\FrmMaterialSeparate.cs">
  607. <SubType>Form</SubType>
  608. </Compile>
  609. <Compile Include="PlanStove\Dlg\FrmMaterialSeparate.Designer.cs">
  610. <DependentUpon>FrmMaterialSeparate.cs</DependentUpon>
  611. </Compile>
  612. <Compile Include="PlanStove\entity\OrderBase.cs" />
  613. <Compile Include="PlanStove\entity\PlnMaterialEntity.cs" />
  614. <Compile Include="PlanStove\entity\PlnOrderDbkSEntity.cs" />
  615. <Compile Include="PlanStove\entity\PlnOrderJgxSEntity.cs" />
  616. <Compile Include="PlanStove\entity\PlnOrderRclSEntity.cs" />
  617. <Compile Include="PlanStove\entity\PlnOrderZgSEntity.cs" />
  618. <Compile Include="PlanStove\entity\PlnZyDbkMEntity.cs" />
  619. <Compile Include="PlanStove\entity\PlnZyJgxCEntity.cs" />
  620. <Compile Include="PlanStove\entity\PlnZyJgxMEntity.cs" />
  621. <Compile Include="PlanStove\entity\PlnZyRclMEntity.cs" />
  622. <Compile Include="PlanStove\entity\PlnZyZgCEntity.cs" />
  623. <Compile Include="PlanStove\entity\PlnZyZgCEntity1.cs" />
  624. <Compile Include="PlanStove\entity\PlnZyZgMEntity.cs" />
  625. <Compile Include="PlanStove\entity\PlnZyZgMEntity1.cs" />
  626. <Compile Include="PlanStove\entity\ZyBase.cs" />
  627. <Compile Include="PlanStove\frm\FrmPlanStovecs.cs">
  628. <SubType>Form</SubType>
  629. </Compile>
  630. <Compile Include="PlanStove\frm\FrmPlanStovecs.Designer.cs">
  631. <DependentUpon>FrmPlanStovecs.cs</DependentUpon>
  632. </Compile>
  633. <Compile Include="PopupWindow\CouplingMatMEntity.cs" />
  634. <Compile Include="PopupWindow\dlgOrderAskDown.cs">
  635. <SubType>Form</SubType>
  636. </Compile>
  637. <Compile Include="PopupWindow\dlgOrderAskDown.designer.cs">
  638. <DependentUpon>dlgOrderAskDown.cs</DependentUpon>
  639. </Compile>
  640. <Compile Include="PopupWindow\dlgOrderAskLook .cs">
  641. <SubType>Form</SubType>
  642. </Compile>
  643. <Compile Include="PopupWindow\dlgOrderAskLook .Designer.cs">
  644. <DependentUpon>dlgOrderAskLook .cs</DependentUpon>
  645. </Compile>
  646. <Compile Include="PopupWindow\FrmAddEinSpec.cs">
  647. <SubType>Form</SubType>
  648. </Compile>
  649. <Compile Include="PopupWindow\FrmAddEinSpec.Designer.cs">
  650. <DependentUpon>FrmAddEinSpec.cs</DependentUpon>
  651. </Compile>
  652. <Compile Include="PopupWindow\FrmCalculateDbk.cs">
  653. <SubType>Form</SubType>
  654. </Compile>
  655. <Compile Include="PopupWindow\FrmCalculateDbk.Designer.cs">
  656. <DependentUpon>FrmCalculateDbk.cs</DependentUpon>
  657. </Compile>
  658. <Compile Include="PopupWindow\FrmCancelPretreat.cs">
  659. <SubType>Form</SubType>
  660. </Compile>
  661. <Compile Include="PopupWindow\FrmCancelPretreat.Designer.cs">
  662. <DependentUpon>FrmCancelPretreat.cs</DependentUpon>
  663. </Compile>
  664. <Compile Include="PopupWindow\FrmChangeBomDp.cs">
  665. <SubType>Form</SubType>
  666. </Compile>
  667. <Compile Include="PopupWindow\FrmChangeBomDp.Designer.cs">
  668. <DependentUpon>FrmChangeBomDp.cs</DependentUpon>
  669. </Compile>
  670. <Compile Include="PopupWindow\FrmChangeIndex.cs">
  671. <SubType>Form</SubType>
  672. </Compile>
  673. <Compile Include="PopupWindow\FrmChangeIndex.Designer.cs">
  674. <DependentUpon>FrmChangeIndex.cs</DependentUpon>
  675. </Compile>
  676. <Compile Include="PopupWindow\FrmGroupofDjBl.cs">
  677. <SubType>Form</SubType>
  678. </Compile>
  679. <Compile Include="PopupWindow\FrmGroupofDjBl.Designer.cs">
  680. <DependentUpon>FrmGroupofDjBl.cs</DependentUpon>
  681. </Compile>
  682. <Compile Include="PopupWindow\FrmImportSetMatJg.cs">
  683. <SubType>Form</SubType>
  684. </Compile>
  685. <Compile Include="PopupWindow\FrmImportSetMatJg.Designer.cs">
  686. <DependentUpon>FrmImportSetMatJg.cs</DependentUpon>
  687. </Compile>
  688. <Compile Include="PopupWindow\FrmImportSetOrder.cs">
  689. <SubType>Form</SubType>
  690. </Compile>
  691. <Compile Include="PopupWindow\FrmImportSetOrder.Designer.cs">
  692. <DependentUpon>FrmImportSetOrder.cs</DependentUpon>
  693. </Compile>
  694. <Compile Include="PopupWindow\FrmImportSetPlnZg.cs">
  695. <SubType>Form</SubType>
  696. </Compile>
  697. <Compile Include="PopupWindow\FrmImportSetPlnZg.Designer.cs">
  698. <DependentUpon>FrmImportSetPlnZg.cs</DependentUpon>
  699. </Compile>
  700. <Compile Include="PopupWindow\FrmMatJgMImport.cs">
  701. <SubType>Form</SubType>
  702. </Compile>
  703. <Compile Include="PopupWindow\FrmMatJgMImport.Designer.cs">
  704. <DependentUpon>FrmMatJgMImport.cs</DependentUpon>
  705. </Compile>
  706. <Compile Include="PopupWindow\FrmOrderCraftImport.cs">
  707. <SubType>Form</SubType>
  708. </Compile>
  709. <Compile Include="PopupWindow\FrmOrderCraftImport.Designer.cs">
  710. <DependentUpon>FrmOrderCraftImport.cs</DependentUpon>
  711. </Compile>
  712. <Compile Include="PopupWindow\FrmOrdLinePrdcrLst.cs">
  713. <SubType>Form</SubType>
  714. </Compile>
  715. <Compile Include="PopupWindow\FrmOrdLinePrdcrLst.Designer.cs">
  716. <DependentUpon>FrmOrdLinePrdcrLst.cs</DependentUpon>
  717. </Compile>
  718. <Compile Include="PopupWindow\FrmOrdProcessBasePl.cs">
  719. <SubType>Form</SubType>
  720. </Compile>
  721. <Compile Include="PopupWindow\FrmOrdProcessBasePl.Designer.cs">
  722. <DependentUpon>FrmOrdProcessBasePl.cs</DependentUpon>
  723. </Compile>
  724. <Compile Include="PopupWindow\FrmOutExcel.cs">
  725. <SubType>Form</SubType>
  726. </Compile>
  727. <Compile Include="PopupWindow\FrmOutExcel.Designer.cs">
  728. <DependentUpon>FrmOutExcel.cs</DependentUpon>
  729. </Compile>
  730. <Compile Include="PopupWindow\FrmReqRequest.cs">
  731. <SubType>Form</SubType>
  732. </Compile>
  733. <Compile Include="PopupWindow\FrmReqRequest.Designer.cs">
  734. <DependentUpon>FrmReqRequest.cs</DependentUpon>
  735. </Compile>
  736. <Compile Include="PopupWindow\FrmReqRollMonth.cs">
  737. <SubType>Form</SubType>
  738. </Compile>
  739. <Compile Include="PopupWindow\FrmReqRollMonth.Designer.cs">
  740. <DependentUpon>FrmReqRollMonth.cs</DependentUpon>
  741. </Compile>
  742. <Compile Include="PopupWindow\FrmUpsettingDialExpansion.cs">
  743. <SubType>Form</SubType>
  744. </Compile>
  745. <Compile Include="PopupWindow\FrmUpsettingDialExpansion.Designer.cs">
  746. <DependentUpon>FrmUpsettingDialExpansion.cs</DependentUpon>
  747. </Compile>
  748. <Compile Include="Properties\AssemblyInfo.cs" />
  749. <Compile Include="Properties\Resources.Designer.cs">
  750. <AutoGen>True</AutoGen>
  751. <DesignTime>True</DesignTime>
  752. <DependentUpon>Resources.resx</DependentUpon>
  753. </Compile>
  754. <Compile Include="Resources\MyResource.Designer.cs" />
  755. <Compile Include="坯料测算\FrmPlnOrderCS.cs">
  756. <SubType>Form</SubType>
  757. </Compile>
  758. <Compile Include="坯料测算\FrmPlnOrderCS.Designer.cs">
  759. <DependentUpon>FrmPlnOrderCS.cs</DependentUpon>
  760. </Compile>
  761. <Compile Include="工序排产\control\BaseMandrelSpec.cs">
  762. <SubType>UserControl</SubType>
  763. </Compile>
  764. <Compile Include="工序排产\control\BaseMandrelSpec.Designer.cs">
  765. <DependentUpon>BaseMandrelSpec.cs</DependentUpon>
  766. </Compile>
  767. <Compile Include="工序排产\control\ContorlPlanStatusBL.cs">
  768. <SubType>UserControl</SubType>
  769. </Compile>
  770. <Compile Include="工序排产\control\ContorlPlanStatusBL.Designer.cs">
  771. <DependentUpon>ContorlPlanStatusBL.cs</DependentUpon>
  772. </Compile>
  773. <Compile Include="工序排产\control\PagingControl.cs">
  774. <SubType>UserControl</SubType>
  775. </Compile>
  776. <Compile Include="工序排产\control\PagingControl.Designer.cs">
  777. <DependentUpon>PagingControl.cs</DependentUpon>
  778. </Compile>
  779. <Compile Include="工序排产\entity\ComBaseMandrelEntity.cs" />
  780. <Compile Include="工序排产\entity\ComBaseMandrelSpecEntity.cs" />
  781. <Compile Include="工序排产\entity\PlnGxJgPropCEntity.cs" />
  782. <Compile Include="工序排产\entity\PlnGxJgPropSEntity.cs" />
  783. <Compile Include="工序排产\entity\PlnGxJgPropSEntityAmoun.cs" />
  784. <Compile Include="工序排产\entity\PlnOrderCastOSEntity.cs" />
  785. <Compile Include="工序排产\entity\PlnOrderCastSEntity.cs" />
  786. <Compile Include="工序排产\entity\PlnOrderDbkSEntityAmoun.cs" />
  787. <Compile Include="工序排产\entity\PlnOrderDzSEntity.cs" />
  788. <Compile Include="工序排产\entity\PlnOrderDzSOEntity.cs" />
  789. <Compile Include="工序排产\entity\PlnOrderJgxSEntityAmoun.cs" />
  790. <Compile Include="工序排产\entity\PlnOrderRclSEntityAmoun.cs" />
  791. <Compile Include="工序排产\entity\PlnOrderZgSEntity.cs" />
  792. <Compile Include="工序排产\entity\PlnOrderZgSEntityAmoun.cs" />
  793. <Compile Include="工序排产\entity\PlnOrderZgSOEntity.cs" />
  794. <Compile Include="工序排产\entity\PlnPassmodelEntity.cs" />
  795. <Compile Include="工序排产\entity\PlnPorderBlReqEntity.cs" />
  796. <Compile Include="工序排产\entity\PlnZyJgxReadyEntityHb.cs" />
  797. <Compile Include="工序排产\entity\PlnZySharM.cs" />
  798. <Compile Include="工序排产\entity\PlnZyZgMEntityAc.cs" />
  799. <Compile Include="工序排产\entity\TPoDemandPlanEntity.cs" />
  800. <Compile Include="工序排产\FrmBaseMandrelSpec.cs">
  801. <SubType>Form</SubType>
  802. </Compile>
  803. <Compile Include="工序排产\FrmBaseMandrelSpec.Designer.cs">
  804. <DependentUpon>FrmBaseMandrelSpec.cs</DependentUpon>
  805. </Compile>
  806. <Compile Include="工序排产\FrmComBaseMandrel.cs">
  807. <SubType>Form</SubType>
  808. </Compile>
  809. <Compile Include="工序排产\FrmComBaseMandrel.Designer.cs">
  810. <DependentUpon>FrmComBaseMandrel.cs</DependentUpon>
  811. </Compile>
  812. <Compile Include="工序排产\FrmDiameterMandrel.cs">
  813. <SubType>Form</SubType>
  814. </Compile>
  815. <Compile Include="工序排产\FrmDiameterMandrel.Designer.cs">
  816. <DependentUpon>FrmDiameterMandrel.cs</DependentUpon>
  817. </Compile>
  818. <Compile Include="工序排产\FrmJgProps.cs">
  819. <SubType>Form</SubType>
  820. </Compile>
  821. <Compile Include="工序排产\FrmJgProps.Designer.cs">
  822. <DependentUpon>FrmJgProps.cs</DependentUpon>
  823. </Compile>
  824. <Compile Include="工序排产\FrmMergeJgxM.cs">
  825. <SubType>Form</SubType>
  826. </Compile>
  827. <Compile Include="工序排产\FrmMergeJgxM.Designer.cs">
  828. <DependentUpon>FrmMergeJgxM.cs</DependentUpon>
  829. </Compile>
  830. <Compile Include="工序排产\FrmOrderBlReq.cs">
  831. <SubType>Form</SubType>
  832. </Compile>
  833. <Compile Include="工序排产\FrmOrderBlReq.Designer.cs">
  834. <DependentUpon>FrmOrderBlReq.cs</DependentUpon>
  835. </Compile>
  836. <Compile Include="工序排产\FrmPlnOrderDbkSQuery.cs">
  837. <SubType>Form</SubType>
  838. </Compile>
  839. <Compile Include="工序排产\FrmPlnOrderDbkSQuery.Designer.cs">
  840. <DependentUpon>FrmPlnOrderDbkSQuery.cs</DependentUpon>
  841. </Compile>
  842. <Compile Include="工序排产\FrmPlnOrderDzS.cs">
  843. <SubType>Form</SubType>
  844. </Compile>
  845. <Compile Include="工序排产\FrmPlnOrderDzS.Designer.cs">
  846. <DependentUpon>FrmPlnOrderDzS.cs</DependentUpon>
  847. </Compile>
  848. <Compile Include="工序排产\FrmPlnOrderJgxSQuery.cs">
  849. <SubType>Form</SubType>
  850. </Compile>
  851. <Compile Include="工序排产\FrmPlnOrderJgxSQuery.Designer.cs">
  852. <DependentUpon>FrmPlnOrderJgxSQuery.cs</DependentUpon>
  853. </Compile>
  854. <Compile Include="工序排产\FrmPlnOrderRclSQuery.cs">
  855. <SubType>Form</SubType>
  856. </Compile>
  857. <Compile Include="工序排产\FrmPlnOrderRclSQuery.Designer.cs">
  858. <DependentUpon>FrmPlnOrderRclSQuery.cs</DependentUpon>
  859. </Compile>
  860. <Compile Include="工序排产\FrmPlnOrderZgS.cs">
  861. <SubType>Form</SubType>
  862. </Compile>
  863. <Compile Include="工序排产\FrmPlnOrderZgS.Designer.cs">
  864. <DependentUpon>FrmPlnOrderZgS.cs</DependentUpon>
  865. </Compile>
  866. <Compile Include="工序排产\FrmPlnOrderZgSEasy.cs">
  867. <SubType>Form</SubType>
  868. </Compile>
  869. <Compile Include="工序排产\FrmPlnOrderZgSEasy.Designer.cs">
  870. <DependentUpon>FrmPlnOrderZgSEasy.cs</DependentUpon>
  871. </Compile>
  872. <Compile Include="工序排产\FrmPlnOrderZgSL1.cs">
  873. <SubType>Form</SubType>
  874. </Compile>
  875. <Compile Include="工序排产\FrmPlnOrderZgSL1.Designer.cs">
  876. <DependentUpon>FrmPlnOrderZgSL1.cs</DependentUpon>
  877. </Compile>
  878. <Compile Include="工序排产\FrmPlnOrderZgSMES.cs">
  879. <SubType>Form</SubType>
  880. </Compile>
  881. <Compile Include="工序排产\FrmPlnOrderZgSMES.Designer.cs">
  882. <DependentUpon>FrmPlnOrderZgSMES.cs</DependentUpon>
  883. </Compile>
  884. <Compile Include="工序排产\FrmPlnOrderZgSQuery.cs">
  885. <SubType>Form</SubType>
  886. </Compile>
  887. <Compile Include="工序排产\FrmPlnOrderZgSQuery.Designer.cs">
  888. <DependentUpon>FrmPlnOrderZgSQuery.cs</DependentUpon>
  889. </Compile>
  890. <Compile Include="工序排产\FrmPlnOrderZzS.cs">
  891. <SubType>Form</SubType>
  892. </Compile>
  893. <Compile Include="工序排产\FrmPlnOrderZzS.Designer.cs">
  894. <DependentUpon>FrmPlnOrderZzS.cs</DependentUpon>
  895. </Compile>
  896. <Compile Include="工序排产\FrmPlnPassmodel.cs">
  897. <SubType>Form</SubType>
  898. </Compile>
  899. <Compile Include="工序排产\FrmPlnPassmodel.Designer.cs">
  900. <DependentUpon>FrmPlnPassmodel.cs</DependentUpon>
  901. </Compile>
  902. <Compile Include="工序排产\FrmProdSchAmount.cs">
  903. <SubType>Form</SubType>
  904. </Compile>
  905. <Compile Include="工序排产\FrmProdSchAmount.Designer.cs">
  906. <DependentUpon>FrmProdSchAmount.cs</DependentUpon>
  907. </Compile>
  908. <Compile Include="工序排产\FrmProdSchAmountDbk.cs">
  909. <SubType>Form</SubType>
  910. </Compile>
  911. <Compile Include="工序排产\FrmProdSchAmountDbk.Designer.cs">
  912. <DependentUpon>FrmProdSchAmountDbk.cs</DependentUpon>
  913. </Compile>
  914. <Compile Include="工序排产\FrmProdSchAmountJg.cs">
  915. <SubType>Form</SubType>
  916. </Compile>
  917. <Compile Include="工序排产\FrmProdSchAmountJg.Designer.cs">
  918. <DependentUpon>FrmProdSchAmountJg.cs</DependentUpon>
  919. </Compile>
  920. <Compile Include="工序排产\FrmProdSchAmountJgx.cs">
  921. <SubType>Form</SubType>
  922. </Compile>
  923. <Compile Include="工序排产\FrmProdSchAmountJgx.Designer.cs">
  924. <DependentUpon>FrmProdSchAmountJgx.cs</DependentUpon>
  925. </Compile>
  926. <Compile Include="工序排产\FrmProdSchAmountRcl.cs">
  927. <SubType>Form</SubType>
  928. </Compile>
  929. <Compile Include="工序排产\FrmProdSchAmountRcl.Designer.cs">
  930. <DependentUpon>FrmProdSchAmountRcl.cs</DependentUpon>
  931. </Compile>
  932. <Compile Include="工序排产\FrmZyMerge.cs">
  933. <SubType>Form</SubType>
  934. </Compile>
  935. <Compile Include="工序排产\FrmZyMerge.Designer.cs">
  936. <DependentUpon>FrmZyMerge.cs</DependentUpon>
  937. </Compile>
  938. <Compile Include="工序排产\ProducEntity.cs" />
  939. <Compile Include="工序排产\ProducHelper.cs" />
  940. <Compile Include="报表\entity\JGInformationEntity.cs" />
  941. <Compile Include="报表\FrmJGInformation.cs">
  942. <SubType>Form</SubType>
  943. </Compile>
  944. <Compile Include="报表\FrmJGInformation.Designer.cs">
  945. <DependentUpon>FrmJGInformation.cs</DependentUpon>
  946. </Compile>
  947. <Compile Include="报表\FrmProductionSchedulingAndCoupling.cs">
  948. <SubType>Form</SubType>
  949. </Compile>
  950. <Compile Include="报表\FrmProductionSchedulingAndCoupling.Designer.cs">
  951. <DependentUpon>FrmProductionSchedulingAndCoupling.cs</DependentUpon>
  952. </Compile>
  953. <Compile Include="炉计划\ComPlanEndDbk.cs">
  954. <SubType>UserControl</SubType>
  955. </Compile>
  956. <Compile Include="炉计划\ComPlanEndDbk.Designer.cs">
  957. <DependentUpon>ComPlanEndDbk.cs</DependentUpon>
  958. </Compile>
  959. <Compile Include="炉计划\ComPlanEndJgx.cs">
  960. <SubType>UserControl</SubType>
  961. </Compile>
  962. <Compile Include="炉计划\ComPlanEndJgx.Designer.cs">
  963. <DependentUpon>ComPlanEndJgx.cs</DependentUpon>
  964. </Compile>
  965. <Compile Include="炉计划\ComPlanEndRcl.cs">
  966. <SubType>UserControl</SubType>
  967. </Compile>
  968. <Compile Include="炉计划\ComPlanEndRcl.Designer.cs">
  969. <DependentUpon>ComPlanEndRcl.cs</DependentUpon>
  970. </Compile>
  971. <Compile Include="炉计划\ComPlanEndZg.cs">
  972. <SubType>UserControl</SubType>
  973. </Compile>
  974. <Compile Include="炉计划\ComPlanEndZg.Designer.cs">
  975. <DependentUpon>ComPlanEndZg.cs</DependentUpon>
  976. </Compile>
  977. <Compile Include="炉计划\Entity\MatBcMEntity.cs" />
  978. <Compile Include="炉计划\Entity\MatBcMEntity3.cs" />
  979. <Compile Include="炉计划\Entity\MatBcMEntityDbk.cs" />
  980. <Compile Include="炉计划\Entity\MatBcMEntityEnd.cs" />
  981. <Compile Include="炉计划\Entity\MatBcTrackEntity.cs" />
  982. <Compile Include="炉计划\Entity\MaterialChooseEntity.cs" />
  983. <Compile Include="炉计划\Entity\MatGpMEntity.cs" />
  984. <Compile Include="炉计划\Entity\MatGpMEntityLk.cs" />
  985. <Compile Include="炉计划\Entity\MatGpMEntitySteer.cs" />
  986. <Compile Include="炉计划\Entity\MatGpTrackEntity.cs" />
  987. <Compile Include="炉计划\Entity\PlnOrderDbkSEntity.cs" />
  988. <Compile Include="炉计划\Entity\PlnOrderZgSOEntityGp.cs" />
  989. <Compile Include="炉计划\Entity\PlnSaleOrderJgEntity.cs" />
  990. <Compile Include="炉计划\Entity\PlnZyDbkCEntity.cs" />
  991. <Compile Include="炉计划\Entity\PlnZyDbkMEntity.cs" />
  992. <Compile Include="炉计划\Entity\PlnZyDbkMEOntity.cs" />
  993. <Compile Include="炉计划\Entity\PlnZyDbkReadyEntity.cs" />
  994. <Compile Include="炉计划\Entity\PlnZyDzCEntity.cs" />
  995. <Compile Include="炉计划\Entity\PlnZyDzMCEntity.cs" />
  996. <Compile Include="炉计划\Entity\PlnZyDzMEntity.cs" />
  997. <Compile Include="炉计划\Entity\PlnZyDzMEOntity.cs" />
  998. <Compile Include="炉计划\Entity\PlnZyJgCEntity.cs" />
  999. <Compile Include="炉计划\Entity\PlnZyJgMEntity.cs" />
  1000. <Compile Include="炉计划\Entity\PlnZyJgMEOntity.cs" />
  1001. <Compile Include="炉计划\Entity\PlnZyJgReadyEntity.cs" />
  1002. <Compile Include="炉计划\Entity\PlnZyJgxCEntity.cs" />
  1003. <Compile Include="炉计划\Entity\PlnZyJgxMEntity.cs" />
  1004. <Compile Include="炉计划\Entity\PlnZyJgxMEOntity.cs" />
  1005. <Compile Include="炉计划\Entity\PlnZyJgxReadyEntity.cs" />
  1006. <Compile Include="炉计划\Entity\PlnZyRclCEntity.cs" />
  1007. <Compile Include="炉计划\Entity\PlnZyRclMEntity.cs" />
  1008. <Compile Include="炉计划\Entity\PlnZyRclMEOntity.cs" />
  1009. <Compile Include="炉计划\Entity\PlnZyRclReadyEntity.cs" />
  1010. <Compile Include="炉计划\Entity\PlnZyZgCEntity.cs" />
  1011. <Compile Include="炉计划\Entity\PlnZyZgMCEntity.cs" />
  1012. <Compile Include="炉计划\Entity\PlnZyZgMEntity.cs" />
  1013. <Compile Include="炉计划\Entity\PlnZyZgMEOntity.cs" />
  1014. <Compile Include="炉计划\Entity\ProducEntityZyM.cs" />
  1015. <Compile Include="炉计划\Entity\QcmBcJudgeChangeEntity.cs" />
  1016. <Compile Include="炉计划\FrmEndLibrary.cs">
  1017. <SubType>Form</SubType>
  1018. </Compile>
  1019. <Compile Include="炉计划\FrmEndLibrary.Designer.cs">
  1020. <DependentUpon>FrmEndLibrary.cs</DependentUpon>
  1021. </Compile>
  1022. <Compile Include="炉计划\FrmMaterialChoose.cs">
  1023. <SubType>Form</SubType>
  1024. </Compile>
  1025. <Compile Include="炉计划\FrmMaterialChoose.Designer.cs">
  1026. <DependentUpon>FrmMaterialChoose.cs</DependentUpon>
  1027. </Compile>
  1028. <Compile Include="炉计划\FrmMaterialMonomer.cs">
  1029. <SubType>Form</SubType>
  1030. </Compile>
  1031. <Compile Include="炉计划\FrmMaterialMonomer.Designer.cs">
  1032. <DependentUpon>FrmMaterialMonomer.cs</DependentUpon>
  1033. </Compile>
  1034. <Compile Include="炉计划\FrmMatNo.cs">
  1035. <SubType>Form</SubType>
  1036. </Compile>
  1037. <Compile Include="炉计划\FrmMatNo.Designer.cs">
  1038. <DependentUpon>FrmMatNo.cs</DependentUpon>
  1039. </Compile>
  1040. <Compile Include="炉计划\FrmPlanMaterialDbk.cs">
  1041. <SubType>Form</SubType>
  1042. </Compile>
  1043. <Compile Include="炉计划\FrmPlanMaterialDbk.Designer.cs">
  1044. <DependentUpon>FrmPlanMaterialDbk.cs</DependentUpon>
  1045. </Compile>
  1046. <Compile Include="炉计划\FrmPlanMaterialJg.cs">
  1047. <SubType>Form</SubType>
  1048. </Compile>
  1049. <Compile Include="炉计划\FrmPlanMaterialJg.Designer.cs">
  1050. <DependentUpon>FrmPlanMaterialJg.cs</DependentUpon>
  1051. </Compile>
  1052. <Compile Include="炉计划\FrmPlanMaterialJgx.cs">
  1053. <SubType>Form</SubType>
  1054. </Compile>
  1055. <Compile Include="炉计划\FrmPlanMaterialJgx.Designer.cs">
  1056. <DependentUpon>FrmPlanMaterialJgx.cs</DependentUpon>
  1057. </Compile>
  1058. <Compile Include="炉计划\FrmPlanMaterialRcl.cs">
  1059. <SubType>Form</SubType>
  1060. </Compile>
  1061. <Compile Include="炉计划\FrmPlanMaterialRcl.Designer.cs">
  1062. <DependentUpon>FrmPlanMaterialRcl.cs</DependentUpon>
  1063. </Compile>
  1064. <Compile Include="炉计划\FrmPlanMaterialSelection.cs">
  1065. <SubType>Form</SubType>
  1066. </Compile>
  1067. <Compile Include="炉计划\FrmPlanMaterialSelection.Designer.cs">
  1068. <DependentUpon>FrmPlanMaterialSelection.cs</DependentUpon>
  1069. </Compile>
  1070. <Compile Include="炉计划\FrmPlanSteelMakMod.cs">
  1071. <SubType>Form</SubType>
  1072. </Compile>
  1073. <Compile Include="炉计划\FrmPlanSteelMakMod.Designer.cs">
  1074. <DependentUpon>FrmPlanSteelMakMod.cs</DependentUpon>
  1075. </Compile>
  1076. <Compile Include="炉计划\FrmPlanStoveC.cs">
  1077. <SubType>Form</SubType>
  1078. </Compile>
  1079. <Compile Include="炉计划\FrmPlanStoveC.Designer.cs">
  1080. <DependentUpon>FrmPlanStoveC.cs</DependentUpon>
  1081. </Compile>
  1082. <Compile Include="炉计划\FrmPlanStoveD.cs">
  1083. <SubType>Form</SubType>
  1084. </Compile>
  1085. <Compile Include="炉计划\FrmPlanStoveD.Designer.cs">
  1086. <DependentUpon>FrmPlanStoveD.cs</DependentUpon>
  1087. </Compile>
  1088. <Compile Include="炉计划\FrmPlanStoveE.cs">
  1089. <SubType>Form</SubType>
  1090. </Compile>
  1091. <Compile Include="炉计划\FrmPlanStoveE.Designer.cs">
  1092. <DependentUpon>FrmPlanStoveE.cs</DependentUpon>
  1093. </Compile>
  1094. <Compile Include="炉计划\FrmPlanStoveF.cs">
  1095. <SubType>Form</SubType>
  1096. </Compile>
  1097. <Compile Include="炉计划\FrmPlanStoveF.Designer.cs">
  1098. <DependentUpon>FrmPlanStoveF.cs</DependentUpon>
  1099. </Compile>
  1100. <Compile Include="炉计划\FrmPlanStoveG.cs">
  1101. <SubType>Form</SubType>
  1102. </Compile>
  1103. <Compile Include="炉计划\FrmPlanStoveG.Designer.cs">
  1104. <DependentUpon>FrmPlanStoveG.cs</DependentUpon>
  1105. </Compile>
  1106. <Compile Include="炉计划\FrmPlanStoveH.cs">
  1107. <SubType>Form</SubType>
  1108. </Compile>
  1109. <Compile Include="炉计划\FrmPlanStoveH.Designer.cs">
  1110. <DependentUpon>FrmPlanStoveH.cs</DependentUpon>
  1111. </Compile>
  1112. <Compile Include="炉计划\FrmPlnFurnace.cs">
  1113. <SubType>Form</SubType>
  1114. </Compile>
  1115. <Compile Include="炉计划\FrmPlnFurnace.Designer.cs">
  1116. <DependentUpon>FrmPlnFurnace.cs</DependentUpon>
  1117. </Compile>
  1118. <Compile Include="炉计划\FrmRollTubeLibraryDbk.cs">
  1119. <SubType>Form</SubType>
  1120. </Compile>
  1121. <Compile Include="炉计划\FrmRollTubeLibraryDbk.Designer.cs">
  1122. <DependentUpon>FrmRollTubeLibraryDbk.cs</DependentUpon>
  1123. </Compile>
  1124. <Compile Include="炉计划\FrmRollTubeLibraryJg.cs">
  1125. <SubType>Form</SubType>
  1126. </Compile>
  1127. <Compile Include="炉计划\FrmRollTubeLibraryJg.Designer.cs">
  1128. <DependentUpon>FrmRollTubeLibraryJg.cs</DependentUpon>
  1129. </Compile>
  1130. <Compile Include="炉计划\FrmRollTubeLibraryJgx.cs">
  1131. <SubType>Form</SubType>
  1132. </Compile>
  1133. <Compile Include="炉计划\FrmRollTubeLibraryJgx.Designer.cs">
  1134. <DependentUpon>FrmRollTubeLibraryJgx.cs</DependentUpon>
  1135. </Compile>
  1136. <Compile Include="炉计划\FrmRollTubeLibraryRcl.cs">
  1137. <SubType>Form</SubType>
  1138. </Compile>
  1139. <Compile Include="炉计划\FrmRollTubeLibraryRcl.Designer.cs">
  1140. <DependentUpon>FrmRollTubeLibraryRcl.cs</DependentUpon>
  1141. </Compile>
  1142. <Compile Include="炉计划\FrmRollTubeLibraryZg.cs">
  1143. <SubType>Form</SubType>
  1144. </Compile>
  1145. <Compile Include="炉计划\FrmRollTubeLibraryZg.Designer.cs">
  1146. <DependentUpon>FrmRollTubeLibraryZg.cs</DependentUpon>
  1147. </Compile>
  1148. <Compile Include="炉计划\FrmSteelPlnZgMod.cs">
  1149. <SubType>Form</SubType>
  1150. </Compile>
  1151. <Compile Include="炉计划\FrmSteelPlnZgMod.Designer.cs">
  1152. <DependentUpon>FrmSteelPlnZgMod.cs</DependentUpon>
  1153. </Compile>
  1154. <Compile Include="炉计划\Tool\BaseInfoPopup.cs">
  1155. <SubType>Form</SubType>
  1156. </Compile>
  1157. <Compile Include="炉计划\Tool\BaseInfoPopup.Designer.cs">
  1158. <DependentUpon>BaseInfoPopup.cs</DependentUpon>
  1159. </Compile>
  1160. <Compile Include="炉计划\Tool\ContorlPlanStatusZy.cs">
  1161. <SubType>UserControl</SubType>
  1162. </Compile>
  1163. <Compile Include="炉计划\Tool\ContorlPlanStatusZy.Designer.cs">
  1164. <DependentUpon>ContorlPlanStatusZy.cs</DependentUpon>
  1165. </Compile>
  1166. <Compile Include="炉计划\Tool\FrmNoOrderSentence.cs">
  1167. <SubType>Form</SubType>
  1168. </Compile>
  1169. <Compile Include="炉计划\Tool\FrmNoOrderSentence.Designer.cs">
  1170. <DependentUpon>FrmNoOrderSentence.cs</DependentUpon>
  1171. </Compile>
  1172. <Compile Include="炉计划\Tool\StoveHelper.cs" />
  1173. <Compile Include="炼钢计划\AnalysisNkChemPopupLg.cs">
  1174. <SubType>Form</SubType>
  1175. </Compile>
  1176. <Compile Include="炼钢计划\AnalysisNkChemPopupLg.Designer.cs">
  1177. <DependentUpon>AnalysisNkChemPopupLg.cs</DependentUpon>
  1178. </Compile>
  1179. <Compile Include="炼钢计划\control\ControlCastPlan.cs">
  1180. <SubType>UserControl</SubType>
  1181. </Compile>
  1182. <Compile Include="炼钢计划\control\ControlCastPlan.Designer.cs">
  1183. <DependentUpon>ControlCastPlan.cs</DependentUpon>
  1184. </Compile>
  1185. <Compile Include="炼钢计划\control\ControlFurNacePlan.cs">
  1186. <SubType>UserControl</SubType>
  1187. </Compile>
  1188. <Compile Include="炼钢计划\control\ControlFurNacePlan.Designer.cs">
  1189. <DependentUpon>ControlFurNacePlan.cs</DependentUpon>
  1190. </Compile>
  1191. <Compile Include="炼钢计划\control\ControlOrderPlan.cs">
  1192. <SubType>UserControl</SubType>
  1193. </Compile>
  1194. <Compile Include="炼钢计划\control\ControlOrderPlan.Designer.cs">
  1195. <DependentUpon>ControlOrderPlan.cs</DependentUpon>
  1196. </Compile>
  1197. <Compile Include="炼钢计划\control\FrmBuFurnShow.cs">
  1198. <SubType>Form</SubType>
  1199. </Compile>
  1200. <Compile Include="炼钢计划\control\FrmBuFurnShow.Designer.cs">
  1201. <DependentUpon>FrmBuFurnShow.cs</DependentUpon>
  1202. </Compile>
  1203. <Compile Include="炼钢计划\control\FrmFurnaceOrdBreak.cs">
  1204. <SubType>Form</SubType>
  1205. </Compile>
  1206. <Compile Include="炼钢计划\control\FrmFurnaceOrdBreak.Designer.cs">
  1207. <DependentUpon>FrmFurnaceOrdBreak.cs</DependentUpon>
  1208. </Compile>
  1209. <Compile Include="炼钢计划\control\FrmOrderZgPln.cs">
  1210. <SubType>Form</SubType>
  1211. </Compile>
  1212. <Compile Include="炼钢计划\control\FrmOrderZgPln.Designer.cs">
  1213. <DependentUpon>FrmOrderZgPln.cs</DependentUpon>
  1214. </Compile>
  1215. <Compile Include="炼钢计划\control\ucChemicalComposition.cs">
  1216. <SubType>UserControl</SubType>
  1217. </Compile>
  1218. <Compile Include="炼钢计划\control\ucChemicalComposition.Designer.cs">
  1219. <DependentUpon>ucChemicalComposition.cs</DependentUpon>
  1220. </Compile>
  1221. <Compile Include="炼钢计划\control\ucSteelManagement.cs">
  1222. <SubType>UserControl</SubType>
  1223. </Compile>
  1224. <Compile Include="炼钢计划\control\ucSteelManagement.Designer.cs">
  1225. <DependentUpon>ucSteelManagement.cs</DependentUpon>
  1226. </Compile>
  1227. <Compile Include="炼钢计划\control\UserControlGpStrat.cs">
  1228. <SubType>UserControl</SubType>
  1229. </Compile>
  1230. <Compile Include="炼钢计划\control\UserControlGpStrat.Designer.cs">
  1231. <DependentUpon>UserControlGpStrat.cs</DependentUpon>
  1232. </Compile>
  1233. <Compile Include="炼钢计划\entity\ComBaseGradeEntity.cs" />
  1234. <Compile Include="炼钢计划\entity\ComMscStdChemEntity.cs" />
  1235. <Compile Include="炼钢计划\entity\ComMscStdCicEntity.cs" />
  1236. <Compile Include="炼钢计划\entity\CraftLg2AlloyEntity.cs" />
  1237. <Compile Include="炼钢计划\entity\CraftLg2CcmEntity.cs" />
  1238. <Compile Include="炼钢计划\entity\CraftLg2CicEntity.cs" />
  1239. <Compile Include="炼钢计划\entity\CraftLg2MEntity.cs" />
  1240. <Compile Include="炼钢计划\entity\CraftLg2TarCicEntity.cs" />
  1241. <Compile Include="炼钢计划\entity\CraftLg2TemperatureEntity.cs" />
  1242. <Compile Include="炼钢计划\entity\ImpFrmdispatchEntity.cs" />
  1243. <Compile Include="炼钢计划\entity\PlnBaseLzSpecCutEntity.cs" />
  1244. <Compile Include="炼钢计划\entity\PlnBasePlineLgEntity.cs" />
  1245. <Compile Include="炼钢计划\entity\PlnBasePlineLzEntity.cs" />
  1246. <Compile Include="炼钢计划\entity\PlnOrderCastSEntity.cs" />
  1247. <Compile Include="炼钢计划\entity\PlnOrderCastSEntityAmoun.cs" />
  1248. <Compile Include="炼钢计划\entity\PlnSteelforcastEntity.cs" />
  1249. <Compile Include="炼钢计划\entity\PlnSteelforcastNewEntity.cs" />
  1250. <Compile Include="炼钢计划\entity\PlnSteelforfurnaceEntity.cs" />
  1251. <Compile Include="炼钢计划\entity\PlnSteelforfurnaceNewEntity.cs" />
  1252. <Compile Include="炼钢计划\entity\PlnSteelforfurnaceNewEntityPlus.cs" />
  1253. <Compile Include="炼钢计划\entity\PlnSteelforfurnaceOEntity.cs" />
  1254. <Compile Include="炼钢计划\entity\PlnSteelforfurnaceOEntity1.cs" />
  1255. <Compile Include="炼钢计划\entity\PlnSteelforMergeEntity.cs" />
  1256. <Compile Include="炼钢计划\entity\PlnSteelforOrdEntity.cs" />
  1257. <Compile Include="炼钢计划\entity\PlnSteelforOrdNewEntity.cs" />
  1258. <Compile Include="炼钢计划\entity\PlnSteelforOrdNewEntityAndMerge.cs" />
  1259. <Compile Include="炼钢计划\entity\SlmBaseMaterialAPlEntity.cs" />
  1260. <Compile Include="炼钢计划\FrmBaseDeviation.cs">
  1261. <SubType>Form</SubType>
  1262. </Compile>
  1263. <Compile Include="炼钢计划\FrmBaseDeviation.Designer.cs">
  1264. <DependentUpon>FrmBaseDeviation.cs</DependentUpon>
  1265. </Compile>
  1266. <Compile Include="炼钢计划\FrmBaseLzSpecCut.cs">
  1267. <SubType>Form</SubType>
  1268. </Compile>
  1269. <Compile Include="炼钢计划\FrmBaseLzSpecCut.Designer.cs">
  1270. <DependentUpon>FrmBaseLzSpecCut.cs</DependentUpon>
  1271. </Compile>
  1272. <Compile Include="炼钢计划\FrmBaseMaterialAPl.cs">
  1273. <SubType>Form</SubType>
  1274. </Compile>
  1275. <Compile Include="炼钢计划\FrmBaseMaterialAPl.Designer.cs">
  1276. <DependentUpon>FrmBaseMaterialAPl.cs</DependentUpon>
  1277. </Compile>
  1278. <Compile Include="炼钢计划\FrmCastInterruption.cs">
  1279. <SubType>Form</SubType>
  1280. </Compile>
  1281. <Compile Include="炼钢计划\FrmCastInterruption.Designer.cs">
  1282. <DependentUpon>FrmCastInterruption.cs</DependentUpon>
  1283. </Compile>
  1284. <Compile Include="炼钢计划\FrmCraftInfo.cs">
  1285. <SubType>Form</SubType>
  1286. </Compile>
  1287. <Compile Include="炼钢计划\FrmCraftInfo.Designer.cs">
  1288. <DependentUpon>FrmCraftInfo.cs</DependentUpon>
  1289. </Compile>
  1290. <Compile Include="炼钢计划\FrmLgAmount.cs">
  1291. <SubType>Form</SubType>
  1292. </Compile>
  1293. <Compile Include="炼钢计划\FrmLgAmount.Designer.cs">
  1294. <DependentUpon>FrmLgAmount.cs</DependentUpon>
  1295. </Compile>
  1296. <Compile Include="炼钢计划\FrmPlnBasePlineLg.cs">
  1297. <SubType>Form</SubType>
  1298. </Compile>
  1299. <Compile Include="炼钢计划\FrmPlnBasePlineLg.Designer.cs">
  1300. <DependentUpon>FrmPlnBasePlineLg.cs</DependentUpon>
  1301. </Compile>
  1302. <Compile Include="炼钢计划\FrmPlnBasePlineLz.cs">
  1303. <SubType>Form</SubType>
  1304. </Compile>
  1305. <Compile Include="炼钢计划\FrmPlnBasePlineLz.Designer.cs">
  1306. <DependentUpon>FrmPlnBasePlineLz.cs</DependentUpon>
  1307. </Compile>
  1308. <Compile Include="炼钢计划\FrmSteelChangeOrderDetail.cs">
  1309. <SubType>Form</SubType>
  1310. </Compile>
  1311. <Compile Include="炼钢计划\FrmSteelChangeOrderDetail.Designer.cs">
  1312. <DependentUpon>FrmSteelChangeOrderDetail.cs</DependentUpon>
  1313. </Compile>
  1314. <Compile Include="炼钢计划\FrmSteelChangeOrderPlan.cs">
  1315. <SubType>Form</SubType>
  1316. </Compile>
  1317. <Compile Include="炼钢计划\FrmSteelChangeOrderPlan.Designer.cs">
  1318. <DependentUpon>FrmSteelChangeOrderPlan.cs</DependentUpon>
  1319. </Compile>
  1320. <Compile Include="炼钢计划\FrmSteelHandOver.cs">
  1321. <SubType>Form</SubType>
  1322. </Compile>
  1323. <Compile Include="炼钢计划\FrmSteelHandOver.Designer.cs">
  1324. <DependentUpon>FrmSteelHandOver.cs</DependentUpon>
  1325. </Compile>
  1326. <Compile Include="炼钢计划\FrmSteelMakingOrder.cs">
  1327. <SubType>Form</SubType>
  1328. </Compile>
  1329. <Compile Include="炼钢计划\FrmSteelMakingOrder.Designer.cs">
  1330. <DependentUpon>FrmSteelMakingOrder.cs</DependentUpon>
  1331. </Compile>
  1332. <Compile Include="炼钢计划\FrmSteelMakingPlan.cs">
  1333. <SubType>Form</SubType>
  1334. </Compile>
  1335. <Compile Include="炼钢计划\FrmSteelMakingPlan.Designer.cs">
  1336. <DependentUpon>FrmSteelMakingPlan.cs</DependentUpon>
  1337. </Compile>
  1338. <Compile Include="炼钢计划\FrmSteelMakingPlanChange.cs">
  1339. <SubType>Form</SubType>
  1340. </Compile>
  1341. <Compile Include="炼钢计划\FrmSteelMakingPlanChange.Designer.cs">
  1342. <DependentUpon>FrmSteelMakingPlanChange.cs</DependentUpon>
  1343. </Compile>
  1344. <Compile Include="炼钢计划\FrmSteelMakingPlanDesign.cs">
  1345. <SubType>Form</SubType>
  1346. </Compile>
  1347. <Compile Include="炼钢计划\FrmSteelMakingPlanDesign.Designer.cs">
  1348. <DependentUpon>FrmSteelMakingPlanDesign.cs</DependentUpon>
  1349. </Compile>
  1350. <Compile Include="炼钢计划\FrmSteelManagement.cs">
  1351. <SubType>Form</SubType>
  1352. </Compile>
  1353. <Compile Include="炼钢计划\FrmSteelManagement.Designer.cs">
  1354. <DependentUpon>FrmSteelManagement.cs</DependentUpon>
  1355. </Compile>
  1356. <Compile Include="炼钢计划\FrmSteelMerge.cs">
  1357. <SubType>Form</SubType>
  1358. </Compile>
  1359. <Compile Include="炼钢计划\FrmSteelMerge.Designer.cs">
  1360. <DependentUpon>FrmSteelMerge.cs</DependentUpon>
  1361. </Compile>
  1362. <Compile Include="炼钢计划\FrmSteelPlnZg.cs">
  1363. <SubType>Form</SubType>
  1364. </Compile>
  1365. <Compile Include="炼钢计划\FrmSteelPlnZg.Designer.cs">
  1366. <DependentUpon>FrmSteelPlnZg.cs</DependentUpon>
  1367. </Compile>
  1368. <Compile Include="炼钢计划\FrmSteelProcessCard.cs">
  1369. <SubType>Form</SubType>
  1370. </Compile>
  1371. <Compile Include="炼钢计划\FrmSteelProcessCard.Designer.cs">
  1372. <DependentUpon>FrmSteelProcessCard.cs</DependentUpon>
  1373. </Compile>
  1374. <Compile Include="炼钢计划\FrmSteelProcessSelect.cs">
  1375. <SubType>Form</SubType>
  1376. </Compile>
  1377. <Compile Include="炼钢计划\FrmSteelProcessSelect.Designer.cs">
  1378. <DependentUpon>FrmSteelProcessSelect.cs</DependentUpon>
  1379. </Compile>
  1380. <Compile Include="炼钢计划\FrmSteelSupplement.cs">
  1381. <SubType>Form</SubType>
  1382. </Compile>
  1383. <Compile Include="炼钢计划\FrmSteelSupplement.Designer.cs">
  1384. <DependentUpon>FrmSteelSupplement.cs</DependentUpon>
  1385. </Compile>
  1386. <Compile Include="炼钢计划\SteelHelper.cs" />
  1387. <Compile Include="炼钢计划\SteelManagementHelper.cs" />
  1388. <Compile Include="炼钢计划\StoveInfo.cs">
  1389. <SubType>Form</SubType>
  1390. </Compile>
  1391. <Compile Include="炼钢计划\StoveInfo.Designer.cs">
  1392. <DependentUpon>StoveInfo.cs</DependentUpon>
  1393. </Compile>
  1394. <Compile Include="物料Bom\entity\SlmOrdDesignBomAEntity.cs" />
  1395. <Compile Include="物料Bom\entity\SlmOrdDesignBomBEntity.cs" />
  1396. <Compile Include="物料Bom\entity\SlmOrdDesignBomCEntity.cs" />
  1397. <Compile Include="物料Bom\entity\SlmOrdDesignBomDEntity.cs" />
  1398. <Compile Include="物料Bom\entity\SlmOrdDesignBomEEntity.cs" />
  1399. <Compile Include="物料Bom\entity\SlmOrdDesignBomEntity.cs" />
  1400. <Compile Include="物料Bom\entity\SlmOrdDesignBomFEntity.cs" />
  1401. <Compile Include="物料Bom\entity\SlmOrdDesignBomHEntity.cs" />
  1402. <Compile Include="物料Bom\entity\SlmOrdDesignBomJEntity.cs" />
  1403. <Compile Include="物料Bom\entity\SlmOrdDesignBomKEntity.cs" />
  1404. <Compile Include="物料Bom\entity\SlmOrderLineEntity.cs" />
  1405. <Compile Include="物料Bom\FrmMaterialBom.cs">
  1406. <SubType>Form</SubType>
  1407. </Compile>
  1408. <Compile Include="物料Bom\FrmMaterialBom.Designer.cs">
  1409. <DependentUpon>FrmMaterialBom.cs</DependentUpon>
  1410. </Compile>
  1411. <Compile Include="物料Bom\FrmTest.cs">
  1412. <SubType>Form</SubType>
  1413. </Compile>
  1414. <Compile Include="物料Bom\FrmTest.Designer.cs">
  1415. <DependentUpon>FrmTest.cs</DependentUpon>
  1416. </Compile>
  1417. <Compile Include="窗体\FrmBaseMaterialBPl.cs">
  1418. <SubType>Form</SubType>
  1419. </Compile>
  1420. <Compile Include="窗体\FrmBaseMaterialBPl.Designer.cs">
  1421. <DependentUpon>FrmBaseMaterialBPl.cs</DependentUpon>
  1422. </Compile>
  1423. <Compile Include="窗体\FrmBasematerialCPl.cs">
  1424. <SubType>Form</SubType>
  1425. </Compile>
  1426. <Compile Include="窗体\FrmBasematerialCPl.Designer.cs">
  1427. <DependentUpon>FrmBasematerialCPl.cs</DependentUpon>
  1428. </Compile>
  1429. <Compile Include="窗体\FrmBaseMaterialHPl.cs">
  1430. <SubType>Form</SubType>
  1431. </Compile>
  1432. <Compile Include="窗体\FrmBaseMaterialHPl.Designer.cs">
  1433. <DependentUpon>FrmBaseMaterialHPl.cs</DependentUpon>
  1434. </Compile>
  1435. <Compile Include="窗体\FrmCL.cs">
  1436. <SubType>Form</SubType>
  1437. </Compile>
  1438. <Compile Include="窗体\FrmCL.Designer.cs">
  1439. <DependentUpon>FrmCL.cs</DependentUpon>
  1440. </Compile>
  1441. <Compile Include="窗体\FrmCraftFileLv2.cs">
  1442. <SubType>Form</SubType>
  1443. </Compile>
  1444. <Compile Include="窗体\FrmCraftFileLv2.Designer.cs">
  1445. <DependentUpon>FrmCraftFileLv2.cs</DependentUpon>
  1446. </Compile>
  1447. <Compile Include="窗体\FrmPreGxInfo.cs">
  1448. <SubType>Form</SubType>
  1449. </Compile>
  1450. <Compile Include="窗体\FrmPreGxInfo.Designer.cs">
  1451. <DependentUpon>FrmPreGxInfo.cs</DependentUpon>
  1452. </Compile>
  1453. <Compile Include="窗体\FrmProInformation.cs">
  1454. <SubType>Form</SubType>
  1455. </Compile>
  1456. <Compile Include="窗体\FrmProInformation.Designer.cs">
  1457. <DependentUpon>FrmProInformation.cs</DependentUpon>
  1458. </Compile>
  1459. <Compile Include="窗体\FrmSpitPlanJg.cs">
  1460. <SubType>Form</SubType>
  1461. </Compile>
  1462. <Compile Include="窗体\FrmSpitPlanJg.Designer.cs">
  1463. <DependentUpon>FrmSpitPlanJg.cs</DependentUpon>
  1464. </Compile>
  1465. <Compile Include="窗体\FrmSpitPlanM.cs">
  1466. <SubType>Form</SubType>
  1467. </Compile>
  1468. <Compile Include="窗体\FrmSpitPlanM.Designer.cs">
  1469. <DependentUpon>FrmSpitPlanM.cs</DependentUpon>
  1470. </Compile>
  1471. <Compile Include="窗体\FrmSpitPlanZgM.cs">
  1472. <SubType>Form</SubType>
  1473. </Compile>
  1474. <Compile Include="窗体\FrmSpitPlanZgM.Designer.cs">
  1475. <DependentUpon>FrmSpitPlanZgM.cs</DependentUpon>
  1476. </Compile>
  1477. <Compile Include="窗体\FrmSpitWgtSProc.cs">
  1478. <SubType>Form</SubType>
  1479. </Compile>
  1480. <Compile Include="窗体\FrmSpitWgtSProc.Designer.cs">
  1481. <DependentUpon>FrmSpitWgtSProc.cs</DependentUpon>
  1482. </Compile>
  1483. <Compile Include="窗体\FrmSpitWgtZg.cs">
  1484. <SubType>Form</SubType>
  1485. </Compile>
  1486. <Compile Include="窗体\FrmSpitWgtZg.Designer.cs">
  1487. <DependentUpon>FrmSpitWgtZg.cs</DependentUpon>
  1488. </Compile>
  1489. <Compile Include="窗体\FrmZgSum.cs">
  1490. <SubType>Form</SubType>
  1491. </Compile>
  1492. <Compile Include="窗体\FrmZgSum.Designer.cs">
  1493. <DependentUpon>FrmZgSum.cs</DependentUpon>
  1494. </Compile>
  1495. <Compile Include="管坯优化\FrmChangeGrade.cs">
  1496. <SubType>Form</SubType>
  1497. </Compile>
  1498. <Compile Include="管坯优化\FrmChangeGrade.Designer.cs">
  1499. <DependentUpon>FrmChangeGrade.cs</DependentUpon>
  1500. </Compile>
  1501. <Compile Include="管坯优化\FrmGradeAnalysis.cs">
  1502. <SubType>Form</SubType>
  1503. </Compile>
  1504. <Compile Include="管坯优化\FrmGradeAnalysis.Designer.cs">
  1505. <DependentUpon>FrmGradeAnalysis.cs</DependentUpon>
  1506. </Compile>
  1507. <Compile Include="管坯优化\FrmPlnZgMStoGp.cs">
  1508. <SubType>Form</SubType>
  1509. </Compile>
  1510. <Compile Include="管坯优化\FrmPlnZgMStoGp.Designer.cs">
  1511. <DependentUpon>FrmPlnZgMStoGp.cs</DependentUpon>
  1512. </Compile>
  1513. <Compile Include="管坯优化\FrmSteelGrade.cs">
  1514. <SubType>Form</SubType>
  1515. </Compile>
  1516. <Compile Include="管坯优化\FrmSteelGrade.Designer.cs">
  1517. <DependentUpon>FrmSteelGrade.cs</DependentUpon>
  1518. </Compile>
  1519. <Compile Include="管坯优化\FrmWalktHrough.cs">
  1520. <SubType>Form</SubType>
  1521. </Compile>
  1522. <Compile Include="管坯优化\FrmWalktHrough.Designer.cs">
  1523. <DependentUpon>FrmWalktHrough.cs</DependentUpon>
  1524. </Compile>
  1525. <Compile Include="管坯优化\model\PlnOrderZgSEntity.cs" />
  1526. <Compile Include="管坯优化\model\PlnReqinfGpEntity.cs" />
  1527. <Compile Include="管坯优化\model\PlnReqinfGpExcel.cs" />
  1528. <Compile Include="管坯优化\model\PlnZgSToGpEntity.cs" />
  1529. <Compile Include="高新\entity\HotHeatProductionMesGxEntity.cs" />
  1530. <Compile Include="高新\entity\HotProductionMesJgEntity.cs" />
  1531. <Compile Include="高新\entity\HotProductionMesRzEntity.cs" />
  1532. <Compile Include="高新\FrmGXElements.cs">
  1533. <SubType>Form</SubType>
  1534. </Compile>
  1535. <Compile Include="高新\FrmGXElements.Designer.cs">
  1536. <DependentUpon>FrmGXElements.cs</DependentUpon>
  1537. </Compile>
  1538. <Compile Include="高新\FrmHeatProductionMesGXJG.cs">
  1539. <SubType>Form</SubType>
  1540. </Compile>
  1541. <Compile Include="高新\FrmHeatProductionMesGXJG.Designer.cs">
  1542. <DependentUpon>FrmHeatProductionMesGXJG.cs</DependentUpon>
  1543. </Compile>
  1544. <Compile Include="高新\FrmHeatProductionMesGXRCL.cs">
  1545. <SubType>Form</SubType>
  1546. </Compile>
  1547. <Compile Include="高新\FrmHeatProductionMesGXRCL.Designer.cs">
  1548. <DependentUpon>FrmHeatProductionMesGXRCL.cs</DependentUpon>
  1549. </Compile>
  1550. <Compile Include="高新\FrmHeatProductionMesGXRZ.cs">
  1551. <SubType>Form</SubType>
  1552. </Compile>
  1553. <Compile Include="高新\FrmHeatProductionMesGXRZ.Designer.cs">
  1554. <DependentUpon>FrmHeatProductionMesGXRZ.cs</DependentUpon>
  1555. </Compile>
  1556. <EmbeddedResource Include="BaseForm.resx">
  1557. <DependentUpon>BaseForm.cs</DependentUpon>
  1558. </EmbeddedResource>
  1559. <EmbeddedResource Include="BaseMethod\FrmReturnCon.resx">
  1560. <DependentUpon>FrmReturnCon.cs</DependentUpon>
  1561. </EmbeddedResource>
  1562. <EmbeddedResource Include="BLDEAL\FrmPlnBlReqOrd.resx">
  1563. <DependentUpon>FrmPlnBlReqOrd.cs</DependentUpon>
  1564. <SubType>Designer</SubType>
  1565. </EmbeddedResource>
  1566. <EmbeddedResource Include="ComPlnJGDJDeal.resx">
  1567. <DependentUpon>ComPlnJGDJDeal.cs</DependentUpon>
  1568. </EmbeddedResource>
  1569. <EmbeddedResource Include="Controls\FrmMatGpInfo.resx">
  1570. <DependentUpon>FrmMatGpInfo.cs</DependentUpon>
  1571. </EmbeddedResource>
  1572. <EmbeddedResource Include="Controls\PopupTextBox.resx">
  1573. <DependentUpon>PopupTextBox.cs</DependentUpon>
  1574. </EmbeddedResource>
  1575. <EmbeddedResource Include="Controls\WaitingForm.resx">
  1576. <DependentUpon>WaitingForm.cs</DependentUpon>
  1577. <SubType>Designer</SubType>
  1578. </EmbeddedResource>
  1579. <EmbeddedResource Include="Control\ComMscPilneCtrl.resx">
  1580. <DependentUpon>ComMscPilneCtrl.cs</DependentUpon>
  1581. <SubType>Designer</SubType>
  1582. </EmbeddedResource>
  1583. <EmbeddedResource Include="Control\ComOrdExportCtrl.resx">
  1584. <DependentUpon>ComOrdExportCtrl.cs</DependentUpon>
  1585. <SubType>Designer</SubType>
  1586. </EmbeddedResource>
  1587. <EmbeddedResource Include="Control\ComOrdJGDJPanel.resx">
  1588. <DependentUpon>ComOrdJGDJPanel.cs</DependentUpon>
  1589. <SubType>Designer</SubType>
  1590. </EmbeddedResource>
  1591. <EmbeddedResource Include="Control\ComQueryPandProcOrd.resx">
  1592. <DependentUpon>ComQueryPandProcOrd.cs</DependentUpon>
  1593. <SubType>Designer</SubType>
  1594. </EmbeddedResource>
  1595. <EmbeddedResource Include="Control\ComQueryPanel.resx">
  1596. <DependentUpon>ComQueryPanel.cs</DependentUpon>
  1597. <SubType>Designer</SubType>
  1598. </EmbeddedResource>
  1599. <EmbeddedResource Include="Control\ComQueryPanelProdu.resx">
  1600. <DependentUpon>ComQueryPanelProdu.cs</DependentUpon>
  1601. <SubType>Designer</SubType>
  1602. </EmbeddedResource>
  1603. <EmbeddedResource Include="Control\ComQueryPanelSource.resx">
  1604. <DependentUpon>ComQueryPanelSource.cs</DependentUpon>
  1605. <SubType>Designer</SubType>
  1606. </EmbeddedResource>
  1607. <EmbeddedResource Include="Control\ComQueryPanlInf.resx">
  1608. <DependentUpon>ComQueryPanlInf.cs</DependentUpon>
  1609. <SubType>Designer</SubType>
  1610. </EmbeddedResource>
  1611. <EmbeddedResource Include="Control\ContorlPlanStatus.resx">
  1612. <DependentUpon>ContorlPlanStatus.cs</DependentUpon>
  1613. </EmbeddedResource>
  1614. <EmbeddedResource Include="Control\FrmReportLiKu.resx">
  1615. <DependentUpon>FrmReportLiKu.cs</DependentUpon>
  1616. </EmbeddedResource>
  1617. <EmbeddedResource Include="Control\UserControlSaleordProc.resx">
  1618. <DependentUpon>UserControlSaleordProc.cs</DependentUpon>
  1619. <SubType>Designer</SubType>
  1620. </EmbeddedResource>
  1621. <EmbeddedResource Include="FrmApplyRoval.resx">
  1622. <DependentUpon>FrmApplyRoval.cs</DependentUpon>
  1623. </EmbeddedResource>
  1624. <EmbeddedResource Include="FrmBaseModelLen.resx">
  1625. <DependentUpon>FrmBaseModelLen.cs</DependentUpon>
  1626. </EmbeddedResource>
  1627. <EmbeddedResource Include="FrmBlOrderPln.resx">
  1628. <DependentUpon>FrmBlOrderPln.cs</DependentUpon>
  1629. </EmbeddedResource>
  1630. <EmbeddedResource Include="FrmConfirmCraft.resx">
  1631. <DependentUpon>FrmConfirmCraft.cs</DependentUpon>
  1632. <SubType>Designer</SubType>
  1633. </EmbeddedResource>
  1634. <EmbeddedResource Include="FrmConfirmCraftQuery.resx">
  1635. <DependentUpon>FrmConfirmCraftQuery.cs</DependentUpon>
  1636. </EmbeddedResource>
  1637. <EmbeddedResource Include="FrmMatJgMImport.resx">
  1638. <DependentUpon>FrmMatJgMImport.cs</DependentUpon>
  1639. </EmbeddedResource>
  1640. <EmbeddedResource Include="frmOrderLenPln.resx">
  1641. <DependentUpon>frmOrderLenPln.cs</DependentUpon>
  1642. </EmbeddedResource>
  1643. <EmbeddedResource Include="FrmOrderStatusSet.resx">
  1644. <DependentUpon>FrmOrderStatusSet.cs</DependentUpon>
  1645. <SubType>Designer</SubType>
  1646. </EmbeddedResource>
  1647. <EmbeddedResource Include="FrmOrdFinishSet.resx">
  1648. <DependentUpon>FrmOrdFinishSet.cs</DependentUpon>
  1649. <SubType>Designer</SubType>
  1650. </EmbeddedResource>
  1651. <EmbeddedResource Include="FrmPlnModifyOrdDPine.resx">
  1652. <DependentUpon>FrmPlnModifyOrdDPine.cs</DependentUpon>
  1653. <SubType>Designer</SubType>
  1654. </EmbeddedResource>
  1655. <EmbeddedResource Include="FrmPlnOrdCraftModifyLog.resx">
  1656. <DependentUpon>FrmPlnOrdCraftModifyLog.cs</DependentUpon>
  1657. <SubType>Designer</SubType>
  1658. </EmbeddedResource>
  1659. <EmbeddedResource Include="FrmPlnOrderDownLog.resx">
  1660. <DependentUpon>FrmPlnOrderDownLog.cs</DependentUpon>
  1661. </EmbeddedResource>
  1662. <EmbeddedResource Include="FrmPlnOrdJgDjDeal.resx">
  1663. <DependentUpon>FrmPlnOrdJgDjDeal.cs</DependentUpon>
  1664. </EmbeddedResource>
  1665. <EmbeddedResource Include="FrmPlnOrdPriority.resx">
  1666. <DependentUpon>FrmPlnOrdPriority.cs</DependentUpon>
  1667. <SubType>Designer</SubType>
  1668. </EmbeddedResource>
  1669. <EmbeddedResource Include="FrmPlnSaleOrder.resx">
  1670. <DependentUpon>FrmPlnSaleOrder.cs</DependentUpon>
  1671. <SubType>Designer</SubType>
  1672. </EmbeddedResource>
  1673. <EmbeddedResource Include="FrmQueryOrdProcInf.resx">
  1674. <DependentUpon>FrmQueryOrdProcInf.cs</DependentUpon>
  1675. <SubType>Designer</SubType>
  1676. </EmbeddedResource>
  1677. <EmbeddedResource Include="FrmReqApplyInfo.resx">
  1678. <DependentUpon>FrmReqApplyInfo.cs</DependentUpon>
  1679. <SubType>Designer</SubType>
  1680. </EmbeddedResource>
  1681. <EmbeddedResource Include="FrmSaleOrderlog.resx">
  1682. <DependentUpon>FrmSaleOrderlog.cs</DependentUpon>
  1683. <SubType>Designer</SubType>
  1684. </EmbeddedResource>
  1685. <EmbeddedResource Include="FrmSaleOrderReceive.resx">
  1686. <DependentUpon>FrmSaleOrderReceive.cs</DependentUpon>
  1687. <SubType>Designer</SubType>
  1688. </EmbeddedResource>
  1689. <EmbeddedResource Include="FrmSaleOrdFillApply.resx">
  1690. <DependentUpon>FrmSaleOrdFillApply.cs</DependentUpon>
  1691. <SubType>Designer</SubType>
  1692. </EmbeddedResource>
  1693. <EmbeddedResource Include="FrmYieldInOutputQuery.resx">
  1694. <DependentUpon>FrmYieldInOutputQuery.cs</DependentUpon>
  1695. </EmbeddedResource>
  1696. <EmbeddedResource Include="InventoryAdjustment\InventoryAdjustment.resx">
  1697. <DependentUpon>InventoryAdjustment.cs</DependentUpon>
  1698. </EmbeddedResource>
  1699. <EmbeddedResource Include="InventoryAdjustment\TubeRolling.resx">
  1700. <DependentUpon>TubeRolling.cs</DependentUpon>
  1701. </EmbeddedResource>
  1702. <EmbeddedResource Include="JGGXPln\Control\ComJgMBlOrd.resx">
  1703. <DependentUpon>ComJgMBlOrd.cs</DependentUpon>
  1704. </EmbeddedResource>
  1705. <EmbeddedResource Include="JGGXPln\Control\ComPlineTimeCtrl.resx">
  1706. <DependentUpon>ComPlineTimeCtrl.cs</DependentUpon>
  1707. <SubType>Designer</SubType>
  1708. </EmbeddedResource>
  1709. <EmbeddedResource Include="JGGXPln\Control\ComPlnJgOrdToDd.resx">
  1710. <DependentUpon>ComPlnJgOrdToDd.cs</DependentUpon>
  1711. </EmbeddedResource>
  1712. <EmbeddedResource Include="JGGXPln\FrmCraftJgNoSecond.resx">
  1713. <DependentUpon>FrmCraftJgNoSecond.cs</DependentUpon>
  1714. </EmbeddedResource>
  1715. <EmbeddedResource Include="JGGXPln\FrmJgMPlnZy.resx">
  1716. <DependentUpon>FrmJgMPlnZy.cs</DependentUpon>
  1717. </EmbeddedResource>
  1718. <EmbeddedResource Include="JGGXPln\FrmJgOperatPln.resx">
  1719. <DependentUpon>FrmJgOperatPln.cs</DependentUpon>
  1720. </EmbeddedResource>
  1721. <EmbeddedResource Include="JGGXPln\FrmJgOrderLk.resx">
  1722. <DependentUpon>FrmJgOrderLk.cs</DependentUpon>
  1723. </EmbeddedResource>
  1724. <EmbeddedResource Include="JGGXPln\FrmJgSecondProcess.resx">
  1725. <DependentUpon>FrmJgSecondProcess.cs</DependentUpon>
  1726. </EmbeddedResource>
  1727. <EmbeddedResource Include="JGGXPln\FrmJgZYPlnEdit.resx">
  1728. <DependentUpon>FrmJgZYPlnEdit.cs</DependentUpon>
  1729. </EmbeddedResource>
  1730. <EmbeddedResource Include="JGGXPln\FrmPlnZyJgWorkBill.resx">
  1731. <DependentUpon>FrmPlnZyJgWorkBill.cs</DependentUpon>
  1732. </EmbeddedResource>
  1733. <EmbeddedResource Include="JGGXPln\FrmSpitBill.resx">
  1734. <DependentUpon>FrmSpitBill.cs</DependentUpon>
  1735. </EmbeddedResource>
  1736. <EmbeddedResource Include="JGGXPln\Old\FrmModifyPlnJgM.resx">
  1737. <DependentUpon>FrmModifyPlnJgM.cs</DependentUpon>
  1738. </EmbeddedResource>
  1739. <EmbeddedResource Include="JGGXPln\Old\FrmOrderJGGXPln.resx">
  1740. <DependentUpon>FrmOrderJGGXPln.cs</DependentUpon>
  1741. </EmbeddedResource>
  1742. <EmbeddedResource Include="JGGXPln\PopupWindow\FrmGXandTime.resx">
  1743. <DependentUpon>FrmGXandTime.cs</DependentUpon>
  1744. <SubType>Designer</SubType>
  1745. </EmbeddedResource>
  1746. <EmbeddedResource Include="JGGXPln\PopupWindow\FrmGxJgMPrdcrLst.resx">
  1747. <DependentUpon>FrmGxJgMPrdcrLst.cs</DependentUpon>
  1748. </EmbeddedResource>
  1749. <EmbeddedResource Include="JGGXPln\窗体\FrmJgUseStock.resx">
  1750. <DependentUpon>FrmJgUseStock.cs</DependentUpon>
  1751. </EmbeddedResource>
  1752. <EmbeddedResource Include="JGGXPln\窗体\FrmMatZcM.resx">
  1753. <DependentUpon>FrmMatZcM.cs</DependentUpon>
  1754. </EmbeddedResource>
  1755. <EmbeddedResource Include="OrderManage\froms\FrmBomConfirm.resx">
  1756. <DependentUpon>FrmBomConfirm.cs</DependentUpon>
  1757. </EmbeddedResource>
  1758. <EmbeddedResource Include="OrderManage\froms\FrmGradeChoose.resx">
  1759. <DependentUpon>FrmGradeChoose.cs</DependentUpon>
  1760. </EmbeddedResource>
  1761. <EmbeddedResource Include="PlanStove\Dlg\FrmMaterialChoose.resx">
  1762. <DependentUpon>FrmMaterialChoose.cs</DependentUpon>
  1763. </EmbeddedResource>
  1764. <EmbeddedResource Include="PlanStove\Dlg\FrmMaterialSeparate.resx">
  1765. <DependentUpon>FrmMaterialSeparate.cs</DependentUpon>
  1766. </EmbeddedResource>
  1767. <EmbeddedResource Include="PlanStove\frm\FrmPlanStovecs.resx">
  1768. <DependentUpon>FrmPlanStovecs.cs</DependentUpon>
  1769. </EmbeddedResource>
  1770. <EmbeddedResource Include="PopupWindow\dlgOrderAskDown.resx">
  1771. <DependentUpon>dlgOrderAskDown.cs</DependentUpon>
  1772. <SubType>Designer</SubType>
  1773. </EmbeddedResource>
  1774. <EmbeddedResource Include="PopupWindow\dlgOrderAskLook .resx">
  1775. <DependentUpon>dlgOrderAskLook .cs</DependentUpon>
  1776. <SubType>Designer</SubType>
  1777. </EmbeddedResource>
  1778. <EmbeddedResource Include="PopupWindow\FrmAddEinSpec.resx">
  1779. <DependentUpon>FrmAddEinSpec.cs</DependentUpon>
  1780. <SubType>Designer</SubType>
  1781. </EmbeddedResource>
  1782. <EmbeddedResource Include="PopupWindow\FrmCalculateDbk.resx">
  1783. <DependentUpon>FrmCalculateDbk.cs</DependentUpon>
  1784. </EmbeddedResource>
  1785. <EmbeddedResource Include="PopupWindow\FrmCancelPretreat.resx">
  1786. <DependentUpon>FrmCancelPretreat.cs</DependentUpon>
  1787. <SubType>Designer</SubType>
  1788. </EmbeddedResource>
  1789. <EmbeddedResource Include="PopupWindow\FrmChangeBomDp.resx">
  1790. <DependentUpon>FrmChangeBomDp.cs</DependentUpon>
  1791. <SubType>Designer</SubType>
  1792. </EmbeddedResource>
  1793. <EmbeddedResource Include="PopupWindow\FrmChangeIndex.resx">
  1794. <DependentUpon>FrmChangeIndex.cs</DependentUpon>
  1795. <SubType>Designer</SubType>
  1796. </EmbeddedResource>
  1797. <EmbeddedResource Include="PopupWindow\FrmGroupofDjBl.resx">
  1798. <DependentUpon>FrmGroupofDjBl.cs</DependentUpon>
  1799. <SubType>Designer</SubType>
  1800. </EmbeddedResource>
  1801. <EmbeddedResource Include="PopupWindow\FrmImportSetMatJg.resx">
  1802. <DependentUpon>FrmImportSetMatJg.cs</DependentUpon>
  1803. </EmbeddedResource>
  1804. <EmbeddedResource Include="PopupWindow\FrmImportSetOrder.resx">
  1805. <DependentUpon>FrmImportSetOrder.cs</DependentUpon>
  1806. <SubType>Designer</SubType>
  1807. </EmbeddedResource>
  1808. <EmbeddedResource Include="PopupWindow\FrmImportSetPlnZg.resx">
  1809. <DependentUpon>FrmImportSetPlnZg.cs</DependentUpon>
  1810. </EmbeddedResource>
  1811. <EmbeddedResource Include="PopupWindow\FrmMatJgMImport.resx">
  1812. <DependentUpon>FrmMatJgMImport.cs</DependentUpon>
  1813. </EmbeddedResource>
  1814. <EmbeddedResource Include="PopupWindow\FrmOrderCraftImport.resx">
  1815. <DependentUpon>FrmOrderCraftImport.cs</DependentUpon>
  1816. <SubType>Designer</SubType>
  1817. </EmbeddedResource>
  1818. <EmbeddedResource Include="PopupWindow\FrmOrdLinePrdcrLst.resx">
  1819. <DependentUpon>FrmOrdLinePrdcrLst.cs</DependentUpon>
  1820. </EmbeddedResource>
  1821. <EmbeddedResource Include="PopupWindow\FrmOrdProcessBasePl.resx">
  1822. <DependentUpon>FrmOrdProcessBasePl.cs</DependentUpon>
  1823. </EmbeddedResource>
  1824. <EmbeddedResource Include="PopupWindow\FrmOutExcel.resx">
  1825. <DependentUpon>FrmOutExcel.cs</DependentUpon>
  1826. <SubType>Designer</SubType>
  1827. </EmbeddedResource>
  1828. <EmbeddedResource Include="PopupWindow\FrmReqRequest.resx">
  1829. <DependentUpon>FrmReqRequest.cs</DependentUpon>
  1830. <SubType>Designer</SubType>
  1831. </EmbeddedResource>
  1832. <EmbeddedResource Include="PopupWindow\FrmReqRollMonth.resx">
  1833. <DependentUpon>FrmReqRollMonth.cs</DependentUpon>
  1834. <SubType>Designer</SubType>
  1835. </EmbeddedResource>
  1836. <EmbeddedResource Include="PopupWindow\FrmUpsettingDialExpansion.resx">
  1837. <DependentUpon>FrmUpsettingDialExpansion.cs</DependentUpon>
  1838. <SubType>Designer</SubType>
  1839. </EmbeddedResource>
  1840. <EmbeddedResource Include="Properties\licenses.licx" />
  1841. <EmbeddedResource Include="Properties\Resources.resx">
  1842. <Generator>ResXFileCodeGenerator</Generator>
  1843. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  1844. </EmbeddedResource>
  1845. <EmbeddedResource Include="Resources\MyResource.resx" />
  1846. <EmbeddedResource Include="ZGCheck\frmZgGxCheck.resx">
  1847. <DependentUpon>frmZgGxCheck.cs</DependentUpon>
  1848. </EmbeddedResource>
  1849. <EmbeddedResource Include="坯料测算\FrmPlnOrderCS.resx">
  1850. <DependentUpon>FrmPlnOrderCS.cs</DependentUpon>
  1851. </EmbeddedResource>
  1852. <EmbeddedResource Include="工序合同\FrmInnerChange.resx">
  1853. <DependentUpon>FrmInnerChange.cs</DependentUpon>
  1854. <SubType>Designer</SubType>
  1855. </EmbeddedResource>
  1856. <EmbeddedResource Include="工序合同\FrmPlnProcOrdJgx.resx">
  1857. <DependentUpon>FrmPlnProcOrdJgx.cs</DependentUpon>
  1858. <SubType>Designer</SubType>
  1859. </EmbeddedResource>
  1860. <EmbeddedResource Include="工序合同\FrmPlnProcOrdRcl.resx">
  1861. <DependentUpon>FrmPlnProcOrdRcl.cs</DependentUpon>
  1862. <SubType>Designer</SubType>
  1863. </EmbeddedResource>
  1864. <EmbeddedResource Include="工序合同\FrmProcessOrder.resx">
  1865. <DependentUpon>FrmProcessOrder.cs</DependentUpon>
  1866. <SubType>Designer</SubType>
  1867. </EmbeddedResource>
  1868. <EmbeddedResource Include="工序排产\control\BaseMandrelSpec.resx">
  1869. <DependentUpon>BaseMandrelSpec.cs</DependentUpon>
  1870. </EmbeddedResource>
  1871. <EmbeddedResource Include="工序排产\control\ContorlPlanStatusBL.resx">
  1872. <DependentUpon>ContorlPlanStatusBL.cs</DependentUpon>
  1873. </EmbeddedResource>
  1874. <EmbeddedResource Include="工序排产\control\PagingControl.resx">
  1875. <DependentUpon>PagingControl.cs</DependentUpon>
  1876. </EmbeddedResource>
  1877. <EmbeddedResource Include="工序排产\FrmBaseMandrelSpec.resx">
  1878. <DependentUpon>FrmBaseMandrelSpec.cs</DependentUpon>
  1879. </EmbeddedResource>
  1880. <EmbeddedResource Include="工序排产\FrmComBaseMandrel.resx">
  1881. <DependentUpon>FrmComBaseMandrel.cs</DependentUpon>
  1882. </EmbeddedResource>
  1883. <EmbeddedResource Include="工序排产\FrmDiameterMandrel.resx">
  1884. <DependentUpon>FrmDiameterMandrel.cs</DependentUpon>
  1885. </EmbeddedResource>
  1886. <EmbeddedResource Include="工序排产\FrmJgProps.resx">
  1887. <DependentUpon>FrmJgProps.cs</DependentUpon>
  1888. </EmbeddedResource>
  1889. <EmbeddedResource Include="工序排产\FrmJgxSInfo.resx">
  1890. <DependentUpon>FrmJgxSInfo.cs</DependentUpon>
  1891. </EmbeddedResource>
  1892. <EmbeddedResource Include="工序排产\FrmMergeJgxM.resx">
  1893. <DependentUpon>FrmMergeJgxM.cs</DependentUpon>
  1894. </EmbeddedResource>
  1895. <EmbeddedResource Include="工序排产\FrmOrderBlReq.resx">
  1896. <DependentUpon>FrmOrderBlReq.cs</DependentUpon>
  1897. </EmbeddedResource>
  1898. <EmbeddedResource Include="工序排产\FrmPlnOrderDbkS.resx">
  1899. <DependentUpon>FrmPlnOrderDbkS.cs</DependentUpon>
  1900. </EmbeddedResource>
  1901. <EmbeddedResource Include="工序排产\FrmPlnOrderDbkSQuery.resx">
  1902. <DependentUpon>FrmPlnOrderDbkSQuery.cs</DependentUpon>
  1903. </EmbeddedResource>
  1904. <EmbeddedResource Include="工序排产\FrmPlnOrderDzS.resx">
  1905. <DependentUpon>FrmPlnOrderDzS.cs</DependentUpon>
  1906. </EmbeddedResource>
  1907. <EmbeddedResource Include="工序排产\FrmPlnOrderJgxS.resx">
  1908. <DependentUpon>FrmPlnOrderJgxS.cs</DependentUpon>
  1909. </EmbeddedResource>
  1910. <EmbeddedResource Include="工序排产\FrmPlnOrderJgxSQuery.resx">
  1911. <DependentUpon>FrmPlnOrderJgxSQuery.cs</DependentUpon>
  1912. </EmbeddedResource>
  1913. <EmbeddedResource Include="工序排产\FrmPlnOrderRclS.resx">
  1914. <DependentUpon>FrmPlnOrderRclS.cs</DependentUpon>
  1915. </EmbeddedResource>
  1916. <EmbeddedResource Include="工序排产\FrmPlnOrderRclSQuery.resx">
  1917. <DependentUpon>FrmPlnOrderRclSQuery.cs</DependentUpon>
  1918. </EmbeddedResource>
  1919. <EmbeddedResource Include="工序排产\FrmPlnOrderZgS.resx">
  1920. <DependentUpon>FrmPlnOrderZgS.cs</DependentUpon>
  1921. </EmbeddedResource>
  1922. <EmbeddedResource Include="工序排产\FrmPlnOrderZgSEasy.resx">
  1923. <DependentUpon>FrmPlnOrderZgSEasy.cs</DependentUpon>
  1924. </EmbeddedResource>
  1925. <EmbeddedResource Include="工序排产\FrmPlnOrderZgSL1.resx">
  1926. <DependentUpon>FrmPlnOrderZgSL1.cs</DependentUpon>
  1927. </EmbeddedResource>
  1928. <EmbeddedResource Include="工序排产\FrmPlnOrderZgSMES.resx">
  1929. <DependentUpon>FrmPlnOrderZgSMES.cs</DependentUpon>
  1930. </EmbeddedResource>
  1931. <EmbeddedResource Include="工序排产\FrmPlnOrderZgSQuery.resx">
  1932. <DependentUpon>FrmPlnOrderZgSQuery.cs</DependentUpon>
  1933. </EmbeddedResource>
  1934. <EmbeddedResource Include="工序排产\FrmPlnOrderZzS.resx">
  1935. <DependentUpon>FrmPlnOrderZzS.cs</DependentUpon>
  1936. </EmbeddedResource>
  1937. <EmbeddedResource Include="工序排产\FrmPlnPassmodel.resx">
  1938. <DependentUpon>FrmPlnPassmodel.cs</DependentUpon>
  1939. </EmbeddedResource>
  1940. <EmbeddedResource Include="工序排产\FrmProdSchAmount.resx">
  1941. <DependentUpon>FrmProdSchAmount.cs</DependentUpon>
  1942. </EmbeddedResource>
  1943. <EmbeddedResource Include="工序排产\FrmProdSchAmountDbk.resx">
  1944. <DependentUpon>FrmProdSchAmountDbk.cs</DependentUpon>
  1945. </EmbeddedResource>
  1946. <EmbeddedResource Include="工序排产\FrmProdSchAmountJg.resx">
  1947. <DependentUpon>FrmProdSchAmountJg.cs</DependentUpon>
  1948. </EmbeddedResource>
  1949. <EmbeddedResource Include="工序排产\FrmProdSchAmountJgx.resx">
  1950. <DependentUpon>FrmProdSchAmountJgx.cs</DependentUpon>
  1951. </EmbeddedResource>
  1952. <EmbeddedResource Include="工序排产\FrmProdSchAmountRcl.resx">
  1953. <DependentUpon>FrmProdSchAmountRcl.cs</DependentUpon>
  1954. </EmbeddedResource>
  1955. <EmbeddedResource Include="工序排产\FrmRclInfo.resx">
  1956. <DependentUpon>FrmRclInfo.cs</DependentUpon>
  1957. </EmbeddedResource>
  1958. <EmbeddedResource Include="工序排产\FrmZyMerge.resx">
  1959. <DependentUpon>FrmZyMerge.cs</DependentUpon>
  1960. </EmbeddedResource>
  1961. <EmbeddedResource Include="工序订单\Control\ControlOrderDbkM.resx">
  1962. <DependentUpon>ControlOrderDbkM.cs</DependentUpon>
  1963. </EmbeddedResource>
  1964. <EmbeddedResource Include="工序订单\Control\ControlOrderJgxM.resx">
  1965. <DependentUpon>ControlOrderJgxM.cs</DependentUpon>
  1966. </EmbeddedResource>
  1967. <EmbeddedResource Include="工序订单\Control\ControlOrderRclM.resx">
  1968. <DependentUpon>ControlOrderRclM.cs</DependentUpon>
  1969. </EmbeddedResource>
  1970. <EmbeddedResource Include="工序订单\Control\ControlOrderZgM.resx">
  1971. <DependentUpon>ControlOrderZgM.cs</DependentUpon>
  1972. </EmbeddedResource>
  1973. <EmbeddedResource Include="工序订单\FrmOrderDbk.resx">
  1974. <DependentUpon>FrmOrderDbk.cs</DependentUpon>
  1975. </EmbeddedResource>
  1976. <EmbeddedResource Include="工序订单\FrmOrderJg.resx">
  1977. <DependentUpon>FrmOrderJg.cs</DependentUpon>
  1978. </EmbeddedResource>
  1979. <EmbeddedResource Include="工序订单\FrmOrderRcl.resx">
  1980. <DependentUpon>FrmOrderRcl.cs</DependentUpon>
  1981. </EmbeddedResource>
  1982. <EmbeddedResource Include="工序订单\FrmOrderZg.resx">
  1983. <DependentUpon>FrmOrderZg.cs</DependentUpon>
  1984. </EmbeddedResource>
  1985. <EmbeddedResource Include="报表\FrmJGInformation.resx">
  1986. <DependentUpon>FrmJGInformation.cs</DependentUpon>
  1987. </EmbeddedResource>
  1988. <EmbeddedResource Include="报表\FrmProductionSchedulingAndCoupling.resx">
  1989. <DependentUpon>FrmProductionSchedulingAndCoupling.cs</DependentUpon>
  1990. </EmbeddedResource>
  1991. <EmbeddedResource Include="炉计划\ComPlanEndDbk.resx">
  1992. <DependentUpon>ComPlanEndDbk.cs</DependentUpon>
  1993. </EmbeddedResource>
  1994. <EmbeddedResource Include="炉计划\ComPlanEndJgx.resx">
  1995. <DependentUpon>ComPlanEndJgx.cs</DependentUpon>
  1996. </EmbeddedResource>
  1997. <EmbeddedResource Include="炉计划\ComPlanEndRcl.resx">
  1998. <DependentUpon>ComPlanEndRcl.cs</DependentUpon>
  1999. </EmbeddedResource>
  2000. <EmbeddedResource Include="炉计划\ComPlanEndZg.resx">
  2001. <DependentUpon>ComPlanEndZg.cs</DependentUpon>
  2002. </EmbeddedResource>
  2003. <EmbeddedResource Include="炉计划\FrmEndLibrary.resx">
  2004. <DependentUpon>FrmEndLibrary.cs</DependentUpon>
  2005. </EmbeddedResource>
  2006. <EmbeddedResource Include="炉计划\FrmMaterialChoose.resx">
  2007. <DependentUpon>FrmMaterialChoose.cs</DependentUpon>
  2008. </EmbeddedResource>
  2009. <EmbeddedResource Include="炉计划\FrmMaterialMonomer.resx">
  2010. <DependentUpon>FrmMaterialMonomer.cs</DependentUpon>
  2011. </EmbeddedResource>
  2012. <EmbeddedResource Include="炉计划\FrmMatNo.resx">
  2013. <DependentUpon>FrmMatNo.cs</DependentUpon>
  2014. </EmbeddedResource>
  2015. <EmbeddedResource Include="炉计划\FrmPlanMaterialDbk.resx">
  2016. <DependentUpon>FrmPlanMaterialDbk.cs</DependentUpon>
  2017. </EmbeddedResource>
  2018. <EmbeddedResource Include="炉计划\FrmPlanMaterialJg.resx">
  2019. <DependentUpon>FrmPlanMaterialJg.cs</DependentUpon>
  2020. </EmbeddedResource>
  2021. <EmbeddedResource Include="炉计划\FrmPlanMaterialJgx.resx">
  2022. <DependentUpon>FrmPlanMaterialJgx.cs</DependentUpon>
  2023. </EmbeddedResource>
  2024. <EmbeddedResource Include="炉计划\FrmPlanMaterialRcl.resx">
  2025. <DependentUpon>FrmPlanMaterialRcl.cs</DependentUpon>
  2026. </EmbeddedResource>
  2027. <EmbeddedResource Include="炉计划\FrmPlanMaterialSelection.resx">
  2028. <DependentUpon>FrmPlanMaterialSelection.cs</DependentUpon>
  2029. </EmbeddedResource>
  2030. <EmbeddedResource Include="炉计划\FrmPlanSteelMakMod.resx">
  2031. <DependentUpon>FrmPlanSteelMakMod.cs</DependentUpon>
  2032. </EmbeddedResource>
  2033. <EmbeddedResource Include="炉计划\FrmPlanStoveC.resx">
  2034. <DependentUpon>FrmPlanStoveC.cs</DependentUpon>
  2035. </EmbeddedResource>
  2036. <EmbeddedResource Include="炉计划\FrmPlanStoveD.resx">
  2037. <DependentUpon>FrmPlanStoveD.cs</DependentUpon>
  2038. </EmbeddedResource>
  2039. <EmbeddedResource Include="炉计划\FrmPlanStoveE.resx">
  2040. <DependentUpon>FrmPlanStoveE.cs</DependentUpon>
  2041. </EmbeddedResource>
  2042. <EmbeddedResource Include="炉计划\FrmPlanStoveF.resx">
  2043. <DependentUpon>FrmPlanStoveF.cs</DependentUpon>
  2044. </EmbeddedResource>
  2045. <EmbeddedResource Include="炉计划\FrmPlanStoveG.resx">
  2046. <DependentUpon>FrmPlanStoveG.cs</DependentUpon>
  2047. </EmbeddedResource>
  2048. <EmbeddedResource Include="炉计划\FrmPlanStoveH.resx">
  2049. <DependentUpon>FrmPlanStoveH.cs</DependentUpon>
  2050. </EmbeddedResource>
  2051. <EmbeddedResource Include="炉计划\FrmPlnFurnace.resx">
  2052. <DependentUpon>FrmPlnFurnace.cs</DependentUpon>
  2053. </EmbeddedResource>
  2054. <EmbeddedResource Include="炉计划\FrmRollTubeLibraryDbk.resx">
  2055. <DependentUpon>FrmRollTubeLibraryDbk.cs</DependentUpon>
  2056. </EmbeddedResource>
  2057. <EmbeddedResource Include="炉计划\FrmRollTubeLibraryJg.resx">
  2058. <DependentUpon>FrmRollTubeLibraryJg.cs</DependentUpon>
  2059. </EmbeddedResource>
  2060. <EmbeddedResource Include="炉计划\FrmRollTubeLibraryJgx.resx">
  2061. <DependentUpon>FrmRollTubeLibraryJgx.cs</DependentUpon>
  2062. </EmbeddedResource>
  2063. <EmbeddedResource Include="炉计划\FrmRollTubeLibraryRcl.resx">
  2064. <DependentUpon>FrmRollTubeLibraryRcl.cs</DependentUpon>
  2065. </EmbeddedResource>
  2066. <EmbeddedResource Include="炉计划\FrmRollTubeLibraryZg.resx">
  2067. <DependentUpon>FrmRollTubeLibraryZg.cs</DependentUpon>
  2068. </EmbeddedResource>
  2069. <EmbeddedResource Include="炉计划\FrmSteelPlnZgMod.resx">
  2070. <DependentUpon>FrmSteelPlnZgMod.cs</DependentUpon>
  2071. </EmbeddedResource>
  2072. <EmbeddedResource Include="炉计划\Tool\BaseInfoPopup.resx">
  2073. <DependentUpon>BaseInfoPopup.cs</DependentUpon>
  2074. </EmbeddedResource>
  2075. <EmbeddedResource Include="炉计划\Tool\ContorlPlanStatusZy.resx">
  2076. <DependentUpon>ContorlPlanStatusZy.cs</DependentUpon>
  2077. </EmbeddedResource>
  2078. <EmbeddedResource Include="炉计划\Tool\FrmNoOrderSentence.resx">
  2079. <DependentUpon>FrmNoOrderSentence.cs</DependentUpon>
  2080. </EmbeddedResource>
  2081. <EmbeddedResource Include="炼钢计划\AnalysisNkChemPopupLg.resx">
  2082. <DependentUpon>AnalysisNkChemPopupLg.cs</DependentUpon>
  2083. </EmbeddedResource>
  2084. <EmbeddedResource Include="炼钢计划\control\ControlCastPlan.resx">
  2085. <DependentUpon>ControlCastPlan.cs</DependentUpon>
  2086. </EmbeddedResource>
  2087. <EmbeddedResource Include="炼钢计划\control\ControlFurNacePlan.resx">
  2088. <DependentUpon>ControlFurNacePlan.cs</DependentUpon>
  2089. </EmbeddedResource>
  2090. <EmbeddedResource Include="炼钢计划\control\ControlOrderPlan.resx">
  2091. <DependentUpon>ControlOrderPlan.cs</DependentUpon>
  2092. </EmbeddedResource>
  2093. <EmbeddedResource Include="炼钢计划\control\FrmBuFurnShow.resx">
  2094. <DependentUpon>FrmBuFurnShow.cs</DependentUpon>
  2095. </EmbeddedResource>
  2096. <EmbeddedResource Include="炼钢计划\control\FrmFurnaceOrdBreak.resx">
  2097. <DependentUpon>FrmFurnaceOrdBreak.cs</DependentUpon>
  2098. </EmbeddedResource>
  2099. <EmbeddedResource Include="炼钢计划\control\FrmOrderZgPln.resx">
  2100. <DependentUpon>FrmOrderZgPln.cs</DependentUpon>
  2101. </EmbeddedResource>
  2102. <EmbeddedResource Include="炼钢计划\control\ucChemicalComposition.resx">
  2103. <DependentUpon>ucChemicalComposition.cs</DependentUpon>
  2104. </EmbeddedResource>
  2105. <EmbeddedResource Include="炼钢计划\control\ucSteelManagement.resx">
  2106. <DependentUpon>ucSteelManagement.cs</DependentUpon>
  2107. </EmbeddedResource>
  2108. <EmbeddedResource Include="炼钢计划\control\UserControlGpStrat.resx">
  2109. <DependentUpon>UserControlGpStrat.cs</DependentUpon>
  2110. </EmbeddedResource>
  2111. <EmbeddedResource Include="炼钢计划\FrmBaseDeviation.resx">
  2112. <DependentUpon>FrmBaseDeviation.cs</DependentUpon>
  2113. </EmbeddedResource>
  2114. <EmbeddedResource Include="炼钢计划\FrmBaseLzSpecCut.resx">
  2115. <DependentUpon>FrmBaseLzSpecCut.cs</DependentUpon>
  2116. </EmbeddedResource>
  2117. <EmbeddedResource Include="炼钢计划\FrmBaseMaterialAPl.resx">
  2118. <DependentUpon>FrmBaseMaterialAPl.cs</DependentUpon>
  2119. </EmbeddedResource>
  2120. <EmbeddedResource Include="炼钢计划\FrmCastInterruption.resx">
  2121. <DependentUpon>FrmCastInterruption.cs</DependentUpon>
  2122. </EmbeddedResource>
  2123. <EmbeddedResource Include="炼钢计划\FrmCraftInfo.resx">
  2124. <DependentUpon>FrmCraftInfo.cs</DependentUpon>
  2125. </EmbeddedResource>
  2126. <EmbeddedResource Include="炼钢计划\FrmLgAmount.resx">
  2127. <DependentUpon>FrmLgAmount.cs</DependentUpon>
  2128. </EmbeddedResource>
  2129. <EmbeddedResource Include="炼钢计划\FrmPlnBasePlineLg.resx">
  2130. <DependentUpon>FrmPlnBasePlineLg.cs</DependentUpon>
  2131. </EmbeddedResource>
  2132. <EmbeddedResource Include="炼钢计划\FrmPlnBasePlineLz.resx">
  2133. <DependentUpon>FrmPlnBasePlineLz.cs</DependentUpon>
  2134. </EmbeddedResource>
  2135. <EmbeddedResource Include="炼钢计划\FrmSteelChangeOrderDetail.resx">
  2136. <DependentUpon>FrmSteelChangeOrderDetail.cs</DependentUpon>
  2137. </EmbeddedResource>
  2138. <EmbeddedResource Include="炼钢计划\FrmSteelChangeOrderPlan.resx">
  2139. <DependentUpon>FrmSteelChangeOrderPlan.cs</DependentUpon>
  2140. </EmbeddedResource>
  2141. <EmbeddedResource Include="炼钢计划\FrmSteelHandOver.resx">
  2142. <DependentUpon>FrmSteelHandOver.cs</DependentUpon>
  2143. </EmbeddedResource>
  2144. <EmbeddedResource Include="炼钢计划\FrmSteelMakingOrder.resx">
  2145. <DependentUpon>FrmSteelMakingOrder.cs</DependentUpon>
  2146. </EmbeddedResource>
  2147. <EmbeddedResource Include="炼钢计划\FrmSteelMakingPlan.resx">
  2148. <DependentUpon>FrmSteelMakingPlan.cs</DependentUpon>
  2149. </EmbeddedResource>
  2150. <EmbeddedResource Include="炼钢计划\FrmSteelMakingPlanChange.resx">
  2151. <DependentUpon>FrmSteelMakingPlanChange.cs</DependentUpon>
  2152. </EmbeddedResource>
  2153. <EmbeddedResource Include="炼钢计划\FrmSteelMakingPlanDesign.resx">
  2154. <DependentUpon>FrmSteelMakingPlanDesign.cs</DependentUpon>
  2155. </EmbeddedResource>
  2156. <EmbeddedResource Include="炼钢计划\FrmSteelManagement.resx">
  2157. <DependentUpon>FrmSteelManagement.cs</DependentUpon>
  2158. </EmbeddedResource>
  2159. <EmbeddedResource Include="炼钢计划\FrmSteelMerge.resx">
  2160. <DependentUpon>FrmSteelMerge.cs</DependentUpon>
  2161. </EmbeddedResource>
  2162. <EmbeddedResource Include="炼钢计划\FrmSteelPlnZg.resx">
  2163. <DependentUpon>FrmSteelPlnZg.cs</DependentUpon>
  2164. </EmbeddedResource>
  2165. <EmbeddedResource Include="炼钢计划\FrmSteelProcessCard.resx">
  2166. <DependentUpon>FrmSteelProcessCard.cs</DependentUpon>
  2167. </EmbeddedResource>
  2168. <EmbeddedResource Include="炼钢计划\FrmSteelProcessSelect.resx">
  2169. <DependentUpon>FrmSteelProcessSelect.cs</DependentUpon>
  2170. </EmbeddedResource>
  2171. <EmbeddedResource Include="炼钢计划\FrmSteelSupplement.resx">
  2172. <DependentUpon>FrmSteelSupplement.cs</DependentUpon>
  2173. </EmbeddedResource>
  2174. <EmbeddedResource Include="炼钢计划\StoveInfo.resx">
  2175. <DependentUpon>StoveInfo.cs</DependentUpon>
  2176. </EmbeddedResource>
  2177. <EmbeddedResource Include="物料Bom\FrmMaterialBom.resx">
  2178. <DependentUpon>FrmMaterialBom.cs</DependentUpon>
  2179. </EmbeddedResource>
  2180. <EmbeddedResource Include="物料Bom\FrmTest.resx">
  2181. <DependentUpon>FrmTest.cs</DependentUpon>
  2182. </EmbeddedResource>
  2183. <EmbeddedResource Include="窗体\FrmBaseMaterialBPl.resx">
  2184. <DependentUpon>FrmBaseMaterialBPl.cs</DependentUpon>
  2185. </EmbeddedResource>
  2186. <EmbeddedResource Include="窗体\FrmBasematerialCPl.resx">
  2187. <DependentUpon>FrmBasematerialCPl.cs</DependentUpon>
  2188. </EmbeddedResource>
  2189. <EmbeddedResource Include="窗体\FrmBaseMaterialDPl.resx">
  2190. <DependentUpon>FrmBaseMaterialDPl.cs</DependentUpon>
  2191. </EmbeddedResource>
  2192. <EmbeddedResource Include="窗体\FrmBaseMaterialEPl.resx">
  2193. <DependentUpon>FrmBaseMaterialEPl.cs</DependentUpon>
  2194. </EmbeddedResource>
  2195. <EmbeddedResource Include="窗体\FrmBaseMaterialFPl.resx">
  2196. <DependentUpon>FrmBaseMaterialFPl.cs</DependentUpon>
  2197. <SubType>Designer</SubType>
  2198. </EmbeddedResource>
  2199. <EmbeddedResource Include="窗体\FrmBaseMaterialHPl.resx">
  2200. <DependentUpon>FrmBaseMaterialHPl.cs</DependentUpon>
  2201. </EmbeddedResource>
  2202. <EmbeddedResource Include="窗体\FrmBaseMaterialIPl.resx">
  2203. <DependentUpon>FrmBaseMaterialIPl.cs</DependentUpon>
  2204. <SubType>Designer</SubType>
  2205. </EmbeddedResource>
  2206. <EmbeddedResource Include="窗体\FrmCL.resx">
  2207. <DependentUpon>FrmCL.cs</DependentUpon>
  2208. </EmbeddedResource>
  2209. <EmbeddedResource Include="窗体\FrmCraftFileLv2.resx">
  2210. <DependentUpon>FrmCraftFileLv2.cs</DependentUpon>
  2211. </EmbeddedResource>
  2212. <EmbeddedResource Include="窗体\FrmGreaBom.resx">
  2213. <DependentUpon>FrmGreaBom.cs</DependentUpon>
  2214. </EmbeddedResource>
  2215. <EmbeddedResource Include="窗体\FrmJxjh.resx">
  2216. <DependentUpon>FrmJxjh.cs</DependentUpon>
  2217. </EmbeddedResource>
  2218. <EmbeddedResource Include="窗体\FrmMscPlineChange.resx">
  2219. <DependentUpon>FrmMscPlineChange.cs</DependentUpon>
  2220. <SubType>Designer</SubType>
  2221. </EmbeddedResource>
  2222. <EmbeddedResource Include="窗体\FrmPlanWgtIn.resx">
  2223. <DependentUpon>FrmPlanWgtIn.cs</DependentUpon>
  2224. <SubType>Designer</SubType>
  2225. </EmbeddedResource>
  2226. <EmbeddedResource Include="窗体\FrmPreGxInfo.resx">
  2227. <DependentUpon>FrmPreGxInfo.cs</DependentUpon>
  2228. </EmbeddedResource>
  2229. <EmbeddedResource Include="窗体\FrmProInformation.resx">
  2230. <DependentUpon>FrmProInformation.cs</DependentUpon>
  2231. </EmbeddedResource>
  2232. <EmbeddedResource Include="窗体\FrmSpitPlanJg.resx">
  2233. <DependentUpon>FrmSpitPlanJg.cs</DependentUpon>
  2234. </EmbeddedResource>
  2235. <EmbeddedResource Include="窗体\FrmSpitPlanM.resx">
  2236. <DependentUpon>FrmSpitPlanM.cs</DependentUpon>
  2237. </EmbeddedResource>
  2238. <EmbeddedResource Include="窗体\FrmSpitPlanZgM.resx">
  2239. <DependentUpon>FrmSpitPlanZgM.cs</DependentUpon>
  2240. </EmbeddedResource>
  2241. <EmbeddedResource Include="窗体\FrmSpitWgt.resx">
  2242. <DependentUpon>FrmSpitWgt.cs</DependentUpon>
  2243. </EmbeddedResource>
  2244. <EmbeddedResource Include="窗体\FrmSpitWgtSProc.resx">
  2245. <DependentUpon>FrmSpitWgtSProc.cs</DependentUpon>
  2246. </EmbeddedResource>
  2247. <EmbeddedResource Include="窗体\FrmSpitWgtZg.resx">
  2248. <DependentUpon>FrmSpitWgtZg.cs</DependentUpon>
  2249. </EmbeddedResource>
  2250. <EmbeddedResource Include="窗体\FrmZgSum.resx">
  2251. <DependentUpon>FrmZgSum.cs</DependentUpon>
  2252. </EmbeddedResource>
  2253. <EmbeddedResource Include="管坯优化\FrmChangeGrade.resx">
  2254. <DependentUpon>FrmChangeGrade.cs</DependentUpon>
  2255. </EmbeddedResource>
  2256. <EmbeddedResource Include="管坯优化\FrmGradeAnalysis.resx">
  2257. <DependentUpon>FrmGradeAnalysis.cs</DependentUpon>
  2258. </EmbeddedResource>
  2259. <EmbeddedResource Include="管坯优化\FrmPlnZgMStoGp.resx">
  2260. <DependentUpon>FrmPlnZgMStoGp.cs</DependentUpon>
  2261. </EmbeddedResource>
  2262. <Compile Include="ZGCheck\frmZgGxCheck.cs">
  2263. <SubType>Form</SubType>
  2264. </Compile>
  2265. <Compile Include="ZGCheck\frmZgGxCheck.Designer.cs">
  2266. <DependentUpon>frmZgGxCheck.cs</DependentUpon>
  2267. </Compile>
  2268. <Compile Include="ZGCheck\V_ZG_PCORDERS_CXEntity.cs" />
  2269. <Compile Include="工序合同\FrmInnerChange.cs">
  2270. <SubType>Form</SubType>
  2271. </Compile>
  2272. <Compile Include="工序合同\FrmInnerChange.Designer.cs">
  2273. <DependentUpon>FrmInnerChange.cs</DependentUpon>
  2274. </Compile>
  2275. <Compile Include="工序合同\FrmPlnProcOrdJgx.cs">
  2276. <SubType>Form</SubType>
  2277. </Compile>
  2278. <Compile Include="工序合同\FrmPlnProcOrdJgx.Designer.cs">
  2279. <DependentUpon>FrmPlnProcOrdJgx.cs</DependentUpon>
  2280. </Compile>
  2281. <Compile Include="工序合同\FrmPlnProcOrdRcl.cs">
  2282. <SubType>Form</SubType>
  2283. </Compile>
  2284. <Compile Include="工序合同\FrmPlnProcOrdRcl.Designer.cs">
  2285. <DependentUpon>FrmPlnProcOrdRcl.cs</DependentUpon>
  2286. </Compile>
  2287. <Compile Include="工序合同\FrmProcessOrder.cs">
  2288. <SubType>Form</SubType>
  2289. </Compile>
  2290. <Compile Include="工序合同\FrmProcessOrder.Designer.cs">
  2291. <DependentUpon>FrmProcessOrder.cs</DependentUpon>
  2292. </Compile>
  2293. <Compile Include="工序合同\helper\DucHelper.cs" />
  2294. <Compile Include="工序排产\entity\PlnOrderDbkSEntity.cs" />
  2295. <Compile Include="工序排产\entity\PlnOrderDbkSOEntity.cs" />
  2296. <Compile Include="工序排产\entity\PlnOrderJgxSEntity.cs" />
  2297. <Compile Include="工序排产\entity\PlnOrderJgxSOEntity.cs" />
  2298. <Compile Include="工序排产\entity\PlnOrderRclSEntity.cs" />
  2299. <Compile Include="工序排产\entity\PlnOrderRclSOEntity.cs" />
  2300. <Compile Include="工序排产\FrmJgxSInfo.cs">
  2301. <SubType>Form</SubType>
  2302. </Compile>
  2303. <Compile Include="工序排产\FrmJgxSInfo.Designer.cs">
  2304. <DependentUpon>FrmJgxSInfo.cs</DependentUpon>
  2305. </Compile>
  2306. <Compile Include="工序排产\FrmPlnOrderDbkS.cs">
  2307. <SubType>Form</SubType>
  2308. </Compile>
  2309. <Compile Include="工序排产\FrmPlnOrderDbkS.Designer.cs">
  2310. <DependentUpon>FrmPlnOrderDbkS.cs</DependentUpon>
  2311. </Compile>
  2312. <Compile Include="工序排产\FrmPlnOrderJgxS.cs">
  2313. <SubType>Form</SubType>
  2314. </Compile>
  2315. <Compile Include="工序排产\FrmPlnOrderJgxS.Designer.cs">
  2316. <DependentUpon>FrmPlnOrderJgxS.cs</DependentUpon>
  2317. </Compile>
  2318. <Compile Include="工序排产\FrmPlnOrderRclS.cs">
  2319. <SubType>Form</SubType>
  2320. </Compile>
  2321. <Compile Include="工序排产\FrmPlnOrderRclS.Designer.cs">
  2322. <DependentUpon>FrmPlnOrderRclS.cs</DependentUpon>
  2323. </Compile>
  2324. <Compile Include="工序排产\FrmRclInfo.cs">
  2325. <SubType>Form</SubType>
  2326. </Compile>
  2327. <Compile Include="工序排产\FrmRclInfo.Designer.cs">
  2328. <DependentUpon>FrmRclInfo.cs</DependentUpon>
  2329. </Compile>
  2330. <Compile Include="工序排产\PlanHelper.cs" />
  2331. <Compile Include="工序订单\Control\ControlOrderDbkM.cs">
  2332. <SubType>UserControl</SubType>
  2333. </Compile>
  2334. <Compile Include="工序订单\Control\ControlOrderDbkM.Designer.cs">
  2335. <DependentUpon>ControlOrderDbkM.cs</DependentUpon>
  2336. </Compile>
  2337. <Compile Include="工序订单\Control\ControlOrderJgxM.cs">
  2338. <SubType>UserControl</SubType>
  2339. </Compile>
  2340. <Compile Include="工序订单\Control\ControlOrderJgxM.Designer.cs">
  2341. <DependentUpon>ControlOrderJgxM.cs</DependentUpon>
  2342. </Compile>
  2343. <Compile Include="工序订单\Control\ControlOrderRclM.cs">
  2344. <SubType>UserControl</SubType>
  2345. </Compile>
  2346. <Compile Include="工序订单\Control\ControlOrderRclM.Designer.cs">
  2347. <DependentUpon>ControlOrderRclM.cs</DependentUpon>
  2348. </Compile>
  2349. <Compile Include="工序订单\Control\ControlOrderZgM.cs">
  2350. <SubType>UserControl</SubType>
  2351. </Compile>
  2352. <Compile Include="工序订单\Control\ControlOrderZgM.Designer.cs">
  2353. <DependentUpon>ControlOrderZgM.cs</DependentUpon>
  2354. </Compile>
  2355. <Compile Include="工序订单\entity\PlnGxDbkMEntity.cs" />
  2356. <Compile Include="工序订单\entity\PlnGxDbkMOEntity.cs" />
  2357. <Compile Include="工序订单\entity\PlnGxJgxMEntity.cs" />
  2358. <Compile Include="工序订单\entity\PlnGxJgxMOEntity.cs" />
  2359. <Compile Include="工序订单\entity\PlnGxRclMEntity.cs" />
  2360. <Compile Include="工序订单\entity\PlnGxRclMOEntity.cs" />
  2361. <Compile Include="工序订单\entity\PlnGxZgMEntity.cs" />
  2362. <Compile Include="工序订单\entity\PlnGxZgMOEntity.cs" />
  2363. <Compile Include="工序订单\entity\PlnOrderDbkEntity.cs" />
  2364. <Compile Include="工序订单\entity\PlnOrderJgxEntity.cs" />
  2365. <Compile Include="工序订单\entity\PlnOrderRclEntity.cs" />
  2366. <Compile Include="工序订单\entity\PlnOrderZgEntity.cs" />
  2367. <Compile Include="工序订单\FrmOrderDbk.cs">
  2368. <SubType>Form</SubType>
  2369. </Compile>
  2370. <Compile Include="工序订单\FrmOrderDbk.Designer.cs">
  2371. <DependentUpon>FrmOrderDbk.cs</DependentUpon>
  2372. </Compile>
  2373. <Compile Include="工序订单\FrmOrderJg.cs">
  2374. <SubType>Form</SubType>
  2375. </Compile>
  2376. <Compile Include="工序订单\FrmOrderJg.Designer.cs">
  2377. <DependentUpon>FrmOrderJg.cs</DependentUpon>
  2378. </Compile>
  2379. <Compile Include="工序订单\FrmOrderRcl.cs">
  2380. <SubType>Form</SubType>
  2381. </Compile>
  2382. <Compile Include="工序订单\FrmOrderRcl.Designer.cs">
  2383. <DependentUpon>FrmOrderRcl.cs</DependentUpon>
  2384. </Compile>
  2385. <Compile Include="工序订单\FrmOrderZg.cs">
  2386. <SubType>Form</SubType>
  2387. </Compile>
  2388. <Compile Include="工序订单\FrmOrderZg.Designer.cs">
  2389. <DependentUpon>FrmOrderZg.cs</DependentUpon>
  2390. </Compile>
  2391. <Compile Include="工序订单\OrderHelper.cs" />
  2392. <Compile Include="窗体\FrmBaseMaterialDPl.cs">
  2393. <SubType>Form</SubType>
  2394. </Compile>
  2395. <Compile Include="窗体\FrmBaseMaterialDPl.Designer.cs">
  2396. <DependentUpon>FrmBaseMaterialDPl.cs</DependentUpon>
  2397. </Compile>
  2398. <Compile Include="窗体\FrmBaseMaterialEPl.cs">
  2399. <SubType>Form</SubType>
  2400. </Compile>
  2401. <Compile Include="窗体\FrmBaseMaterialEPl.Designer.cs">
  2402. <DependentUpon>FrmBaseMaterialEPl.cs</DependentUpon>
  2403. </Compile>
  2404. <Compile Include="窗体\FrmBaseMaterialFPl.cs">
  2405. <SubType>Form</SubType>
  2406. </Compile>
  2407. <Compile Include="窗体\FrmBaseMaterialFPl.Designer.cs">
  2408. <DependentUpon>FrmBaseMaterialFPl.cs</DependentUpon>
  2409. </Compile>
  2410. <Compile Include="窗体\FrmBaseMaterialIPl.cs">
  2411. <SubType>Form</SubType>
  2412. </Compile>
  2413. <Compile Include="窗体\FrmBaseMaterialIPl.Designer.cs">
  2414. <DependentUpon>FrmBaseMaterialIPl.cs</DependentUpon>
  2415. </Compile>
  2416. <Compile Include="窗体\FrmGreaBom.cs">
  2417. <SubType>Form</SubType>
  2418. </Compile>
  2419. <Compile Include="窗体\FrmGreaBom.Designer.cs">
  2420. <DependentUpon>FrmGreaBom.cs</DependentUpon>
  2421. </Compile>
  2422. <Compile Include="窗体\FrmJxjh.cs">
  2423. <SubType>Form</SubType>
  2424. </Compile>
  2425. <Compile Include="窗体\FrmJxjh.Designer.cs">
  2426. <DependentUpon>FrmJxjh.cs</DependentUpon>
  2427. </Compile>
  2428. <Compile Include="窗体\FrmMscPlineChange.cs">
  2429. <SubType>Form</SubType>
  2430. </Compile>
  2431. <Compile Include="窗体\FrmMscPlineChange.Designer.cs">
  2432. <DependentUpon>FrmMscPlineChange.cs</DependentUpon>
  2433. </Compile>
  2434. <Compile Include="窗体\FrmPlanWgtIn.cs">
  2435. <SubType>Form</SubType>
  2436. </Compile>
  2437. <Compile Include="窗体\FrmPlanWgtIn.Designer.cs">
  2438. <DependentUpon>FrmPlanWgtIn.cs</DependentUpon>
  2439. </Compile>
  2440. <Compile Include="窗体\FrmSpitWgt.cs">
  2441. <SubType>Form</SubType>
  2442. </Compile>
  2443. <Compile Include="窗体\FrmSpitWgt.Designer.cs">
  2444. <DependentUpon>FrmSpitWgt.cs</DependentUpon>
  2445. </Compile>
  2446. <EmbeddedResource Include="管坯优化\FrmSteelGrade.resx">
  2447. <DependentUpon>FrmSteelGrade.cs</DependentUpon>
  2448. </EmbeddedResource>
  2449. <EmbeddedResource Include="管坯优化\FrmWalktHrough.resx">
  2450. <DependentUpon>FrmWalktHrough.cs</DependentUpon>
  2451. </EmbeddedResource>
  2452. <EmbeddedResource Include="高新\FrmGXElements.resx">
  2453. <DependentUpon>FrmGXElements.cs</DependentUpon>
  2454. </EmbeddedResource>
  2455. <EmbeddedResource Include="高新\FrmHeatProductionMesGXJG.resx">
  2456. <DependentUpon>FrmHeatProductionMesGXJG.cs</DependentUpon>
  2457. </EmbeddedResource>
  2458. <EmbeddedResource Include="高新\FrmHeatProductionMesGXRCL.resx">
  2459. <DependentUpon>FrmHeatProductionMesGXRCL.cs</DependentUpon>
  2460. </EmbeddedResource>
  2461. <EmbeddedResource Include="高新\FrmHeatProductionMesGXRZ.resx">
  2462. <DependentUpon>FrmHeatProductionMesGXRZ.cs</DependentUpon>
  2463. </EmbeddedResource>
  2464. </ItemGroup>
  2465. <ItemGroup>
  2466. <Folder Include="PlanStove\Control\" />
  2467. <Folder Include="工序合同\entity\" />
  2468. </ItemGroup>
  2469. <ItemGroup>
  2470. <Content Include="Resources\Ar.cur" />
  2471. <Content Include="Resources\Arrows.cur" />
  2472. </ItemGroup>
  2473. <ItemGroup>
  2474. <WCFMetadata Include="Service References\" />
  2475. </ItemGroup>
  2476. <ItemGroup>
  2477. <None Include="Core.StlMes.Client.PlnSaleOrd.工序排产.entity.TPoDemandPlanEntity.datasource" />
  2478. </ItemGroup>
  2479. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  2480. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  2481. Other similar extension points exist, see Microsoft.Common.targets.
  2482. <Target Name="BeforeBuild">
  2483. </Target>
  2484. <Target Name="AfterBuild">
  2485. </Target>
  2486. -->
  2487. </Project>