| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.21022</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{8034736C-47A3-49D3-9703-8820FF9CB912}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Core.StlMes.Client.PlnSaleOrd</RootNamespace>
- <AssemblyName>Core.StlMes.Client.PlnSaleOrd</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <StartupObject>
- </StartupObject>
- <FileUpgradeFlags>
- </FileUpgradeFlags>
- <UpgradeBackupLocation>
- </UpgradeBackupLocation>
- <OldToolsVersion>3.5</OldToolsVersion>
- <TargetFrameworkProfile />
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\output\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Core.Mes.Client.Comm, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
- <Reference Include="Core.StlMes.Client.SaleComm, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
- <Reference Include="CoreFS.CA06, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
- <Reference Include="Infragistics2.Excel.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Excel.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Infragistics2.Shared.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Shared.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Infragistics2.Win.Misc.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Win.Misc.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Infragistics2.Win.UltraWinDataSource.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Win.UltraWinDataSource.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Infragistics2.Win.UltraWinEditors.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Win.UltraWinEditors.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Infragistics2.Win.UltraWinGrid.ExcelExport.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Win.UltraWinGrid.ExcelExport.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Infragistics2.Win.UltraWinGrid.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Win.UltraWinGrid.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Infragistics2.Win.UltraWinTabControl.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Win.UltraWinTabControl.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Infragistics2.Win.UltraWinToolbars.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Win.UltraWinToolbars.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Infragistics2.Win.v9.2, Version=9.2.20092.1003, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Infragistics2.Win.v9.2.dll</HintPath>
- </Reference>
- <Reference Include="Microsoft.Office.Interop.Excel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Microsoft.Office.Interop.Excel.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\Newtonsoft.Json.dll</HintPath>
- </Reference>
- <Reference Include="NPOI, Version=2.2.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\NPOI.dll</HintPath>
- </Reference>
- <Reference Include="NPOI.OOXML, Version=2.2.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\NPOI.OOXML.dll</HintPath>
- </Reference>
- <Reference Include="NPOI.OpenXml4Net, Version=2.2.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\NPOI.OpenXml4Net.dll</HintPath>
- </Reference>
- <Reference Include="NPOI.OpenXmlFormats, Version=2.2.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\output\NPOI.OpenXmlFormats.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core">
- <RequiredTargetFramework>3.5</RequiredTargetFramework>
- </Reference>
- <Reference Include="System.Xml.Linq">
- <RequiredTargetFramework>3.5</RequiredTargetFramework>
- </Reference>
- <Reference Include="System.Data.DataSetExtensions">
- <RequiredTargetFramework>3.5</RequiredTargetFramework>
- </Reference>
- <Reference Include="System.Data" />
- <Reference Include="System.Deployment" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Windows.Forms" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="BaseForm.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="BaseForm.Designer.cs">
- <DependentUpon>BaseForm.cs</DependentUpon>
- </Compile>
- <Compile Include="BaseMethod\BaseHelper.cs" />
- <Compile Include="BaseMethod\FrmDefGroup.cs">
- </Compile>
- <Compile Include="BaseMethod\FrmReturnCon.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="BaseMethod\FrmReturnCon.Designer.cs">
- <DependentUpon>FrmReturnCon.cs</DependentUpon>
- </Compile>
- <Compile Include="BaseMethod\model\InOrdParamEntity.cs" />
- <Compile Include="BaseMethod\model\OutOrdParamEntity.cs" />
- <Compile Include="BaseMethod\OrderStdSic.cs">
- </Compile>
- <Compile Include="BaseMethod\PlnGetOrdAmount.cs" />
- <Compile Include="BaseMethod\PlnOrdProcRefresCal.cs" />
- <Compile Include="BaseMethod\PlnSaleOrderBase.cs" />
- <Compile Include="BaseMethod\ToleranceNk.cs">
- </Compile>
- <Compile Include="BLDEAL\FrmPlnBlReqOrd.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="BLDEAL\FrmPlnBlReqOrd.Designer.cs">
- <DependentUpon>FrmPlnBlReqOrd.cs</DependentUpon>
- </Compile>
- <Compile Include="BLDEAL\model\PlnBlReqOrdInfEntity.cs" />
- <Compile Include="BLL\ComMscPilneBLL.cs" />
- <Compile Include="BLL\ComOrdExportBLL.cs" />
- <Compile Include="ComPlnJGDJDeal.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="ComPlnJGDJDeal.Designer.cs">
- <DependentUpon>ComPlnJGDJDeal.cs</DependentUpon>
- </Compile>
- <Compile Include="Controls\ButtonKey.cs" />
- <Compile Include="Controls\Constant.cs" />
- <Compile Include="Controls\FrmMatGpInfo.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="Controls\FrmMatGpInfo.Designer.cs">
- <DependentUpon>FrmMatGpInfo.cs</DependentUpon>
- </Compile>
- <Compile Include="Controls\PipeManageClass.cs" />
- <Compile Include="Controls\PopupTextBox.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="Controls\PopupTextBox.Designer.cs">
- <DependentUpon>PopupTextBox.cs</DependentUpon>
- </Compile>
- <Compile Include="Controls\WaitingForm.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="Controls\WaitingForm.designer.cs">
- <DependentUpon>WaitingForm.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ComMscPilneCtrl.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\ComMscPilneCtrl.Designer.cs">
- <DependentUpon>ComMscPilneCtrl.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ComOrdExportCtrl.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\ComOrdExportCtrl.Designer.cs">
- <DependentUpon>ComOrdExportCtrl.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ComOrdJGDJPanel.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\ComOrdJGDJPanel.Designer.cs">
- <DependentUpon>ComOrdJGDJPanel.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ComQueryPandProcOrd.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\ComQueryPandProcOrd.Designer.cs">
- <DependentUpon>ComQueryPandProcOrd.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ComQueryPanel.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\ComQueryPanel.Designer.cs">
- <DependentUpon>ComQueryPanel.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ComQueryPanelProdu.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\ComQueryPanelProdu.Designer.cs">
- <DependentUpon>ComQueryPanelProdu.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ComQueryPanelSource.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\ComQueryPanelSource.Designer.cs">
- <DependentUpon>ComQueryPanelSource.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ComQueryPanlInf.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\ComQueryPanlInf.Designer.cs">
- <DependentUpon>ComQueryPanlInf.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ContorlPlanStatus.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\ContorlPlanStatus.Designer.cs">
- <DependentUpon>ContorlPlanStatus.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\ControlRadioButton.cs">
- <SubType>Component</SubType>
- </Compile>
- <Compile Include="Control\FrmReportLiKu.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="Control\FrmReportLiKu.Designer.cs">
- <DependentUpon>FrmReportLiKu.cs</DependentUpon>
- </Compile>
- <Compile Include="Control\UserControlSaleordProc.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="Control\UserControlSaleordProc.Designer.cs">
- <DependentUpon>UserControlSaleordProc.cs</DependentUpon>
- </Compile>
- <Compile Include="Entity\CraftFileLv2Entity.cs" />
- <Compile Include="Entity\CraftOrdDesignMscPlEntity.cs" />
- <Compile Include="Entity\CraftOrdDesignMscPlGzEntity.cs" />
- <Compile Include="Entity\CraftOrdDesignMscPlPrcEntity.cs" />
- <Compile Include="Entity\FrmJgxsInfoEntity.cs" />
- <Compile Include="Entity\FrmRclInfoEntity.cs" />
- <Compile Include="Entity\MatGpMEntity.cs" />
- <Compile Include="Entity\MscPlineChangeEntity.cs" />
- <Compile Include="Entity\PlnOrderDbkEntity.cs" />
- <Compile Include="Entity\PlnOrderDbkSEntity.cs" />
- <Compile Include="Entity\PlnOrderDownLogEntity.cs" />
- <Compile Include="Entity\PlnOrderDzEntity.cs" />
- <Compile Include="Entity\PlnOrderJgxEntity.cs" />
- <Compile Include="Entity\PlnOrderJgxSEntity.cs" />
- <Compile Include="Entity\PlnOrderRclEntity.cs" />
- <Compile Include="Entity\PlnOrderRclSEntity.cs" />
- <Compile Include="Entity\PlnOrderZgEntity.cs" />
- <Compile Include="Entity\PlnOrdJgxSPineEntity.cs" />
- <Compile Include="Entity\PlnOrdRclSPineEntity.cs" />
- <Compile Include="Entity\PlnReqinfGpEntity.cs" />
- <Compile Include="Entity\PlnSaleorderEntity.cs" />
- <Compile Include="Entity\PlnSaleordProcEntity.cs" />
- <Compile Include="Entity\PreGxInfoEntity.cs" />
- <Compile Include="Entity\QcmZgJugdeApplyEntity.cs" />
- <Compile Include="Entity\ReportOrderLineDelivery.cs" />
- <Compile Include="Entity\SlmBaseMaterialBPlEntity.cs" />
- <Compile Include="Entity\SlmBaseMaterialCPlEntity.cs" />
- <Compile Include="Entity\SlmBaseMaterialDPlEntity.cs" />
- <Compile Include="Entity\SlmBaseMaterialEPlEntity.cs" />
- <Compile Include="Entity\SlmBaseMaterialFPlEntity.cs" />
- <Compile Include="Entity\SlmBaseMaterialHPlEntity.cs" />
- <Compile Include="Entity\SlmBaseMaterialIPlEntity.cs" />
- <Compile Include="Entity\SlmBaseMaterialKPlEntity .cs" />
- <Compile Include="Entity\SlmOrdDesignBomEntity.cs" />
- <Compile Include="Entity\SlmOrderLenEntity.cs" />
- <Compile Include="Entity\SlmOrderLinePrdcrEntity.cs" />
- <Compile Include="Entity\SlmOrderLinePrdcrLstEntity.cs" />
- <Compile Include="FrmApplyRoval.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmApplyRoval.Designer.cs">
- <DependentUpon>FrmApplyRoval.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmBaseModelLen.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmBaseModelLen.Designer.cs">
- <DependentUpon>FrmBaseModelLen.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmBlOrderPln.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmBlOrderPln.Designer.cs">
- <DependentUpon>FrmBlOrderPln.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmConfirmCraft.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmConfirmCraft.Designer.cs">
- <DependentUpon>FrmConfirmCraft.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmConfirmCraftQuery.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmConfirmCraftQuery.Designer.cs">
- <DependentUpon>FrmConfirmCraftQuery.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmMatJgMImport.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmMatJgMImport.Designer.cs">
- <DependentUpon>FrmMatJgMImport.cs</DependentUpon>
- </Compile>
- <Compile Include="frmOrderLenPln.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="frmOrderLenPln.Designer.cs">
- <DependentUpon>frmOrderLenPln.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmOrderStatusSet.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmOrderStatusSet.Designer.cs">
- <DependentUpon>FrmOrderStatusSet.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmOrdFinishSet.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmOrdFinishSet.Designer.cs">
- <DependentUpon>FrmOrdFinishSet.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmPlnModifyOrdDPine.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmPlnModifyOrdDPine.Designer.cs">
- <DependentUpon>FrmPlnModifyOrdDPine.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmPlnOrdCraftModifyLog.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmPlnOrdCraftModifyLog.Designer.cs">
- <DependentUpon>FrmPlnOrdCraftModifyLog.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmPlnOrderDownLog.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmPlnOrderDownLog.Designer.cs">
- <DependentUpon>FrmPlnOrderDownLog.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmPlnOrdJgDjDeal.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmPlnOrdJgDjDeal.Designer.cs">
- <DependentUpon>FrmPlnOrdJgDjDeal.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmPlnOrdPriority.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmPlnOrdPriority.Designer.cs">
- <DependentUpon>FrmPlnOrdPriority.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmPlnSaleOrder.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmPlnSaleOrder.Designer.cs">
- <DependentUpon>FrmPlnSaleOrder.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmQueryOrdProcInf.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmQueryOrdProcInf.Designer.cs">
- <DependentUpon>FrmQueryOrdProcInf.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmReqApplyInfo.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmReqApplyInfo.Designer.cs">
- <DependentUpon>FrmReqApplyInfo.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmSaleOrderlog.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmSaleOrderlog.Designer.cs">
- <DependentUpon>FrmSaleOrderlog.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmSaleOrderReceive.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmSaleOrderReceive.Designer.cs">
- <DependentUpon>FrmSaleOrderReceive.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmSaleOrdFillApply.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmSaleOrdFillApply.Designer.cs">
- <DependentUpon>FrmSaleOrdFillApply.cs</DependentUpon>
- </Compile>
- <Compile Include="FrmYieldInOutputQuery.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="FrmYieldInOutputQuery.Designer.cs">
- <DependentUpon>FrmYieldInOutputQuery.cs</DependentUpon>
- </Compile>
- <Compile Include="InventoryAdjustment\entity\PlnOrderZgSEntity.cs" />
- <Compile Include="InventoryAdjustment\entity\PlnOrderZgSOEntity.cs" />
- <Compile Include="InventoryAdjustment\entity\PlnZyZgMEntityAc.cs" />
- <Compile Include="InventoryAdjustment\InventoryAdjustment.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="InventoryAdjustment\InventoryAdjustment.Designer.cs">
- <DependentUpon>InventoryAdjustment.cs</DependentUpon>
- </Compile>
- <Compile Include="InventoryAdjustment\TubeRolling.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="InventoryAdjustment\TubeRolling.Designer.cs">
- <DependentUpon>TubeRolling.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\BLL\ComPlineTimeBLL.cs" />
- <Compile Include="JGGXPln\Control\ComJgMBlOrd.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="JGGXPln\Control\ComJgMBlOrd.Designer.cs">
- <DependentUpon>ComJgMBlOrd.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\Control\ComPlineTimeCtrl.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="JGGXPln\Control\ComPlineTimeCtrl.Designer.cs">
- <DependentUpon>ComPlineTimeCtrl.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\Control\ComPlnJgOrdToDd.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="JGGXPln\Control\ComPlnJgOrdToDd.Designer.cs">
- <DependentUpon>ComPlnJgOrdToDd.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\Entity\CouplingMatMEntity.cs" />
- <Compile Include="JGGXPln\Entity\CouplingMatMOrderEntity.cs" />
- <Compile Include="JGGXPln\Entity\FrmPlnGxJgMEntity.cs" />
- <Compile Include="JGGXPln\Entity\FrmPlnZyJgEntity.cs" />
- <Compile Include="JGGXPln\Entity\PlnOrderGxJgCEntity.cs" />
- <Compile Include="JGGXPln\Entity\PlnOrderJgEntity.cs" />
- <Compile Include="JGGXPln\Entity\PlnOrderJgEntityCraftNo.cs" />
- <Compile Include="JGGXPln\Entity\PlnZyJgWorkbillEntity.cs" />
- <Compile Include="JGGXPln\FrmCraftJgNoSecond.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\FrmCraftJgNoSecond.Designer.cs">
- <DependentUpon>FrmCraftJgNoSecond.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\FrmJgMPlnZy.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\FrmJgMPlnZy.Designer.cs">
- <DependentUpon>FrmJgMPlnZy.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\FrmJgOperatPln.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\FrmJgOperatPln.Designer.cs">
- <DependentUpon>FrmJgOperatPln.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\FrmJgOrderLk.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\FrmJgOrderLk.Designer.cs">
- <DependentUpon>FrmJgOrderLk.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\FrmJgSecondProcess.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\FrmJgSecondProcess.Designer.cs">
- <DependentUpon>FrmJgSecondProcess.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\FrmJgZYPlnEdit.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\FrmJgZYPlnEdit.Designer.cs">
- <DependentUpon>FrmJgZYPlnEdit.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\FrmPlnZyJgWorkBill.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\FrmPlnZyJgWorkBill.Designer.cs">
- <DependentUpon>FrmPlnZyJgWorkBill.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\FrmSpitBill.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\FrmSpitBill.Designer.cs">
- <DependentUpon>FrmSpitBill.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\model\CouplingMatButtressEntity.cs" />
- <Compile Include="JGGXPln\model\MatZcMEntity.cs" />
- <Compile Include="JGGXPln\model\PlnGxJgDEntity.cs" />
- <Compile Include="JGGXPln\model\PlnGxJgMEntity.cs" />
- <Compile Include="JGGXPln\model\PlnGxJgPropEntity.cs" />
- <Compile Include="JGGXPln\model\PlnOrdJgEditEntity.cs" />
- <Compile Include="JGGXPln\model\PlnZyJgCutEntity.cs" />
- <Compile Include="JGGXPln\model\PlnZyJgEntity.cs" />
- <Compile Include="JGGXPln\model\PlnZyJgProEntity.cs" />
- <Compile Include="JGGXPln\Old\FrmModifyPlnJgM.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\Old\FrmModifyPlnJgM.Designer.cs">
- <DependentUpon>FrmModifyPlnJgM.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\Old\FrmOrderJGGXPln.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\Old\FrmOrderJGGXPln.designer.cs">
- <DependentUpon>FrmOrderJGGXPln.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\Old\PlnGxJgMEntity.cs" />
- <Compile Include="JGGXPln\PopupWindow\FrmGXandTime.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\PopupWindow\FrmGXandTime.Designer.cs">
- <DependentUpon>FrmGXandTime.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\PopupWindow\FrmGxJgMPrdcrLst.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\PopupWindow\FrmGxJgMPrdcrLst.Designer.cs">
- <DependentUpon>FrmGxJgMPrdcrLst.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\窗体\FrmJgUseStock.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\窗体\FrmJgUseStock.Designer.cs">
- <DependentUpon>FrmJgUseStock.cs</DependentUpon>
- </Compile>
- <Compile Include="JGGXPln\窗体\FrmMatZcM.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="JGGXPln\窗体\FrmMatZcM.Designer.cs">
- <DependentUpon>FrmMatZcM.cs</DependentUpon>
- </Compile>
- <Compile Include="Object\MatZcMEntity.cs" />
- <Compile Include="Object\PlnDbkInOutInfoEntity.cs" />
- <Compile Include="Object\PlnOrdCraftFileEntity.cs" />
- <Compile Include="Object\PlnOrderJgEntity.cs" />
- <Compile Include="Object\PlnOrdJgEditEntity.cs" />
- <Compile Include="Object\PlnPorderBlReqEntity.cs" />
- <Compile Include="Object\PlnSaleordCrfEditLogEntity.cs" />
- <Compile Include="Object\PlnSaleordEntity.cs" />
- <Compile Include="Object\PlnSaleOrderQueryEntity.cs" />
- <Compile Include="Object\PlnSaleorderRNumEntity.cs" />
- <Compile Include="Object\PlnSaleordProcEntity.cs" />
- <Compile Include="Object\PlnSaleordSetEntity.cs" />
- <Compile Include="Object\SlmBaseMaterialDPlEntity.cs" />
- <Compile Include="Object\SlmOrdDesignBomEntity.cs" />
- <Compile Include="OrderManage\entity\comBasePassModelEntity.cs" />
- <Compile Include="OrderManage\entity\CraftOrdDesignMscPlGxPrlEntity.cs" />
- <Compile Include="OrderManage\entity\SlmOrdDesignBomEntity.cs" />
- <Compile Include="OrderManage\froms\FrmBomConfirm.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="OrderManage\froms\FrmBomConfirm.Designer.cs">
- <DependentUpon>FrmBomConfirm.cs</DependentUpon>
- </Compile>
- <Compile Include="OrderManage\froms\FrmGradeChoose.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="OrderManage\froms\FrmGradeChoose.Designer.cs">
- <DependentUpon>FrmGradeChoose.cs</DependentUpon>
- </Compile>
- <Compile Include="PlanComm\ExcelHelper.cs" />
- <Compile Include="PlanComm\ExclReportHelper.cs" />
- <Compile Include="PlanComm\LogOperator.cs" />
- <Compile Include="PlanComm\NPOIHelper.cs" />
- <Compile Include="PlanComm\PlanComm.cs" />
- <Compile Include="PlanComm\RollLenCal.cs" />
- <Compile Include="PlanComm\TreeViewHelper.cs" />
- <Compile Include="PlanStove\Comm\ClassDef.cs" />
- <Compile Include="PlanStove\Comm\CommHelper.cs" />
- <Compile Include="PlanStove\Comm\CustomInfoDef.cs" />
- <Compile Include="PlanStove\Comm\DBComm.cs" />
- <Compile Include="PlanStove\Comm\MethodDef.cs" />
- <Compile Include="PlanStove\Comm\PROCESS_CODEDef.cs" />
- <Compile Include="PlanStove\Comm\SqlIDDef.cs" />
- <Compile Include="PlanStove\Comm\TableNameDef.cs" />
- <Compile Include="PlanStove\DAL\BaseEntityDAL.cs" />
- <Compile Include="PlanStove\Dlg\FrmMaterialChoose.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PlanStove\Dlg\FrmMaterialChoose.Designer.cs">
- <DependentUpon>FrmMaterialChoose.cs</DependentUpon>
- </Compile>
- <Compile Include="PlanStove\Dlg\FrmMaterialSeparate.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PlanStove\Dlg\FrmMaterialSeparate.Designer.cs">
- <DependentUpon>FrmMaterialSeparate.cs</DependentUpon>
- </Compile>
- <Compile Include="PlanStove\entity\OrderBase.cs" />
- <Compile Include="PlanStove\entity\PlnMaterialEntity.cs" />
- <Compile Include="PlanStove\entity\PlnOrderDbkSEntity.cs" />
- <Compile Include="PlanStove\entity\PlnOrderJgxSEntity.cs" />
- <Compile Include="PlanStove\entity\PlnOrderRclSEntity.cs" />
- <Compile Include="PlanStove\entity\PlnOrderZgSEntity.cs" />
- <Compile Include="PlanStove\entity\PlnZyDbkMEntity.cs" />
- <Compile Include="PlanStove\entity\PlnZyJgxCEntity.cs" />
- <Compile Include="PlanStove\entity\PlnZyJgxMEntity.cs" />
- <Compile Include="PlanStove\entity\PlnZyRclMEntity.cs" />
- <Compile Include="PlanStove\entity\PlnZyZgCEntity.cs" />
- <Compile Include="PlanStove\entity\PlnZyZgCEntity1.cs" />
- <Compile Include="PlanStove\entity\PlnZyZgMEntity.cs" />
- <Compile Include="PlanStove\entity\PlnZyZgMEntity1.cs" />
- <Compile Include="PlanStove\entity\ZyBase.cs" />
- <Compile Include="PlanStove\frm\FrmPlanStovecs.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PlanStove\frm\FrmPlanStovecs.Designer.cs">
- <DependentUpon>FrmPlanStovecs.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\CouplingMatMEntity.cs" />
- <Compile Include="PopupWindow\dlgOrderAskDown.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\dlgOrderAskDown.designer.cs">
- <DependentUpon>dlgOrderAskDown.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\dlgOrderAskLook .cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\dlgOrderAskLook .Designer.cs">
- <DependentUpon>dlgOrderAskLook .cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmAddEinSpec.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmAddEinSpec.Designer.cs">
- <DependentUpon>FrmAddEinSpec.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmCalculateDbk.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmCalculateDbk.Designer.cs">
- <DependentUpon>FrmCalculateDbk.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmCancelPretreat.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmCancelPretreat.Designer.cs">
- <DependentUpon>FrmCancelPretreat.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmChangeBomDp.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmChangeBomDp.Designer.cs">
- <DependentUpon>FrmChangeBomDp.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmChangeIndex.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmChangeIndex.Designer.cs">
- <DependentUpon>FrmChangeIndex.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmGroupofDjBl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmGroupofDjBl.Designer.cs">
- <DependentUpon>FrmGroupofDjBl.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmImportSetMatJg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmImportSetMatJg.Designer.cs">
- <DependentUpon>FrmImportSetMatJg.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmImportSetOrder.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmImportSetOrder.Designer.cs">
- <DependentUpon>FrmImportSetOrder.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmImportSetPlnZg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmImportSetPlnZg.Designer.cs">
- <DependentUpon>FrmImportSetPlnZg.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmMatJgMImport.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmMatJgMImport.Designer.cs">
- <DependentUpon>FrmMatJgMImport.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmOrderCraftImport.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmOrderCraftImport.Designer.cs">
- <DependentUpon>FrmOrderCraftImport.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmOrdLinePrdcrLst.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmOrdLinePrdcrLst.Designer.cs">
- <DependentUpon>FrmOrdLinePrdcrLst.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmOrdProcessBasePl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmOrdProcessBasePl.Designer.cs">
- <DependentUpon>FrmOrdProcessBasePl.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmOutExcel.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmOutExcel.Designer.cs">
- <DependentUpon>FrmOutExcel.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmReqRequest.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmReqRequest.Designer.cs">
- <DependentUpon>FrmReqRequest.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmReqRollMonth.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmReqRollMonth.Designer.cs">
- <DependentUpon>FrmReqRollMonth.cs</DependentUpon>
- </Compile>
- <Compile Include="PopupWindow\FrmUpsettingDialExpansion.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="PopupWindow\FrmUpsettingDialExpansion.Designer.cs">
- <DependentUpon>FrmUpsettingDialExpansion.cs</DependentUpon>
- </Compile>
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Properties\Resources.Designer.cs">
- <AutoGen>True</AutoGen>
- <DesignTime>True</DesignTime>
- <DependentUpon>Resources.resx</DependentUpon>
- </Compile>
- <Compile Include="Resources\MyResource.Designer.cs" />
- <Compile Include="坯料测算\FrmPlnOrderCS.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="坯料测算\FrmPlnOrderCS.Designer.cs">
- <DependentUpon>FrmPlnOrderCS.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\control\BaseMandrelSpec.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="工序排产\control\BaseMandrelSpec.Designer.cs">
- <DependentUpon>BaseMandrelSpec.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\control\ContorlPlanStatusBL.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="工序排产\control\ContorlPlanStatusBL.Designer.cs">
- <DependentUpon>ContorlPlanStatusBL.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\control\PagingControl.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="工序排产\control\PagingControl.Designer.cs">
- <DependentUpon>PagingControl.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\entity\ComBaseMandrelEntity.cs" />
- <Compile Include="工序排产\entity\ComBaseMandrelSpecEntity.cs" />
- <Compile Include="工序排产\entity\PlnGxJgPropCEntity.cs" />
- <Compile Include="工序排产\entity\PlnGxJgPropSEntity.cs" />
- <Compile Include="工序排产\entity\PlnGxJgPropSEntityAmoun.cs" />
- <Compile Include="工序排产\entity\PlnOrderCastOSEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderCastSEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderDbkSEntityAmoun.cs" />
- <Compile Include="工序排产\entity\PlnOrderDzSEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderDzSOEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderJgxSEntityAmoun.cs" />
- <Compile Include="工序排产\entity\PlnOrderRclSEntityAmoun.cs" />
- <Compile Include="工序排产\entity\PlnOrderZgSEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderZgSEntityAmoun.cs" />
- <Compile Include="工序排产\entity\PlnOrderZgSOEntity.cs" />
- <Compile Include="工序排产\entity\PlnPassmodelEntity.cs" />
- <Compile Include="工序排产\entity\PlnPorderBlReqEntity.cs" />
- <Compile Include="工序排产\entity\PlnZyJgxReadyEntityHb.cs" />
- <Compile Include="工序排产\entity\PlnZySharM.cs" />
- <Compile Include="工序排产\entity\PlnZyZgMEntityAc.cs" />
- <Compile Include="工序排产\entity\TPoDemandPlanEntity.cs" />
- <Compile Include="工序排产\FrmBaseMandrelSpec.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmBaseMandrelSpec.Designer.cs">
- <DependentUpon>FrmBaseMandrelSpec.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmComBaseMandrel.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmComBaseMandrel.Designer.cs">
- <DependentUpon>FrmComBaseMandrel.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmDiameterMandrel.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmDiameterMandrel.Designer.cs">
- <DependentUpon>FrmDiameterMandrel.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmJgProps.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmJgProps.Designer.cs">
- <DependentUpon>FrmJgProps.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmMergeJgxM.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmMergeJgxM.Designer.cs">
- <DependentUpon>FrmMergeJgxM.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmOrderBlReq.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmOrderBlReq.Designer.cs">
- <DependentUpon>FrmOrderBlReq.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderDbkSQuery.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderDbkSQuery.Designer.cs">
- <DependentUpon>FrmPlnOrderDbkSQuery.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderDzS.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderDzS.Designer.cs">
- <DependentUpon>FrmPlnOrderDzS.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderJgxSQuery.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderJgxSQuery.Designer.cs">
- <DependentUpon>FrmPlnOrderJgxSQuery.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderRclSQuery.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderRclSQuery.Designer.cs">
- <DependentUpon>FrmPlnOrderRclSQuery.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgS.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgS.Designer.cs">
- <DependentUpon>FrmPlnOrderZgS.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgSEasy.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgSEasy.Designer.cs">
- <DependentUpon>FrmPlnOrderZgSEasy.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgSL1.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgSL1.Designer.cs">
- <DependentUpon>FrmPlnOrderZgSL1.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgSMES.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgSMES.Designer.cs">
- <DependentUpon>FrmPlnOrderZgSMES.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgSQuery.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZgSQuery.Designer.cs">
- <DependentUpon>FrmPlnOrderZgSQuery.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZzS.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderZzS.Designer.cs">
- <DependentUpon>FrmPlnOrderZzS.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnPassmodel.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnPassmodel.Designer.cs">
- <DependentUpon>FrmPlnPassmodel.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmount.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmount.Designer.cs">
- <DependentUpon>FrmProdSchAmount.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmountDbk.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmountDbk.Designer.cs">
- <DependentUpon>FrmProdSchAmountDbk.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmountJg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmountJg.Designer.cs">
- <DependentUpon>FrmProdSchAmountJg.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmountJgx.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmountJgx.Designer.cs">
- <DependentUpon>FrmProdSchAmountJgx.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmountRcl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmProdSchAmountRcl.Designer.cs">
- <DependentUpon>FrmProdSchAmountRcl.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmZyMerge.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmZyMerge.Designer.cs">
- <DependentUpon>FrmZyMerge.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\ProducEntity.cs" />
- <Compile Include="工序排产\ProducHelper.cs" />
- <Compile Include="报表\entity\JGInformationEntity.cs" />
- <Compile Include="报表\FrmJGInformation.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="报表\FrmJGInformation.Designer.cs">
- <DependentUpon>FrmJGInformation.cs</DependentUpon>
- </Compile>
- <Compile Include="报表\FrmProductionSchedulingAndCoupling.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="报表\FrmProductionSchedulingAndCoupling.Designer.cs">
- <DependentUpon>FrmProductionSchedulingAndCoupling.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\ComPlanEndDbk.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炉计划\ComPlanEndDbk.Designer.cs">
- <DependentUpon>ComPlanEndDbk.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\ComPlanEndJgx.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炉计划\ComPlanEndJgx.Designer.cs">
- <DependentUpon>ComPlanEndJgx.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\ComPlanEndRcl.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炉计划\ComPlanEndRcl.Designer.cs">
- <DependentUpon>ComPlanEndRcl.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\ComPlanEndZg.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炉计划\ComPlanEndZg.Designer.cs">
- <DependentUpon>ComPlanEndZg.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\Entity\MatBcMEntity.cs" />
- <Compile Include="炉计划\Entity\MatBcMEntity3.cs" />
- <Compile Include="炉计划\Entity\MatBcMEntityDbk.cs" />
- <Compile Include="炉计划\Entity\MatBcMEntityEnd.cs" />
- <Compile Include="炉计划\Entity\MatBcTrackEntity.cs" />
- <Compile Include="炉计划\Entity\MaterialChooseEntity.cs" />
- <Compile Include="炉计划\Entity\MatGpMEntity.cs" />
- <Compile Include="炉计划\Entity\MatGpMEntityLk.cs" />
- <Compile Include="炉计划\Entity\MatGpMEntitySteer.cs" />
- <Compile Include="炉计划\Entity\MatGpTrackEntity.cs" />
- <Compile Include="炉计划\Entity\PlnOrderDbkSEntity.cs" />
- <Compile Include="炉计划\Entity\PlnOrderZgSOEntityGp.cs" />
- <Compile Include="炉计划\Entity\PlnSaleOrderJgEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyDbkCEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyDbkMEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyDbkMEOntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyDbkReadyEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyDzCEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyDzMCEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyDzMEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyDzMEOntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyJgCEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyJgMEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyJgMEOntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyJgReadyEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyJgxCEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyJgxMEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyJgxMEOntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyJgxReadyEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyRclCEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyRclMEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyRclMEOntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyRclReadyEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyZgCEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyZgMCEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyZgMEntity.cs" />
- <Compile Include="炉计划\Entity\PlnZyZgMEOntity.cs" />
- <Compile Include="炉计划\Entity\ProducEntityZyM.cs" />
- <Compile Include="炉计划\Entity\QcmBcJudgeChangeEntity.cs" />
- <Compile Include="炉计划\FrmEndLibrary.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmEndLibrary.Designer.cs">
- <DependentUpon>FrmEndLibrary.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmMaterialChoose.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmMaterialChoose.Designer.cs">
- <DependentUpon>FrmMaterialChoose.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmMaterialMonomer.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmMaterialMonomer.Designer.cs">
- <DependentUpon>FrmMaterialMonomer.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmMatNo.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmMatNo.Designer.cs">
- <DependentUpon>FrmMatNo.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialDbk.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialDbk.Designer.cs">
- <DependentUpon>FrmPlanMaterialDbk.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialJg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialJg.Designer.cs">
- <DependentUpon>FrmPlanMaterialJg.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialJgx.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialJgx.Designer.cs">
- <DependentUpon>FrmPlanMaterialJgx.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialRcl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialRcl.Designer.cs">
- <DependentUpon>FrmPlanMaterialRcl.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialSelection.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanMaterialSelection.Designer.cs">
- <DependentUpon>FrmPlanMaterialSelection.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanSteelMakMod.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanSteelMakMod.Designer.cs">
- <DependentUpon>FrmPlanSteelMakMod.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveC.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveC.Designer.cs">
- <DependentUpon>FrmPlanStoveC.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveD.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveD.Designer.cs">
- <DependentUpon>FrmPlanStoveD.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveE.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveE.Designer.cs">
- <DependentUpon>FrmPlanStoveE.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveF.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveF.Designer.cs">
- <DependentUpon>FrmPlanStoveF.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveG.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveG.Designer.cs">
- <DependentUpon>FrmPlanStoveG.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveH.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlanStoveH.Designer.cs">
- <DependentUpon>FrmPlanStoveH.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmPlnFurnace.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmPlnFurnace.Designer.cs">
- <DependentUpon>FrmPlnFurnace.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryDbk.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryDbk.Designer.cs">
- <DependentUpon>FrmRollTubeLibraryDbk.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryJg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryJg.Designer.cs">
- <DependentUpon>FrmRollTubeLibraryJg.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryJgx.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryJgx.Designer.cs">
- <DependentUpon>FrmRollTubeLibraryJgx.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryRcl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryRcl.Designer.cs">
- <DependentUpon>FrmRollTubeLibraryRcl.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryZg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmRollTubeLibraryZg.Designer.cs">
- <DependentUpon>FrmRollTubeLibraryZg.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\FrmSteelPlnZgMod.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\FrmSteelPlnZgMod.Designer.cs">
- <DependentUpon>FrmSteelPlnZgMod.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\Tool\BaseInfoPopup.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\Tool\BaseInfoPopup.Designer.cs">
- <DependentUpon>BaseInfoPopup.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\Tool\ContorlPlanStatusZy.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炉计划\Tool\ContorlPlanStatusZy.Designer.cs">
- <DependentUpon>ContorlPlanStatusZy.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\Tool\FrmNoOrderSentence.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炉计划\Tool\FrmNoOrderSentence.Designer.cs">
- <DependentUpon>FrmNoOrderSentence.cs</DependentUpon>
- </Compile>
- <Compile Include="炉计划\Tool\StoveHelper.cs" />
- <Compile Include="炼钢计划\AnalysisNkChemPopupLg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\AnalysisNkChemPopupLg.Designer.cs">
- <DependentUpon>AnalysisNkChemPopupLg.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\control\ControlCastPlan.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炼钢计划\control\ControlCastPlan.Designer.cs">
- <DependentUpon>ControlCastPlan.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\control\ControlFurNacePlan.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炼钢计划\control\ControlFurNacePlan.Designer.cs">
- <DependentUpon>ControlFurNacePlan.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\control\ControlOrderPlan.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炼钢计划\control\ControlOrderPlan.Designer.cs">
- <DependentUpon>ControlOrderPlan.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\control\FrmBuFurnShow.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\control\FrmBuFurnShow.Designer.cs">
- <DependentUpon>FrmBuFurnShow.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\control\FrmFurnaceOrdBreak.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\control\FrmFurnaceOrdBreak.Designer.cs">
- <DependentUpon>FrmFurnaceOrdBreak.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\control\FrmOrderZgPln.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\control\FrmOrderZgPln.Designer.cs">
- <DependentUpon>FrmOrderZgPln.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\control\ucChemicalComposition.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炼钢计划\control\ucChemicalComposition.Designer.cs">
- <DependentUpon>ucChemicalComposition.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\control\ucSteelManagement.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炼钢计划\control\ucSteelManagement.Designer.cs">
- <DependentUpon>ucSteelManagement.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\control\UserControlGpStrat.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="炼钢计划\control\UserControlGpStrat.Designer.cs">
- <DependentUpon>UserControlGpStrat.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\entity\ComBaseGradeEntity.cs" />
- <Compile Include="炼钢计划\entity\ComMscStdChemEntity.cs" />
- <Compile Include="炼钢计划\entity\ComMscStdCicEntity.cs" />
- <Compile Include="炼钢计划\entity\CraftLg2AlloyEntity.cs" />
- <Compile Include="炼钢计划\entity\CraftLg2CcmEntity.cs" />
- <Compile Include="炼钢计划\entity\CraftLg2CicEntity.cs" />
- <Compile Include="炼钢计划\entity\CraftLg2MEntity.cs" />
- <Compile Include="炼钢计划\entity\CraftLg2TarCicEntity.cs" />
- <Compile Include="炼钢计划\entity\CraftLg2TemperatureEntity.cs" />
- <Compile Include="炼钢计划\entity\ImpFrmdispatchEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnBaseLzSpecCutEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnBasePlineLgEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnBasePlineLzEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnOrderCastSEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnOrderCastSEntityAmoun.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforcastEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforcastNewEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforfurnaceEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforfurnaceNewEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforfurnaceNewEntityPlus.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforfurnaceOEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforfurnaceOEntity1.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforMergeEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforOrdEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforOrdNewEntity.cs" />
- <Compile Include="炼钢计划\entity\PlnSteelforOrdNewEntityAndMerge.cs" />
- <Compile Include="炼钢计划\entity\SlmBaseMaterialAPlEntity.cs" />
- <Compile Include="炼钢计划\FrmBaseDeviation.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmBaseDeviation.Designer.cs">
- <DependentUpon>FrmBaseDeviation.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmBaseLzSpecCut.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmBaseLzSpecCut.Designer.cs">
- <DependentUpon>FrmBaseLzSpecCut.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmBaseMaterialAPl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmBaseMaterialAPl.Designer.cs">
- <DependentUpon>FrmBaseMaterialAPl.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmCastInterruption.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmCastInterruption.Designer.cs">
- <DependentUpon>FrmCastInterruption.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmCraftInfo.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmCraftInfo.Designer.cs">
- <DependentUpon>FrmCraftInfo.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmLgAmount.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmLgAmount.Designer.cs">
- <DependentUpon>FrmLgAmount.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmPlnBasePlineLg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmPlnBasePlineLg.Designer.cs">
- <DependentUpon>FrmPlnBasePlineLg.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmPlnBasePlineLz.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmPlnBasePlineLz.Designer.cs">
- <DependentUpon>FrmPlnBasePlineLz.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelChangeOrderDetail.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelChangeOrderDetail.Designer.cs">
- <DependentUpon>FrmSteelChangeOrderDetail.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelChangeOrderPlan.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelChangeOrderPlan.Designer.cs">
- <DependentUpon>FrmSteelChangeOrderPlan.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelHandOver.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelHandOver.Designer.cs">
- <DependentUpon>FrmSteelHandOver.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMakingOrder.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMakingOrder.Designer.cs">
- <DependentUpon>FrmSteelMakingOrder.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMakingPlan.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMakingPlan.Designer.cs">
- <DependentUpon>FrmSteelMakingPlan.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMakingPlanChange.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMakingPlanChange.Designer.cs">
- <DependentUpon>FrmSteelMakingPlanChange.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMakingPlanDesign.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMakingPlanDesign.Designer.cs">
- <DependentUpon>FrmSteelMakingPlanDesign.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelManagement.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelManagement.Designer.cs">
- <DependentUpon>FrmSteelManagement.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMerge.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelMerge.Designer.cs">
- <DependentUpon>FrmSteelMerge.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelPlnZg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelPlnZg.Designer.cs">
- <DependentUpon>FrmSteelPlnZg.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelProcessCard.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelProcessCard.Designer.cs">
- <DependentUpon>FrmSteelProcessCard.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelProcessSelect.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelProcessSelect.Designer.cs">
- <DependentUpon>FrmSteelProcessSelect.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelSupplement.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\FrmSteelSupplement.Designer.cs">
- <DependentUpon>FrmSteelSupplement.cs</DependentUpon>
- </Compile>
- <Compile Include="炼钢计划\SteelHelper.cs" />
- <Compile Include="炼钢计划\SteelManagementHelper.cs" />
- <Compile Include="炼钢计划\StoveInfo.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="炼钢计划\StoveInfo.Designer.cs">
- <DependentUpon>StoveInfo.cs</DependentUpon>
- </Compile>
- <Compile Include="物料Bom\entity\SlmOrdDesignBomAEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrdDesignBomBEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrdDesignBomCEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrdDesignBomDEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrdDesignBomEEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrdDesignBomEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrdDesignBomFEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrdDesignBomHEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrdDesignBomJEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrdDesignBomKEntity.cs" />
- <Compile Include="物料Bom\entity\SlmOrderLineEntity.cs" />
- <Compile Include="物料Bom\FrmMaterialBom.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="物料Bom\FrmMaterialBom.Designer.cs">
- <DependentUpon>FrmMaterialBom.cs</DependentUpon>
- </Compile>
- <Compile Include="物料Bom\FrmTest.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="物料Bom\FrmTest.Designer.cs">
- <DependentUpon>FrmTest.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialBPl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialBPl.Designer.cs">
- <DependentUpon>FrmBaseMaterialBPl.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmBasematerialCPl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmBasematerialCPl.Designer.cs">
- <DependentUpon>FrmBasematerialCPl.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialHPl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialHPl.Designer.cs">
- <DependentUpon>FrmBaseMaterialHPl.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmCL.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmCL.Designer.cs">
- <DependentUpon>FrmCL.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmCraftFileLv2.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmCraftFileLv2.Designer.cs">
- <DependentUpon>FrmCraftFileLv2.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmPreGxInfo.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmPreGxInfo.Designer.cs">
- <DependentUpon>FrmPreGxInfo.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmProInformation.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmProInformation.Designer.cs">
- <DependentUpon>FrmProInformation.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmSpitPlanJg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmSpitPlanJg.Designer.cs">
- <DependentUpon>FrmSpitPlanJg.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmSpitPlanM.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmSpitPlanM.Designer.cs">
- <DependentUpon>FrmSpitPlanM.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmSpitPlanZgM.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmSpitPlanZgM.Designer.cs">
- <DependentUpon>FrmSpitPlanZgM.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmSpitWgtSProc.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmSpitWgtSProc.Designer.cs">
- <DependentUpon>FrmSpitWgtSProc.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmSpitWgtZg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmSpitWgtZg.Designer.cs">
- <DependentUpon>FrmSpitWgtZg.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmZgSum.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmZgSum.Designer.cs">
- <DependentUpon>FrmZgSum.cs</DependentUpon>
- </Compile>
- <Compile Include="管坯优化\FrmChangeGrade.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="管坯优化\FrmChangeGrade.Designer.cs">
- <DependentUpon>FrmChangeGrade.cs</DependentUpon>
- </Compile>
- <Compile Include="管坯优化\FrmGradeAnalysis.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="管坯优化\FrmGradeAnalysis.Designer.cs">
- <DependentUpon>FrmGradeAnalysis.cs</DependentUpon>
- </Compile>
- <Compile Include="管坯优化\FrmPlnZgMStoGp.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="管坯优化\FrmPlnZgMStoGp.Designer.cs">
- <DependentUpon>FrmPlnZgMStoGp.cs</DependentUpon>
- </Compile>
- <Compile Include="管坯优化\FrmSteelGrade.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="管坯优化\FrmSteelGrade.Designer.cs">
- <DependentUpon>FrmSteelGrade.cs</DependentUpon>
- </Compile>
- <Compile Include="管坯优化\FrmWalktHrough.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="管坯优化\FrmWalktHrough.Designer.cs">
- <DependentUpon>FrmWalktHrough.cs</DependentUpon>
- </Compile>
- <Compile Include="管坯优化\model\PlnOrderZgSEntity.cs" />
- <Compile Include="管坯优化\model\PlnReqinfGpEntity.cs" />
- <Compile Include="管坯优化\model\PlnReqinfGpExcel.cs" />
- <Compile Include="管坯优化\model\PlnZgSToGpEntity.cs" />
- <Compile Include="高新\entity\HotHeatProductionMesGxEntity.cs" />
- <Compile Include="高新\entity\HotProductionMesJgEntity.cs" />
- <Compile Include="高新\entity\HotProductionMesRzEntity.cs" />
- <Compile Include="高新\FrmGXElements.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="高新\FrmGXElements.Designer.cs">
- <DependentUpon>FrmGXElements.cs</DependentUpon>
- </Compile>
- <Compile Include="高新\FrmHeatProductionMesGXJG.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="高新\FrmHeatProductionMesGXJG.Designer.cs">
- <DependentUpon>FrmHeatProductionMesGXJG.cs</DependentUpon>
- </Compile>
- <Compile Include="高新\FrmHeatProductionMesGXRCL.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="高新\FrmHeatProductionMesGXRCL.Designer.cs">
- <DependentUpon>FrmHeatProductionMesGXRCL.cs</DependentUpon>
- </Compile>
- <Compile Include="高新\FrmHeatProductionMesGXRZ.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="高新\FrmHeatProductionMesGXRZ.Designer.cs">
- <DependentUpon>FrmHeatProductionMesGXRZ.cs</DependentUpon>
- </Compile>
- <EmbeddedResource Include="BaseForm.resx">
- <DependentUpon>BaseForm.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="BaseMethod\FrmReturnCon.resx">
- <DependentUpon>FrmReturnCon.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="BLDEAL\FrmPlnBlReqOrd.resx">
- <DependentUpon>FrmPlnBlReqOrd.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="ComPlnJGDJDeal.resx">
- <DependentUpon>ComPlnJGDJDeal.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="Controls\FrmMatGpInfo.resx">
- <DependentUpon>FrmMatGpInfo.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="Controls\PopupTextBox.resx">
- <DependentUpon>PopupTextBox.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="Controls\WaitingForm.resx">
- <DependentUpon>WaitingForm.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\ComMscPilneCtrl.resx">
- <DependentUpon>ComMscPilneCtrl.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\ComOrdExportCtrl.resx">
- <DependentUpon>ComOrdExportCtrl.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\ComOrdJGDJPanel.resx">
- <DependentUpon>ComOrdJGDJPanel.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\ComQueryPandProcOrd.resx">
- <DependentUpon>ComQueryPandProcOrd.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\ComQueryPanel.resx">
- <DependentUpon>ComQueryPanel.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\ComQueryPanelProdu.resx">
- <DependentUpon>ComQueryPanelProdu.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\ComQueryPanelSource.resx">
- <DependentUpon>ComQueryPanelSource.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\ComQueryPanlInf.resx">
- <DependentUpon>ComQueryPanlInf.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\ContorlPlanStatus.resx">
- <DependentUpon>ContorlPlanStatus.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\FrmReportLiKu.resx">
- <DependentUpon>FrmReportLiKu.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="Control\UserControlSaleordProc.resx">
- <DependentUpon>UserControlSaleordProc.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmApplyRoval.resx">
- <DependentUpon>FrmApplyRoval.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmBaseModelLen.resx">
- <DependentUpon>FrmBaseModelLen.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmBlOrderPln.resx">
- <DependentUpon>FrmBlOrderPln.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmConfirmCraft.resx">
- <DependentUpon>FrmConfirmCraft.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmConfirmCraftQuery.resx">
- <DependentUpon>FrmConfirmCraftQuery.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmMatJgMImport.resx">
- <DependentUpon>FrmMatJgMImport.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="frmOrderLenPln.resx">
- <DependentUpon>frmOrderLenPln.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmOrderStatusSet.resx">
- <DependentUpon>FrmOrderStatusSet.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmOrdFinishSet.resx">
- <DependentUpon>FrmOrdFinishSet.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmPlnModifyOrdDPine.resx">
- <DependentUpon>FrmPlnModifyOrdDPine.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmPlnOrdCraftModifyLog.resx">
- <DependentUpon>FrmPlnOrdCraftModifyLog.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmPlnOrderDownLog.resx">
- <DependentUpon>FrmPlnOrderDownLog.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmPlnOrdJgDjDeal.resx">
- <DependentUpon>FrmPlnOrdJgDjDeal.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmPlnOrdPriority.resx">
- <DependentUpon>FrmPlnOrdPriority.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmPlnSaleOrder.resx">
- <DependentUpon>FrmPlnSaleOrder.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmQueryOrdProcInf.resx">
- <DependentUpon>FrmQueryOrdProcInf.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmReqApplyInfo.resx">
- <DependentUpon>FrmReqApplyInfo.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmSaleOrderlog.resx">
- <DependentUpon>FrmSaleOrderlog.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmSaleOrderReceive.resx">
- <DependentUpon>FrmSaleOrderReceive.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmSaleOrdFillApply.resx">
- <DependentUpon>FrmSaleOrdFillApply.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="FrmYieldInOutputQuery.resx">
- <DependentUpon>FrmYieldInOutputQuery.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="InventoryAdjustment\InventoryAdjustment.resx">
- <DependentUpon>InventoryAdjustment.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="InventoryAdjustment\TubeRolling.resx">
- <DependentUpon>TubeRolling.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\Control\ComJgMBlOrd.resx">
- <DependentUpon>ComJgMBlOrd.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\Control\ComPlineTimeCtrl.resx">
- <DependentUpon>ComPlineTimeCtrl.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\Control\ComPlnJgOrdToDd.resx">
- <DependentUpon>ComPlnJgOrdToDd.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\FrmCraftJgNoSecond.resx">
- <DependentUpon>FrmCraftJgNoSecond.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\FrmJgMPlnZy.resx">
- <DependentUpon>FrmJgMPlnZy.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\FrmJgOperatPln.resx">
- <DependentUpon>FrmJgOperatPln.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\FrmJgOrderLk.resx">
- <DependentUpon>FrmJgOrderLk.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\FrmJgSecondProcess.resx">
- <DependentUpon>FrmJgSecondProcess.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\FrmJgZYPlnEdit.resx">
- <DependentUpon>FrmJgZYPlnEdit.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\FrmPlnZyJgWorkBill.resx">
- <DependentUpon>FrmPlnZyJgWorkBill.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\FrmSpitBill.resx">
- <DependentUpon>FrmSpitBill.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\Old\FrmModifyPlnJgM.resx">
- <DependentUpon>FrmModifyPlnJgM.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\Old\FrmOrderJGGXPln.resx">
- <DependentUpon>FrmOrderJGGXPln.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\PopupWindow\FrmGXandTime.resx">
- <DependentUpon>FrmGXandTime.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\PopupWindow\FrmGxJgMPrdcrLst.resx">
- <DependentUpon>FrmGxJgMPrdcrLst.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\窗体\FrmJgUseStock.resx">
- <DependentUpon>FrmJgUseStock.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="JGGXPln\窗体\FrmMatZcM.resx">
- <DependentUpon>FrmMatZcM.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="OrderManage\froms\FrmBomConfirm.resx">
- <DependentUpon>FrmBomConfirm.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="OrderManage\froms\FrmGradeChoose.resx">
- <DependentUpon>FrmGradeChoose.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PlanStove\Dlg\FrmMaterialChoose.resx">
- <DependentUpon>FrmMaterialChoose.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PlanStove\Dlg\FrmMaterialSeparate.resx">
- <DependentUpon>FrmMaterialSeparate.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PlanStove\frm\FrmPlanStovecs.resx">
- <DependentUpon>FrmPlanStovecs.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\dlgOrderAskDown.resx">
- <DependentUpon>dlgOrderAskDown.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\dlgOrderAskLook .resx">
- <DependentUpon>dlgOrderAskLook .cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmAddEinSpec.resx">
- <DependentUpon>FrmAddEinSpec.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmCalculateDbk.resx">
- <DependentUpon>FrmCalculateDbk.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmCancelPretreat.resx">
- <DependentUpon>FrmCancelPretreat.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmChangeBomDp.resx">
- <DependentUpon>FrmChangeBomDp.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmChangeIndex.resx">
- <DependentUpon>FrmChangeIndex.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmGroupofDjBl.resx">
- <DependentUpon>FrmGroupofDjBl.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmImportSetMatJg.resx">
- <DependentUpon>FrmImportSetMatJg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmImportSetOrder.resx">
- <DependentUpon>FrmImportSetOrder.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmImportSetPlnZg.resx">
- <DependentUpon>FrmImportSetPlnZg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmMatJgMImport.resx">
- <DependentUpon>FrmMatJgMImport.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmOrderCraftImport.resx">
- <DependentUpon>FrmOrderCraftImport.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmOrdLinePrdcrLst.resx">
- <DependentUpon>FrmOrdLinePrdcrLst.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmOrdProcessBasePl.resx">
- <DependentUpon>FrmOrdProcessBasePl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmOutExcel.resx">
- <DependentUpon>FrmOutExcel.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmReqRequest.resx">
- <DependentUpon>FrmReqRequest.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmReqRollMonth.resx">
- <DependentUpon>FrmReqRollMonth.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="PopupWindow\FrmUpsettingDialExpansion.resx">
- <DependentUpon>FrmUpsettingDialExpansion.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="Properties\licenses.licx" />
- <EmbeddedResource Include="Properties\Resources.resx">
- <Generator>ResXFileCodeGenerator</Generator>
- <LastGenOutput>Resources.Designer.cs</LastGenOutput>
- </EmbeddedResource>
- <EmbeddedResource Include="Resources\MyResource.resx" />
- <EmbeddedResource Include="ZGCheck\frmZgGxCheck.resx">
- <DependentUpon>frmZgGxCheck.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="坯料测算\FrmPlnOrderCS.resx">
- <DependentUpon>FrmPlnOrderCS.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序合同\FrmInnerChange.resx">
- <DependentUpon>FrmInnerChange.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="工序合同\FrmPlnProcOrdJgx.resx">
- <DependentUpon>FrmPlnProcOrdJgx.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="工序合同\FrmPlnProcOrdRcl.resx">
- <DependentUpon>FrmPlnProcOrdRcl.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="工序合同\FrmProcessOrder.resx">
- <DependentUpon>FrmProcessOrder.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\control\BaseMandrelSpec.resx">
- <DependentUpon>BaseMandrelSpec.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\control\ContorlPlanStatusBL.resx">
- <DependentUpon>ContorlPlanStatusBL.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\control\PagingControl.resx">
- <DependentUpon>PagingControl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmBaseMandrelSpec.resx">
- <DependentUpon>FrmBaseMandrelSpec.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmComBaseMandrel.resx">
- <DependentUpon>FrmComBaseMandrel.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmDiameterMandrel.resx">
- <DependentUpon>FrmDiameterMandrel.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmJgProps.resx">
- <DependentUpon>FrmJgProps.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmJgxSInfo.resx">
- <DependentUpon>FrmJgxSInfo.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmMergeJgxM.resx">
- <DependentUpon>FrmMergeJgxM.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmOrderBlReq.resx">
- <DependentUpon>FrmOrderBlReq.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderDbkS.resx">
- <DependentUpon>FrmPlnOrderDbkS.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderDbkSQuery.resx">
- <DependentUpon>FrmPlnOrderDbkSQuery.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderDzS.resx">
- <DependentUpon>FrmPlnOrderDzS.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderJgxS.resx">
- <DependentUpon>FrmPlnOrderJgxS.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderJgxSQuery.resx">
- <DependentUpon>FrmPlnOrderJgxSQuery.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderRclS.resx">
- <DependentUpon>FrmPlnOrderRclS.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderRclSQuery.resx">
- <DependentUpon>FrmPlnOrderRclSQuery.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderZgS.resx">
- <DependentUpon>FrmPlnOrderZgS.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderZgSEasy.resx">
- <DependentUpon>FrmPlnOrderZgSEasy.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderZgSL1.resx">
- <DependentUpon>FrmPlnOrderZgSL1.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderZgSMES.resx">
- <DependentUpon>FrmPlnOrderZgSMES.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderZgSQuery.resx">
- <DependentUpon>FrmPlnOrderZgSQuery.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnOrderZzS.resx">
- <DependentUpon>FrmPlnOrderZzS.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmPlnPassmodel.resx">
- <DependentUpon>FrmPlnPassmodel.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmProdSchAmount.resx">
- <DependentUpon>FrmProdSchAmount.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmProdSchAmountDbk.resx">
- <DependentUpon>FrmProdSchAmountDbk.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmProdSchAmountJg.resx">
- <DependentUpon>FrmProdSchAmountJg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmProdSchAmountJgx.resx">
- <DependentUpon>FrmProdSchAmountJgx.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmProdSchAmountRcl.resx">
- <DependentUpon>FrmProdSchAmountRcl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmRclInfo.resx">
- <DependentUpon>FrmRclInfo.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序排产\FrmZyMerge.resx">
- <DependentUpon>FrmZyMerge.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序订单\Control\ControlOrderDbkM.resx">
- <DependentUpon>ControlOrderDbkM.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序订单\Control\ControlOrderJgxM.resx">
- <DependentUpon>ControlOrderJgxM.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序订单\Control\ControlOrderRclM.resx">
- <DependentUpon>ControlOrderRclM.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序订单\Control\ControlOrderZgM.resx">
- <DependentUpon>ControlOrderZgM.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序订单\FrmOrderDbk.resx">
- <DependentUpon>FrmOrderDbk.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序订单\FrmOrderJg.resx">
- <DependentUpon>FrmOrderJg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序订单\FrmOrderRcl.resx">
- <DependentUpon>FrmOrderRcl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="工序订单\FrmOrderZg.resx">
- <DependentUpon>FrmOrderZg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="报表\FrmJGInformation.resx">
- <DependentUpon>FrmJGInformation.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="报表\FrmProductionSchedulingAndCoupling.resx">
- <DependentUpon>FrmProductionSchedulingAndCoupling.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\ComPlanEndDbk.resx">
- <DependentUpon>ComPlanEndDbk.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\ComPlanEndJgx.resx">
- <DependentUpon>ComPlanEndJgx.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\ComPlanEndRcl.resx">
- <DependentUpon>ComPlanEndRcl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\ComPlanEndZg.resx">
- <DependentUpon>ComPlanEndZg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmEndLibrary.resx">
- <DependentUpon>FrmEndLibrary.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmMaterialChoose.resx">
- <DependentUpon>FrmMaterialChoose.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmMaterialMonomer.resx">
- <DependentUpon>FrmMaterialMonomer.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmMatNo.resx">
- <DependentUpon>FrmMatNo.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanMaterialDbk.resx">
- <DependentUpon>FrmPlanMaterialDbk.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanMaterialJg.resx">
- <DependentUpon>FrmPlanMaterialJg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanMaterialJgx.resx">
- <DependentUpon>FrmPlanMaterialJgx.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanMaterialRcl.resx">
- <DependentUpon>FrmPlanMaterialRcl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanMaterialSelection.resx">
- <DependentUpon>FrmPlanMaterialSelection.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanSteelMakMod.resx">
- <DependentUpon>FrmPlanSteelMakMod.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanStoveC.resx">
- <DependentUpon>FrmPlanStoveC.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanStoveD.resx">
- <DependentUpon>FrmPlanStoveD.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanStoveE.resx">
- <DependentUpon>FrmPlanStoveE.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanStoveF.resx">
- <DependentUpon>FrmPlanStoveF.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanStoveG.resx">
- <DependentUpon>FrmPlanStoveG.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlanStoveH.resx">
- <DependentUpon>FrmPlanStoveH.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmPlnFurnace.resx">
- <DependentUpon>FrmPlnFurnace.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmRollTubeLibraryDbk.resx">
- <DependentUpon>FrmRollTubeLibraryDbk.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmRollTubeLibraryJg.resx">
- <DependentUpon>FrmRollTubeLibraryJg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmRollTubeLibraryJgx.resx">
- <DependentUpon>FrmRollTubeLibraryJgx.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmRollTubeLibraryRcl.resx">
- <DependentUpon>FrmRollTubeLibraryRcl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmRollTubeLibraryZg.resx">
- <DependentUpon>FrmRollTubeLibraryZg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\FrmSteelPlnZgMod.resx">
- <DependentUpon>FrmSteelPlnZgMod.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\Tool\BaseInfoPopup.resx">
- <DependentUpon>BaseInfoPopup.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\Tool\ContorlPlanStatusZy.resx">
- <DependentUpon>ContorlPlanStatusZy.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炉计划\Tool\FrmNoOrderSentence.resx">
- <DependentUpon>FrmNoOrderSentence.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\AnalysisNkChemPopupLg.resx">
- <DependentUpon>AnalysisNkChemPopupLg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\control\ControlCastPlan.resx">
- <DependentUpon>ControlCastPlan.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\control\ControlFurNacePlan.resx">
- <DependentUpon>ControlFurNacePlan.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\control\ControlOrderPlan.resx">
- <DependentUpon>ControlOrderPlan.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\control\FrmBuFurnShow.resx">
- <DependentUpon>FrmBuFurnShow.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\control\FrmFurnaceOrdBreak.resx">
- <DependentUpon>FrmFurnaceOrdBreak.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\control\FrmOrderZgPln.resx">
- <DependentUpon>FrmOrderZgPln.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\control\ucChemicalComposition.resx">
- <DependentUpon>ucChemicalComposition.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\control\ucSteelManagement.resx">
- <DependentUpon>ucSteelManagement.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\control\UserControlGpStrat.resx">
- <DependentUpon>UserControlGpStrat.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmBaseDeviation.resx">
- <DependentUpon>FrmBaseDeviation.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmBaseLzSpecCut.resx">
- <DependentUpon>FrmBaseLzSpecCut.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmBaseMaterialAPl.resx">
- <DependentUpon>FrmBaseMaterialAPl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmCastInterruption.resx">
- <DependentUpon>FrmCastInterruption.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmCraftInfo.resx">
- <DependentUpon>FrmCraftInfo.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmLgAmount.resx">
- <DependentUpon>FrmLgAmount.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmPlnBasePlineLg.resx">
- <DependentUpon>FrmPlnBasePlineLg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmPlnBasePlineLz.resx">
- <DependentUpon>FrmPlnBasePlineLz.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelChangeOrderDetail.resx">
- <DependentUpon>FrmSteelChangeOrderDetail.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelChangeOrderPlan.resx">
- <DependentUpon>FrmSteelChangeOrderPlan.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelHandOver.resx">
- <DependentUpon>FrmSteelHandOver.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelMakingOrder.resx">
- <DependentUpon>FrmSteelMakingOrder.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelMakingPlan.resx">
- <DependentUpon>FrmSteelMakingPlan.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelMakingPlanChange.resx">
- <DependentUpon>FrmSteelMakingPlanChange.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelMakingPlanDesign.resx">
- <DependentUpon>FrmSteelMakingPlanDesign.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelManagement.resx">
- <DependentUpon>FrmSteelManagement.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelMerge.resx">
- <DependentUpon>FrmSteelMerge.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelPlnZg.resx">
- <DependentUpon>FrmSteelPlnZg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelProcessCard.resx">
- <DependentUpon>FrmSteelProcessCard.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelProcessSelect.resx">
- <DependentUpon>FrmSteelProcessSelect.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\FrmSteelSupplement.resx">
- <DependentUpon>FrmSteelSupplement.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="炼钢计划\StoveInfo.resx">
- <DependentUpon>StoveInfo.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="物料Bom\FrmMaterialBom.resx">
- <DependentUpon>FrmMaterialBom.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="物料Bom\FrmTest.resx">
- <DependentUpon>FrmTest.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmBaseMaterialBPl.resx">
- <DependentUpon>FrmBaseMaterialBPl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmBasematerialCPl.resx">
- <DependentUpon>FrmBasematerialCPl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmBaseMaterialDPl.resx">
- <DependentUpon>FrmBaseMaterialDPl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmBaseMaterialEPl.resx">
- <DependentUpon>FrmBaseMaterialEPl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmBaseMaterialFPl.resx">
- <DependentUpon>FrmBaseMaterialFPl.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmBaseMaterialHPl.resx">
- <DependentUpon>FrmBaseMaterialHPl.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmBaseMaterialIPl.resx">
- <DependentUpon>FrmBaseMaterialIPl.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmCL.resx">
- <DependentUpon>FrmCL.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmCraftFileLv2.resx">
- <DependentUpon>FrmCraftFileLv2.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmGreaBom.resx">
- <DependentUpon>FrmGreaBom.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmJxjh.resx">
- <DependentUpon>FrmJxjh.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmMscPlineChange.resx">
- <DependentUpon>FrmMscPlineChange.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmPlanWgtIn.resx">
- <DependentUpon>FrmPlanWgtIn.cs</DependentUpon>
- <SubType>Designer</SubType>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmPreGxInfo.resx">
- <DependentUpon>FrmPreGxInfo.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmProInformation.resx">
- <DependentUpon>FrmProInformation.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmSpitPlanJg.resx">
- <DependentUpon>FrmSpitPlanJg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmSpitPlanM.resx">
- <DependentUpon>FrmSpitPlanM.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmSpitPlanZgM.resx">
- <DependentUpon>FrmSpitPlanZgM.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmSpitWgt.resx">
- <DependentUpon>FrmSpitWgt.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmSpitWgtSProc.resx">
- <DependentUpon>FrmSpitWgtSProc.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmSpitWgtZg.resx">
- <DependentUpon>FrmSpitWgtZg.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="窗体\FrmZgSum.resx">
- <DependentUpon>FrmZgSum.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="管坯优化\FrmChangeGrade.resx">
- <DependentUpon>FrmChangeGrade.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="管坯优化\FrmGradeAnalysis.resx">
- <DependentUpon>FrmGradeAnalysis.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="管坯优化\FrmPlnZgMStoGp.resx">
- <DependentUpon>FrmPlnZgMStoGp.cs</DependentUpon>
- </EmbeddedResource>
- <Compile Include="ZGCheck\frmZgGxCheck.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="ZGCheck\frmZgGxCheck.Designer.cs">
- <DependentUpon>frmZgGxCheck.cs</DependentUpon>
- </Compile>
- <Compile Include="ZGCheck\V_ZG_PCORDERS_CXEntity.cs" />
- <Compile Include="工序合同\FrmInnerChange.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序合同\FrmInnerChange.Designer.cs">
- <DependentUpon>FrmInnerChange.cs</DependentUpon>
- </Compile>
- <Compile Include="工序合同\FrmPlnProcOrdJgx.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序合同\FrmPlnProcOrdJgx.Designer.cs">
- <DependentUpon>FrmPlnProcOrdJgx.cs</DependentUpon>
- </Compile>
- <Compile Include="工序合同\FrmPlnProcOrdRcl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序合同\FrmPlnProcOrdRcl.Designer.cs">
- <DependentUpon>FrmPlnProcOrdRcl.cs</DependentUpon>
- </Compile>
- <Compile Include="工序合同\FrmProcessOrder.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序合同\FrmProcessOrder.Designer.cs">
- <DependentUpon>FrmProcessOrder.cs</DependentUpon>
- </Compile>
- <Compile Include="工序合同\helper\DucHelper.cs" />
- <Compile Include="工序排产\entity\PlnOrderDbkSEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderDbkSOEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderJgxSEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderJgxSOEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderRclSEntity.cs" />
- <Compile Include="工序排产\entity\PlnOrderRclSOEntity.cs" />
- <Compile Include="工序排产\FrmJgxSInfo.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmJgxSInfo.Designer.cs">
- <DependentUpon>FrmJgxSInfo.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderDbkS.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderDbkS.Designer.cs">
- <DependentUpon>FrmPlnOrderDbkS.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderJgxS.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderJgxS.Designer.cs">
- <DependentUpon>FrmPlnOrderJgxS.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderRclS.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmPlnOrderRclS.Designer.cs">
- <DependentUpon>FrmPlnOrderRclS.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\FrmRclInfo.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序排产\FrmRclInfo.Designer.cs">
- <DependentUpon>FrmRclInfo.cs</DependentUpon>
- </Compile>
- <Compile Include="工序排产\PlanHelper.cs" />
- <Compile Include="工序订单\Control\ControlOrderDbkM.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="工序订单\Control\ControlOrderDbkM.Designer.cs">
- <DependentUpon>ControlOrderDbkM.cs</DependentUpon>
- </Compile>
- <Compile Include="工序订单\Control\ControlOrderJgxM.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="工序订单\Control\ControlOrderJgxM.Designer.cs">
- <DependentUpon>ControlOrderJgxM.cs</DependentUpon>
- </Compile>
- <Compile Include="工序订单\Control\ControlOrderRclM.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="工序订单\Control\ControlOrderRclM.Designer.cs">
- <DependentUpon>ControlOrderRclM.cs</DependentUpon>
- </Compile>
- <Compile Include="工序订单\Control\ControlOrderZgM.cs">
- <SubType>UserControl</SubType>
- </Compile>
- <Compile Include="工序订单\Control\ControlOrderZgM.Designer.cs">
- <DependentUpon>ControlOrderZgM.cs</DependentUpon>
- </Compile>
- <Compile Include="工序订单\entity\PlnGxDbkMEntity.cs" />
- <Compile Include="工序订单\entity\PlnGxDbkMOEntity.cs" />
- <Compile Include="工序订单\entity\PlnGxJgxMEntity.cs" />
- <Compile Include="工序订单\entity\PlnGxJgxMOEntity.cs" />
- <Compile Include="工序订单\entity\PlnGxRclMEntity.cs" />
- <Compile Include="工序订单\entity\PlnGxRclMOEntity.cs" />
- <Compile Include="工序订单\entity\PlnGxZgMEntity.cs" />
- <Compile Include="工序订单\entity\PlnGxZgMOEntity.cs" />
- <Compile Include="工序订单\entity\PlnOrderDbkEntity.cs" />
- <Compile Include="工序订单\entity\PlnOrderJgxEntity.cs" />
- <Compile Include="工序订单\entity\PlnOrderRclEntity.cs" />
- <Compile Include="工序订单\entity\PlnOrderZgEntity.cs" />
- <Compile Include="工序订单\FrmOrderDbk.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序订单\FrmOrderDbk.Designer.cs">
- <DependentUpon>FrmOrderDbk.cs</DependentUpon>
- </Compile>
- <Compile Include="工序订单\FrmOrderJg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序订单\FrmOrderJg.Designer.cs">
- <DependentUpon>FrmOrderJg.cs</DependentUpon>
- </Compile>
- <Compile Include="工序订单\FrmOrderRcl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序订单\FrmOrderRcl.Designer.cs">
- <DependentUpon>FrmOrderRcl.cs</DependentUpon>
- </Compile>
- <Compile Include="工序订单\FrmOrderZg.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="工序订单\FrmOrderZg.Designer.cs">
- <DependentUpon>FrmOrderZg.cs</DependentUpon>
- </Compile>
- <Compile Include="工序订单\OrderHelper.cs" />
- <Compile Include="窗体\FrmBaseMaterialDPl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialDPl.Designer.cs">
- <DependentUpon>FrmBaseMaterialDPl.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialEPl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialEPl.Designer.cs">
- <DependentUpon>FrmBaseMaterialEPl.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialFPl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialFPl.Designer.cs">
- <DependentUpon>FrmBaseMaterialFPl.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialIPl.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmBaseMaterialIPl.Designer.cs">
- <DependentUpon>FrmBaseMaterialIPl.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmGreaBom.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmGreaBom.Designer.cs">
- <DependentUpon>FrmGreaBom.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmJxjh.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmJxjh.Designer.cs">
- <DependentUpon>FrmJxjh.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmMscPlineChange.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmMscPlineChange.Designer.cs">
- <DependentUpon>FrmMscPlineChange.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmPlanWgtIn.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmPlanWgtIn.Designer.cs">
- <DependentUpon>FrmPlanWgtIn.cs</DependentUpon>
- </Compile>
- <Compile Include="窗体\FrmSpitWgt.cs">
- <SubType>Form</SubType>
- </Compile>
- <Compile Include="窗体\FrmSpitWgt.Designer.cs">
- <DependentUpon>FrmSpitWgt.cs</DependentUpon>
- </Compile>
- <EmbeddedResource Include="管坯优化\FrmSteelGrade.resx">
- <DependentUpon>FrmSteelGrade.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="管坯优化\FrmWalktHrough.resx">
- <DependentUpon>FrmWalktHrough.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="高新\FrmGXElements.resx">
- <DependentUpon>FrmGXElements.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="高新\FrmHeatProductionMesGXJG.resx">
- <DependentUpon>FrmHeatProductionMesGXJG.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="高新\FrmHeatProductionMesGXRCL.resx">
- <DependentUpon>FrmHeatProductionMesGXRCL.cs</DependentUpon>
- </EmbeddedResource>
- <EmbeddedResource Include="高新\FrmHeatProductionMesGXRZ.resx">
- <DependentUpon>FrmHeatProductionMesGXRZ.cs</DependentUpon>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="PlanStove\Control\" />
- <Folder Include="工序合同\entity\" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Resources\Ar.cur" />
- <Content Include="Resources\Arrows.cur" />
- </ItemGroup>
- <ItemGroup>
- <WCFMetadata Include="Service References\" />
- </ItemGroup>
- <ItemGroup>
- <None Include="Core.StlMes.Client.PlnSaleOrd.工序排产.entity.TPoDemandPlanEntity.datasource" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|