| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731 |
- using Business.EntityFrameworkCore.SqlRepositories;
- using Business.StructuredDB;
- using Business.StructuredDB.Sqe;
- using MathNet.Numerics.Statistics;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Metadata.Internal;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Linq;
- using NPOI.POIFS.Crypt.Dsig;
- using NPOI.SS.Formula.Functions;
- using NPOI.XWPF.UserModel;
- using RazorEngine.Compilation.ImpromptuInterface.Optimization;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Reflection;
- using System.Runtime.Intrinsics.X86;
- using System.Text;
- using Volo.Abp.Application.Services;
- using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
- using static NPOI.POIFS.Crypt.CryptoFunctions;
- namespace Business.VSM
- {
- /// <summary>
- /// Sqe数据导入接口实现
- /// </summary>
- public class SqeExcelService : ApplicationService, ISqeExcelService
- {
- LoggerHelper WLLog;
- private readonly ISqeRepository<sqe_chart_data_temp> _sqe_chart_data_temp;
- private readonly ISqeRepository<sqe_cto_process> _sqe_cto_process;
- private readonly ISqeRepository<sqe_cto_process_data> _sqe_cto_process_data;
- private readonly ISqeRepository<sqe_cto_process_standard> _sqe_cto_process_standard;
- private readonly ISqeRepository<sqe_cto_test> _sqe_cto_test;
- private readonly ISqeRepository<sqe_cto_test_avg> _sqe_cto_test_avg;
- private readonly ISqeRepository<sqe_cto_test_data> _sqe_cto_test_data;
- private readonly ISqeRepository<sqe_cto_test_standard> _sqe_cto_test_standard;
- private readonly ISqeRepository<sqe_cto_test_statistics> _sqe_cto_test_statistics;
- private readonly ISqeRepository<sqe_fct> _sqe_fct;
- private readonly ISqeRepository<sqe_fct_data> _sqe_fct_data;
- private readonly ISqeRepository<sqe_file_data> _sqe_file_data;
- private readonly ISqeRepository<sqe_file_upload> _sqe_file_upload;
- private readonly ISqeRepository<sqe_fpy> _sqe_fpy;
- private readonly ISqeRepository<sqe_fpy_data> _sqe_fpy_data;
- private readonly ISqeRepository<sqe_op> _sqe_op;
- private readonly ISqeRepository<sqe_op_data> _sqe_op_data;
- private readonly ISqeRepository<sqe_op_data_detail> _sqe_op_data_detail;
- private readonly ISqeRepository<sqe_oqc> _sqe_oqc;
- private readonly ISqeRepository<sqe_oqc_data> _sqe_oqc_data;
- private readonly ISqeRepository<sqe_oqc_standard> _sqe_oqc_standard;
- private readonly ISqeRepository<sqe_oqc_statistics> _sqe_oqc_statistics;
- private readonly ISqeRepository<v_sqe_cto_process_data> _v_sqe_cto_process_data;
- private readonly ISqeRepository<v_sqe_cto_test_avg> _v_sqe_cto_test_avg;
- private readonly ISqeRepository<v_sqe_cto_test_data> _v_sqe_cto_test_data;
- private readonly ISqeRepository<v_sqe_fpy_data> _v_sqe_fpy_data;
- private readonly ISqeRepository<v_sqe_op_data_detail> _v_sqe_op_data_detail;
- private readonly ISqeRepository<v_sqe_oqc_data> _v_sqe_oqc_data;
- public SqeExcelService(
- ISqeRepository<sqe_chart_data_temp> sqe_chart_data_temp,
- ISqeRepository<sqe_cto_process> sqe_cto_process,
- ISqeRepository<sqe_cto_process_data> sqe_cto_process_data,
- ISqeRepository<sqe_cto_process_standard> sqe_cto_process_standard,
- ISqeRepository<sqe_cto_test> sqe_cto_test,
- ISqeRepository<sqe_cto_test_avg> sqe_cto_test_avg,
- ISqeRepository<sqe_cto_test_data> sqe_cto_test_data,
- ISqeRepository<sqe_cto_test_standard> sqe_cto_test_standard,
- ISqeRepository<sqe_cto_test_statistics> sqe_cto_test_statistics,
- ISqeRepository<sqe_fct> sqe_fct,
- ISqeRepository<sqe_fct_data> sqe_fct_data,
- ISqeRepository<sqe_file_data> sqe_file_data,
- ISqeRepository<sqe_file_upload> sqe_file_upload,
- ISqeRepository<sqe_fpy> sqe_fpy,
- ISqeRepository<sqe_fpy_data> sqe_fpy_data,
- ISqeRepository<sqe_op> sqe_op,
- ISqeRepository<sqe_op_data> sqe_op_data,
- ISqeRepository<sqe_op_data_detail> sqe_op_data_detail,
- ISqeRepository<sqe_oqc> sqe_oqc,
- ISqeRepository<sqe_oqc_data> sqe_oqc_data,
- ISqeRepository<sqe_oqc_standard> sqe_oqc_standard,
- ISqeRepository<sqe_oqc_statistics> sqe_oqc_statistics,
- ISqeRepository<v_sqe_cto_process_data> v_sqe_cto_process_data,
- ISqeRepository<v_sqe_cto_test_avg> v_sqe_cto_test_avg,
- ISqeRepository<v_sqe_cto_test_data> v_sqe_cto_test_data,
- ISqeRepository<v_sqe_fpy_data> v_sqe_fpy_data,
- ISqeRepository<v_sqe_op_data_detail> v_sqe_op_data_detail,
- ISqeRepository<v_sqe_oqc_data> v_sqe_oqc_data
- )
- {
- WLLog = new LoggerHelper();
- _sqe_chart_data_temp = sqe_chart_data_temp;
- _sqe_cto_process = sqe_cto_process;
- _sqe_cto_process_data = sqe_cto_process_data;
- _sqe_cto_process_standard = sqe_cto_process_standard;
- _sqe_cto_test = sqe_cto_test;
- _sqe_cto_test_avg = sqe_cto_test_avg;
- _sqe_cto_test_data = sqe_cto_test_data;
- _sqe_cto_test_standard = sqe_cto_test_standard;
- _sqe_cto_test_statistics = sqe_cto_test_statistics;
- _sqe_fct = sqe_fct;
- _sqe_fct_data = sqe_fct_data;
- _sqe_file_data = sqe_file_data;
- _sqe_file_upload = sqe_file_upload;
- _sqe_fpy = sqe_fpy;
- _sqe_fpy_data = sqe_fpy_data;
- _sqe_op = sqe_op;
- _sqe_op_data = sqe_op_data;
- _sqe_op_data_detail = sqe_op_data_detail;
- _sqe_oqc = sqe_oqc;
- _sqe_oqc_data = sqe_oqc_data;
- _sqe_oqc_standard = sqe_oqc_standard;
- _sqe_oqc_statistics = sqe_oqc_statistics;
- _v_sqe_cto_process_data = v_sqe_cto_process_data;
- _v_sqe_cto_test_avg = v_sqe_cto_test_avg;
- _v_sqe_cto_test_data = v_sqe_cto_test_data;
- _v_sqe_fpy_data = v_sqe_fpy_data;
- _v_sqe_op_data_detail = v_sqe_op_data_detail;
- _v_sqe_oqc_data = v_sqe_oqc_data;
- }
- ///// <summary>
- ///// 导入Excel文件的sheetName的sheet页面到数据表
- ///// </summary>
- ///// <param name="filePath"></param>
- ///// <param name="sheetName"></param>
- ///// <returns></returns>
- //public DataTable ImportExcelSheetToDataTable_test(string filePath, string sheetName)
- //{
- // FileStream file = null;
- // DataTable dt = new DataTable();
- // int index = 0;
- // try
- // {
- // file = new FileStream(filePath, FileMode.Open, FileAccess.Read);
- // //打开Excel对象
- // IWorkbook workbook;
- // IRow row;
- // string fileExt = Path.GetExtension(filePath).ToLower();
- // workbook = null;
- // if (fileExt == ".xlsx")
- // {
- // workbook = new XSSFWorkbook(file);
- // }
- // else
- // {
- // if (fileExt == ".xls")
- // {
- // workbook = new HSSFWorkbook(file);
- // }
- // else
- // {
- // workbook = null;
- // }
- // }
- // if (workbook == null) { return null; }
- // //Excel的Sheet对象
- // NPOI.SS.UserModel.ISheet sheet = workbook.GetSheet(sheetName);
- // //获取Sheet的所有的行
- // System.Collections.IEnumerator rows = sheet.GetRowEnumerator();
- // //int colCountMax = 0;
- // dt.TableName = sheetName;
- // //判断是否拥有首行
- // bool firstLine = true;
- // //if (!haveColumnName)
- // //{
- // // firstLine = false;
- // //}
- // bool bDate = false;
- // while (rows.MoveNext())
- // {
- // index++;
- // bDate = false;
- // if (fileExt == ".xlsx")
- // {
- // row = (XSSFRow)rows.Current;
- // }
- // else
- // {
- // row = (HSSFRow)rows.Current;
- // }
- // if (!firstLine)
- // {
- // //生成表结构
- // //仅当首次调用时会进行循环生成
- // for (int i = dt.Columns.Count; i < row.Cells.Count; i++)
- // {
- // dt.Columns.Add(Convert.ToChar(((int)'A') + i).ToString());
- // }
- // }
- // else
- // {
- // //依据首行进行字段生成
- // for (int i = dt.Columns.Count; i < row.Cells.Count; i++)
- // {
- // dt.Columns.Add(row.Cells[i].ToString());
- // }
- // }
- // //没有首行,生成数据
- // if (!firstLine)
- // {
- // DataRow dr = dt.NewRow();
- // for (int i = 0; i < row.LastCellNum - 1; i++)
- // {
- // NPOI.SS.UserModel.ICell cell = row.GetCell(i);
- // String s = "";
- // if (cell != null)
- // {
- // switch (cell.CellType)
- // {
- // case NPOI.SS.UserModel.CellType.Unknown:
- // break;
- // case NPOI.SS.UserModel.CellType.Numeric:
- // if (HSSFDateUtil.IsCellDateFormatted(cell))
- // {
- // if (index < 6)
- // {
- // s = cell.DateCellValue.ToString();
- // }
- // else
- // {
- // s = cell.ToString();
- // }
- // }
- // else
- // {
- // s = cell.NumericCellValue.ToString();
- // }
- // break;
- // case NPOI.SS.UserModel.CellType.String:
- // s = cell.StringCellValue;
- // break;
- // case NPOI.SS.UserModel.CellType.Formula:
- // if (i == 0 || i == 1)
- // {
- // s = cell.StringCellValue;
- // }
- // else
- // {
- // try
- // {
- // if (cell.CellFormula == "序号")
- // {
- // s = cell.ToString();
- // }
- // else
- // {
- // s = cell.NumericCellValue != null ? cell.NumericCellValue.ToString() : null;
- // }
- // }
- // catch (Exception ex)
- // {
- // WLLog.Error("Excel导入问题:", ex);
- // }
- // }
- // break;
- // case NPOI.SS.UserModel.CellType.Blank:
- // if (bDate)
- // {
- // //对于日期的特殊处理
- // s = dr[i - 1].ToString();
- // }
- // else
- // {
- // s = cell.StringCellValue;
- // }
- // break;
- // case NPOI.SS.UserModel.CellType.Boolean:
- // break;
- // case NPOI.SS.UserModel.CellType.Error:
- // break;
- // default:
- // break;
- // }
- // }
- // dr[i] = s;
- // }
- // dt.Rows.Add(dr);
- // }
- // firstLine = false;
- // }
- // return dt;
- // }
- // catch (Exception ex)
- // {
- // WLLog.Error("Excel导入问题:", ex);
- // }
- // finally
- // {
- // if (file != null)
- // {
- // file.Close();
- // }
- // }
- // return dt;
- //}
- //public DataTable ImportExcelSheetToDataTable_process(string filePath, string sheetName)
- //{
- // FileStream file = null;
- // DataTable dt = new DataTable();
- // int index = 0;
- // try
- // {
- // file = new FileStream(filePath, FileMode.Open, FileAccess.Read);
- // //打开Excel对象
- // IWorkbook workbook;
- // IRow row;
- // string fileExt = Path.GetExtension(filePath).ToLower();
- // workbook = null;
- // if (fileExt == ".xlsx")
- // {
- // workbook = new XSSFWorkbook(file);
- // }
- // else
- // {
- // if (fileExt == ".xls")
- // {
- // workbook = new HSSFWorkbook(file);
- // }
- // else
- // {
- // workbook = null;
- // }
- // }
- // if (workbook == null) { return null; }
- // //Excel的Sheet对象
- // NPOI.SS.UserModel.ISheet sheet = workbook.GetSheet(sheetName);
- // //获取Sheet的所有的行
- // System.Collections.IEnumerator rows = sheet.GetRowEnumerator();
- // //int colCountMax = 0;
- // dt.TableName = sheetName;
- // //判断是否拥有首行
- // bool firstLine = true;
- // //if (!haveColumnName)
- // //{
- // // firstLine = false;
- // //}
- // bool bDate = false;
- // while (rows.MoveNext())
- // {
- // index++;
- // bDate = false;
- // if (fileExt == ".xlsx")
- // {
- // row = (XSSFRow)rows.Current;
- // }
- // else
- // {
- // row = (HSSFRow)rows.Current;
- // }
- // if (!firstLine)
- // {
- // //生成表结构
- // //仅当首次调用时会进行循环生成
- // for (int i = dt.Columns.Count; i < row.Cells.Count; i++)
- // {
- // dt.Columns.Add(Convert.ToChar(((int)'A') + i).ToString());
- // }
- // }
- // else
- // {
- // //依据首行进行字段生成
- // for (int i = dt.Columns.Count; i < row.Cells.Count; i++)
- // {
- // dt.Columns.Add(row.Cells[i].ToString());
- // }
- // }
- // //没有首行,生成数据
- // if (!firstLine)
- // {
- // DataRow dr = dt.NewRow();
- // for (int i = 0; i < row.LastCellNum - 1; i++)
- // {
- // NPOI.SS.UserModel.ICell cell = row.GetCell(i);
- // String s = "";
- // if (cell != null)
- // {
- // switch (cell.CellType)
- // {
- // case NPOI.SS.UserModel.CellType.Unknown:
- // break;
- // case NPOI.SS.UserModel.CellType.Numeric:
- // if (HSSFDateUtil.IsCellDateFormatted(cell))
- // {
- // if (index < 6)
- // {
- // s = cell.DateCellValue.ToString();
- // }
- // else
- // {
- // s = cell.ToString();
- // }
- // }
- // else
- // {
- // s = cell.NumericCellValue.ToString();
- // }
- // break;
- // case NPOI.SS.UserModel.CellType.String:
- // s = cell.StringCellValue;
- // break;
- // case NPOI.SS.UserModel.CellType.Formula:
- // try
- // {
- // if (cell.CellFormula == "序号")
- // {
- // s = cell.ToString();
- // }
- // else
- // {
- // s = cell.NumericCellValue != null ? cell.NumericCellValue.ToString() : null;
- // }
- // }
- // catch (Exception ex)
- // {
- // WLLog.Error("Excel导入问题:", ex);
- // }
- // break;
- // case NPOI.SS.UserModel.CellType.Blank:
- // if (bDate)
- // {
- // //对于日期的特殊处理
- // s = dr[i - 1].ToString();
- // }
- // else
- // {
- // s = cell.StringCellValue;
- // }
- // break;
- // case NPOI.SS.UserModel.CellType.Boolean:
- // break;
- // case NPOI.SS.UserModel.CellType.Error:
- // break;
- // default:
- // break;
- // }
- // }
- // dr[i] = s;
- // }
- // dt.Rows.Add(dr);
- // }
- // firstLine = false;
- // }
- // return dt;
- // }
- // catch (Exception ex)
- // {
- // WLLog.Error("Excel导入问题:", ex);
- // }
- // finally
- // {
- // if (file != null)
- // {
- // file.Close();
- // }
- // }
- // return dt;
- //}
- ///// <summary>
- ///// 获取Excel文件Sheet名称列表,与Jet引擎不一致,获取的时候没有$多余字符。
- ///// </summary>
- ///// <param name="filePath"></param>
- ///// <returns></returns>
- //public List<String> GetSheetNames(string filePath)
- //{
- // List<String> tables = null;
- // FileStream file = null;
- // try
- // {
- // tables = new List<string>();
- // file = new FileStream(filePath, FileMode.Open, FileAccess.Read);
- // HSSFWorkbook hssfworkbook = new HSSFWorkbook(file);
- // int i = 0;
- // while (true)
- // {
- // try
- // {
- // String s = hssfworkbook.GetSheetName(i);
- // if (s != null)
- // {
- // tables.Add(s);
- // i++;
- // }
- // else
- // {
- // break;
- // }
- // }
- // catch (Exception ex)
- // {
- // break;
- // }
- // }
- // }
- // catch (Exception ex)
- // {
- // WLLog.Error("Excel导入问题:", ex);
- // }
- // finally
- // {
- // if (file != null)
- // {
- // file.Close();
- // }
- // }
- // return tables;
- //}
- /// <summary>
- /// 依据上传文件标识,获取上传文件对象
- /// </summary>
- /// <param name="upload_id"></param>
- /// <returns></returns>
- public sqe_file_upload Get_Sqe_file_upload(int upload_id)
- {
- try
- {
- List<sqe_file_upload> uploads = _sqe_file_upload.Select(a => a.id == upload_id);
- sqe_file_upload _Upload = _sqe_file_upload.Select(a => a.id == upload_id).First();
- return _Upload;
- }
- catch (Exception ex)
- {
- return null;
- }
- }
- /// <summary>
- /// 导入数据到检验表 sqe_cto_test、sqe_cto_test_standard、sqe_cto_test_data
- /// </summary>
- /// <param name="upload_id"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <returns></returns>
- public string Import_Test_From_Data(int upload_id, string create_by, DateTime create_date, string create_org)
- {
- StringBuilder stringBuilder = new StringBuilder();
- try
- {
- sqe_file_upload sqe_File_Upload = Get_Sqe_file_upload(upload_id);
- List<sqe_file_data> datas = LoadData_file_data(upload_id);
- if (datas == null || datas.Count == 0)
- {
- stringBuilder.AppendLine("导入数据信息不存在!");
- return stringBuilder.ToString();
- }
- //产品特性的文件格式校验
- if (datas[0].c1.CompareTo("产品过程检验记录") != 0)
- {
- stringBuilder.AppendLine("文件不是【产品过程检验记录】要求的格式");
- return stringBuilder.ToString();
- }
- if (datas[1].c1.CompareTo("生产时间") != 0
- || datas[1].c3.CompareTo("生产班次") != 0
- || datas[1].c5.CompareTo("物料号") != 0
- || datas[1].c7.CompareTo("物料名称") != 0)
- {
- stringBuilder.AppendLine("文件不是【产品过程检验记录】要求的格式");
- return stringBuilder.ToString();
- }
- if (datas[2].c1.CompareTo("对应原材料批次号") != 0
- || datas[2].c3.CompareTo("原材料使用数量") != 0
- || datas[2].c5.CompareTo("物料批次号") != 0
- || datas[2].c7.CompareTo("物料数量") != 0)
- {
- stringBuilder.AppendLine("文件不是【产品过程检验记录】要求的格式");
- return stringBuilder.ToString();
- }
- string errorMsg;
- sqe_cto_test test = File_data_ToModel_test(datas, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_cto_test.BeginTransaction();
- _sqe_cto_test.Insert(test);
- errorMsg = null;
- List<sqe_cto_test_standard> standards = File_data_ToModel_test_standard(datas, test, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- _sqe_cto_test.Rollback();
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_cto_test_standard.BeginTransaction();
- _sqe_cto_test_standard.Insert(standards);
- List<sqe_cto_test_data> test_Datas = File_data_ToModel_test_data(datas, test, standards, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- _sqe_cto_test.Rollback();
- _sqe_cto_test_standard.Rollback();
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_cto_test_data.Insert(test_Datas);
- sqe_File_Upload.item_no = test.item_no;
- sqe_File_Upload.item_name = test.item_name;
- _sqe_file_upload.Update(sqe_File_Upload);
- _sqe_cto_test.CommitTransaction();
- _sqe_cto_test_standard.CommitTransaction();
- }
- catch (Exception ex)
- {
- stringBuilder.Append("数据导入失败!");
- }
- finally
- {
- }
- return stringBuilder.ToString();
- }
- /// <summary>
- /// 依据id,从sqe_file_upload和sqe_file_data,加载数据
- /// </summary>
- /// <param name="upload_id"></param>
- /// <returns></returns>
- public List<sqe_file_data> LoadData_file_data(int upload_id)
- {
- List<sqe_file_data> datas = _sqe_file_data.Select(a => a.file_id == upload_id).OrderBy(a => a.id).ToList();
- return datas;
- }
- #region 产品特性
- public sqe_cto_test File_data_ToModel_test(List<sqe_file_data> datas, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- sqe_cto_test model = new sqe_cto_test();
- DateTime timeValue;
- decimal realValuel;
- int intValue;
- if (datas != null && datas.Count >= 5)
- {
- try
- {
- model.file_id = datas[0].file_id;
- sqe_file_data data = datas[1];
- if (DateTime.TryParse(data.c2, out timeValue))
- {
- model.product_time = timeValue;
- }
- else
- {
- //model.product_time = DateTime.Parse("2000-01-01");
- model.product_time = DateTime.Now;
- }
- model.shift_no = data.c4;
- model.item_no = data.c6;
- model.item_name = data.c8;
- data = datas[2];
- model.material_batch = data.c2;
- if (decimal.TryParse(data.c4, out realValuel))
- {
- model.material_used = realValuel;
- }
- model.item_batch = data.c6;
- if (decimal.TryParse(data.c8, out realValuel))
- {
- model.item_qty = realValuel;
- }
- data = datas[3];
- model.op_pre = data.c2;
- model.op_pre_batch = data.c4;
- model.op_current = data.c6;
- model.op_batch = data.c8;
- data = datas[4];
- model.device_name = data.c2;
- model.device_no = data.c4;
- if (int.TryParse(data.c8, out intValue))
- {
- model.sampling_number = intValue;
- }
- }
- catch (Exception ex)
- {
- WLLog.Error("Excel数据解析问题:", ex);
- }
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- errorMsg = string.Empty;
- return model;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- public List<sqe_cto_test_standard> File_data_ToModel_test_standard(List<sqe_file_data> datas, sqe_cto_test test, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- List<sqe_cto_test_standard> modelList = new List<sqe_cto_test_standard>();
- decimal realValuel;
- if (datas != null && datas.Count >= 13)
- {
- try
- {
- //标准的起始位置
- int index = 5;
- sqe_file_data dataRow = datas[index];
- #region 处理尺寸的表头
- if (dataRow.c3 != null && dataRow.c3.Length > 0)
- {
- sqe_cto_test_standard model = new sqe_cto_test_standard();
- model.standard_no = dataRow.c3;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.test_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c4 != null && dataRow.c4.Length > 0)
- {
- sqe_cto_test_standard model = new sqe_cto_test_standard();
- model.standard_no = dataRow.c4;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.test_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c5 != null && dataRow.c5.Length > 0)
- {
- sqe_cto_test_standard model = new sqe_cto_test_standard();
- model.standard_no = dataRow.c5;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.test_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c6 != null && dataRow.c6.Length > 0)
- {
- sqe_cto_test_standard model = new sqe_cto_test_standard();
- model.standard_no = dataRow.c6;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.test_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c7 != null && dataRow.c7.Length > 0)
- {
- sqe_cto_test_standard model = new sqe_cto_test_standard();
- model.standard_no = dataRow.c7;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.test_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c8 != null && dataRow.c8.Length > 0)
- {
- sqe_cto_test_standard model = new sqe_cto_test_standard();
- model.standard_no = dataRow.c8;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.test_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c9 != null && dataRow.c9.Length > 0)
- {
- sqe_cto_test_standard model = new sqe_cto_test_standard();
- model.standard_no = dataRow.c9;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.test_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c10 != null && dataRow.c10.Length > 0)
- {
- sqe_cto_test_standard model = new sqe_cto_test_standard();
- model.standard_no = dataRow.c10;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.test_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c11 != null && dataRow.c11.Length > 0)
- {
- sqe_cto_test_standard model = new sqe_cto_test_standard();
- model.standard_no = dataRow.c11;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.test_id = test.id;
- modelList.Add(model);
- }
- #endregion 处理尺寸的表头
- if (modelList.Count > 0)
- {
- sqe_cto_test_standard model = modelList[0];
- dataRow = datas[index + 1];
- model.sampling_count = int.Parse(dataRow.c3);
- dataRow = datas[index + 2];
- model.is_associated_size = dataRow.c3;
- dataRow = datas[index + 3];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 6];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 7];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 1)
- {
- sqe_cto_test_standard model = modelList[1];
- dataRow = datas[index + 1];
- model.sampling_count = int.Parse(dataRow.c4);
- dataRow = datas[index + 2];
- model.is_associated_size = dataRow.c4;
- dataRow = datas[index + 3];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 6];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 7];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 2)
- {
- sqe_cto_test_standard model = modelList[2];
- dataRow = datas[index + 1];
- model.sampling_count = int.Parse(dataRow.c5);
- dataRow = datas[index + 2];
- model.is_associated_size = dataRow.c5;
- dataRow = datas[index + 3];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 6];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 7];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 3)
- {
- sqe_cto_test_standard model = modelList[3];
- dataRow = datas[index + 1];
- model.sampling_count = int.Parse(dataRow.c6);
- dataRow = datas[index + 2];
- model.is_associated_size = dataRow.c6;
- dataRow = datas[index + 3];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 6];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 7];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 4)
- {
- sqe_cto_test_standard model = modelList[4];
- dataRow = datas[index + 1];
- model.sampling_count = int.Parse(dataRow.c7);
- dataRow = datas[index + 2];
- model.is_associated_size = dataRow.c7;
- dataRow = datas[index + 3];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 6];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 7];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 5)
- {
- sqe_cto_test_standard model = modelList[5];
- dataRow = datas[index + 1];
- model.sampling_count = int.Parse(dataRow.c8);
- dataRow = datas[index + 2];
- model.is_associated_size = dataRow.c8;
- dataRow = datas[index + 3];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 6];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 7];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 6)
- {
- sqe_cto_test_standard model = modelList[6];
- dataRow = datas[index + 1];
- model.sampling_count = int.Parse(dataRow.c9);
- dataRow = datas[index + 2];
- model.is_associated_size = dataRow.c9;
- dataRow = datas[index + 3];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 6];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 7];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 7)
- {
- sqe_cto_test_standard model = modelList[7];
- dataRow = datas[index + 1];
- model.sampling_count = int.Parse(dataRow.c10);
- dataRow = datas[index + 2];
- model.is_associated_size = dataRow.c10;
- dataRow = datas[index + 3];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 6];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 7];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 8)
- {
- sqe_cto_test_standard model = modelList[8];
- dataRow = datas[index + 1];
- model.sampling_count = int.Parse(dataRow.c11);
- dataRow = datas[index + 2];
- model.is_associated_size = dataRow.c11;
- dataRow = datas[index + 3];
- if (dataRow.c11 != null && decimal.TryParse(dataRow.c11, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c11 != null && decimal.TryParse(dataRow.c11, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c11 != null && decimal.TryParse(dataRow.c11, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 6];
- if (dataRow.c11 != null && decimal.TryParse(dataRow.c11, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 7];
- if (dataRow.c11 != null && decimal.TryParse(dataRow.c11, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- }
- catch (Exception ex)
- {
- WLLog.Error("Excel数据解析问题:", ex);
- }
- errorMsg = stringBuilder.ToString();
- return modelList;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- public List<sqe_cto_test_data> File_data_ToModel_test_data(List<sqe_file_data> datas, sqe_cto_test test, List<sqe_cto_test_standard> standards, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- List<sqe_cto_test_data> modelList = new List<sqe_cto_test_data>();
- decimal realValuel;
- if (datas != null && datas.Count >= 15)
- {
- for (int i = 14; i < datas.Count; i++)
- {
- sqe_file_data dataRow = datas[i];
- if ((dataRow.c1 == null || dataRow.c1.Length == 0 || dataRow.c1 == "0") && (dataRow.c2 == null || dataRow.c2.Length == 0))
- {
- break;
- }
- //初始化每一层的数据集合
- List<sqe_cto_test_data> test_datas = new List<sqe_cto_test_data>();
- for (int j = 0; j < standards.Count; j++)
- {
- sqe_cto_test_data data = new sqe_cto_test_data();
- data.test_id = standards[j].test_id;
- data.standard_id = standards[j].id;
- data.create_by = create_by;
- data.create_date = create_date;
- data.create_org = create_org;
- test_datas.Add(data);
- }
- try
- {
- //将每一个检测标准的值从记录行中取出来
- if (test_datas.Count > 0)
- {
- sqe_cto_test_data data = test_datas[0];
- data.data_no = dataRow.c1;
- if (dataRow.c2 != null)
- {
- String s = dataRow.c2.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c3 != null && dataRow.c3.Length > 0 && decimal.TryParse(dataRow.c3, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 1)
- {
- sqe_cto_test_data data = test_datas[1];
- data.data_no = dataRow.c1;
- if (dataRow.c2 != null)
- {
- String s = dataRow.c2.ToString();
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c4 != null && dataRow.c4.Length > 0 && decimal.TryParse(dataRow.c4, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 2)
- {
- sqe_cto_test_data data = test_datas[1];
- data.data_no = dataRow.c1;
- if (dataRow.c2 != null)
- {
- String s = dataRow.c2.ToString();
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c5 != null && dataRow.c5.Length > 0 && decimal.TryParse(dataRow.c5, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 3)
- {
- sqe_cto_test_data data = test_datas[1];
- data.data_no = dataRow.c1;
- if (dataRow.c2 != null)
- {
- String s = dataRow.c2.ToString();
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c6 != null && dataRow.c6.Length > 0 && decimal.TryParse(dataRow.c6, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 4)
- {
- sqe_cto_test_data data = test_datas[1];
- data.data_no = dataRow.c1;
- if (dataRow.c2 != null)
- {
- String s = dataRow.c2.ToString();
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c7 != null && dataRow.c7.Length > 0 && decimal.TryParse(dataRow.c7, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 5)
- {
- sqe_cto_test_data data = test_datas[1];
- data.data_no = dataRow.c1;
- if (dataRow.c2 != null)
- {
- String s = dataRow.c2.ToString();
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c8 != null && dataRow.c8.Length > 0 && decimal.TryParse(dataRow.c8, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 6)
- {
- sqe_cto_test_data data = test_datas[1];
- data.data_no = dataRow.c1;
- if (dataRow.c2 != null)
- {
- String s = dataRow.c2.ToString();
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c9 != null && dataRow.c9.Length > 0 && decimal.TryParse(dataRow.c9, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 7)
- {
- sqe_cto_test_data data = test_datas[1];
- data.data_no = dataRow.c1;
- if (dataRow.c2 != null)
- {
- String s = dataRow.c2.ToString();
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c10 != null && dataRow.c10.Length > 0 && decimal.TryParse(dataRow.c10, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 8)
- {
- sqe_cto_test_data data = test_datas[1];
- data.data_no = dataRow.c1;
- if (dataRow.c2 != null)
- {
- String s = dataRow.c2.ToString();
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c11 != null && dataRow.c11.Length > 0 && decimal.TryParse(dataRow.c11, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- File_data_ToModel_test_data_Add(modelList, test_datas);
- }
- catch (Exception ex)
- {
- WLLog.Error("Excel数据解析_原始数据转换到对象实体的问题:", ex);
- }
- }
- errorMsg = string.Empty;
- return modelList;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- /// <summary>
- /// 将转换的数据插入到返回结果数据集中,处理掉异常数据
- /// </summary>
- /// <param name="dataDest"></param>
- /// <param name="dataSource"></param>
- private void File_data_ToModel_test_data_Add(List<sqe_cto_test_data> dataDest, List<sqe_cto_test_data> dataSource)
- {
- if (dataSource != null && dataSource.Count > 0)
- {
- for (int i = 0; i < dataSource.Count; i++)
- {
- sqe_cto_test_data data = dataSource[i];
- if (data.data_no != null && data.data_no.Length > 0 && data.data_time != null && data.data_value != null)
- {
- dataDest.Add(data);
- }
- }
- }
- }
- #endregion 产品特性
- public string Import_Process_From_Data(int upload_id, string create_by, DateTime create_date, string create_org)
- {
- StringBuilder stringBuilder = new StringBuilder();
- try
- {
- sqe_file_upload sqe_File_Upload = Get_Sqe_file_upload(upload_id);
- List<sqe_file_data> datas = LoadData_file_data(upload_id);
- if (datas == null || datas.Count == 0)
- {
- stringBuilder.AppendLine("导入数据信息不存在!");
- return stringBuilder.ToString();
- }
- //产品过程特性的文件格式校验
- if (datas[0].c1.CompareTo("产品过程特性") != 0)
- {
- stringBuilder.AppendLine("文件不是【产品过程特性】要求的格式");
- return stringBuilder.ToString();
- }
- if (datas[1].c1.CompareTo("生产时间") != 0
- || datas[1].c3.CompareTo("生产班次") != 0
- || datas[1].c5.CompareTo("物料名称") != 0
- || datas[1].c7.CompareTo("物料号") != 0)
- {
- stringBuilder.AppendLine("文件不是【产品过程特性】要求的格式");
- return stringBuilder.ToString();
- }
- if (datas[2].c1.CompareTo("对应原材料批次号") != 0
- || datas[2].c3.CompareTo("原材料使用数量") != 0
- || datas[2].c5.CompareTo("物料批次号") != 0
- || datas[2].c7.CompareTo("物料数量") != 0)
- {
- stringBuilder.AppendLine("文件不是【产品过程特性】要求的格式");
- return stringBuilder.ToString();
- }
- string errorMsg;
- sqe_cto_process test = File_data_ToModel_process(datas, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_cto_process.BeginTransaction();
- _sqe_cto_process.Insert(test);
- errorMsg = null;
- List<sqe_cto_process_standard> standards = File_data_ToModel_process_standard(datas, test, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- _sqe_cto_process.Rollback();
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_cto_process_standard.BeginTransaction();
- _sqe_cto_process_standard.Insert(standards);
- List<sqe_cto_process_data> test_Datas = File_data_ToModel_process_data(datas, test, standards, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- _sqe_cto_process.Rollback();
- _sqe_cto_process_standard.Rollback();
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_cto_process_data.Insert(test_Datas);
- sqe_File_Upload.item_no = test.item_no;
- sqe_File_Upload.item_name = test.item_name;
- _sqe_file_upload.Update(sqe_File_Upload);
- _sqe_cto_process.CommitTransaction();
- _sqe_cto_process_standard.CommitTransaction();
- }
- catch (Exception ex)
- {
- stringBuilder.Append("数据导入失败!");
- }
- finally
- {
- }
- return stringBuilder.ToString();
- }
- #region 产品过程特性
- public sqe_cto_process File_data_ToModel_process(List<sqe_file_data> datas, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- sqe_cto_process model = new sqe_cto_process();
- DateTime timeValue;
- decimal realValuel;
- if (datas != null && datas.Count >= 5)
- {
- try
- {
- model.file_id = datas[0].file_id;
- sqe_file_data data = datas[1];
- if (DateTime.TryParse(data.c2, out timeValue))
- {
- model.product_time = timeValue;
- }
- else
- {
- //model.product_time = DateTime.Parse("2000-01-01");
- model.product_time = DateTime.Now;
- }
- model.shift_no = data.c4;
- model.item_no = data.c6;
- model.item_name = data.c8;
- data = datas[2];
- model.material_batch = data.c2;
- if (decimal.TryParse(data.c4, out realValuel))
- {
- model.material_used = realValuel;
- }
- model.item_batch = data.c6;
- if (decimal.TryParse(data.c8, out realValuel))
- {
- model.item_qty = realValuel;
- }
- data = datas[3];
- model.op_pre = data.c2;
- model.op_pre_batch = data.c4;
- model.op_current = data.c6;
- model.op_batch = data.c8;
- data = datas[4];
- model.device_name = data.c2;
- model.device_no = data.c4;
- if (decimal.TryParse(data.c8, out realValuel))
- {
- model.sampling_number = realValuel;
- }
- }
- catch (Exception ex)
- {
- WLLog.Error("Excel数据解析问题:", ex);
- }
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- errorMsg = string.Empty;
- return model;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- public List<sqe_cto_process_standard> File_data_ToModel_process_standard(List<sqe_file_data> datas, sqe_cto_process test, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- List<sqe_cto_process_standard> modelList = new List<sqe_cto_process_standard>();
- decimal realValuel;
- if (datas != null && datas.Count >= 13)
- {
- try
- {
- //标准的起始位置
- int index = 5;
- sqe_file_data dataRow = datas[index];
- #region 处理尺寸的表头
- if (dataRow.c2 != null && dataRow.c2.Length > 0)
- {
- sqe_cto_process_standard model = new sqe_cto_process_standard();
- model.standard_no = dataRow.c2;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.process_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c3 != null && dataRow.c3.Length > 0)
- {
- sqe_cto_process_standard model = new sqe_cto_process_standard();
- model.standard_no = dataRow.c3;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.process_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c4 != null && dataRow.c4.Length > 0)
- {
- sqe_cto_process_standard model = new sqe_cto_process_standard();
- model.standard_no = dataRow.c4;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.process_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c5 != null && dataRow.c5.Length > 0)
- {
- sqe_cto_process_standard model = new sqe_cto_process_standard();
- model.standard_no = dataRow.c5;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.process_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c6 != null && dataRow.c6.Length > 0)
- {
- sqe_cto_process_standard model = new sqe_cto_process_standard();
- model.standard_no = dataRow.c6;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.process_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c7 != null && dataRow.c7.Length > 0)
- {
- sqe_cto_process_standard model = new sqe_cto_process_standard();
- model.standard_no = dataRow.c7;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.process_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c8 != null && dataRow.c8.Length > 0)
- {
- sqe_cto_process_standard model = new sqe_cto_process_standard();
- model.standard_no = dataRow.c8;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.process_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c9 != null && dataRow.c9.Length > 0)
- {
- sqe_cto_process_standard model = new sqe_cto_process_standard();
- model.standard_no = dataRow.c9;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.process_id = test.id;
- modelList.Add(model);
- }
- if (dataRow.c10 != null && dataRow.c10.Length > 0)
- {
- sqe_cto_process_standard model = new sqe_cto_process_standard();
- model.standard_no = dataRow.c10;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.process_id = test.id;
- modelList.Add(model);
- }
- #endregion 处理尺寸的表头
- if (modelList.Count > 0)
- {
- sqe_cto_process_standard model = modelList[0];
- dataRow = datas[index + 1];
- if (dataRow.c2 != null && decimal.TryParse(dataRow.c2, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 2];
- if (dataRow.c2 != null && decimal.TryParse(dataRow.c2, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 3];
- if (dataRow.c2 != null && decimal.TryParse(dataRow.c2, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c2 != null && decimal.TryParse(dataRow.c2, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c2 != null && decimal.TryParse(dataRow.c2, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 1)
- {
- sqe_cto_process_standard model = modelList[1];
- dataRow = datas[index + 1];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 2];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 3];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c3 != null && decimal.TryParse(dataRow.c3, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 2)
- {
- sqe_cto_process_standard model = modelList[2];
- dataRow = datas[index + 1];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 2];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 3];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c4 != null && decimal.TryParse(dataRow.c4, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 3)
- {
- sqe_cto_process_standard model = modelList[3];
- dataRow = datas[index + 1];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 2];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 3];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c5 != null && decimal.TryParse(dataRow.c5, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 4)
- {
- sqe_cto_process_standard model = modelList[4];
- dataRow = datas[index + 1];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 2];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 3];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c6 != null && decimal.TryParse(dataRow.c6, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 5)
- {
- sqe_cto_process_standard model = modelList[5];
- dataRow = datas[index + 1];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 2];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 3];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c7 != null && decimal.TryParse(dataRow.c7, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 6)
- {
- sqe_cto_process_standard model = modelList[6];
- dataRow = datas[index + 1];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 2];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 3];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c8 != null && decimal.TryParse(dataRow.c8, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 7)
- {
- sqe_cto_process_standard model = modelList[7];
- dataRow = datas[index + 1];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 2];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 3];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c9 != null && decimal.TryParse(dataRow.c9, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- if (modelList.Count > 8)
- {
- sqe_cto_process_standard model = modelList[8];
- dataRow = datas[index + 1];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 2];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 3];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 4];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 5];
- if (dataRow.c10 != null && decimal.TryParse(dataRow.c10, out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- }
- catch (Exception ex)
- {
- WLLog.Error("Excel数据解析问题:", ex);
- }
- errorMsg = stringBuilder.ToString();
- return modelList;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- public List<sqe_cto_process_data> File_data_ToModel_process_data(List<sqe_file_data> datas, sqe_cto_process test, List<sqe_cto_process_standard> standards, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- List<sqe_cto_process_data> modelList = new List<sqe_cto_process_data>();
- decimal realValuel;
- if (datas != null && datas.Count >= 12)
- {
- for (int i = 11; i < datas.Count; i++)
- {
- sqe_file_data dataRow = datas[i];
- if ((dataRow.c1 == null || dataRow.c1.Length == 0 || dataRow.c1 == "0") && (dataRow.c2 == null || dataRow.c2.Length == 0))
- {
- break;
- }
- //初始化每一层的数据集合
- List<sqe_cto_process_data> test_datas = new List<sqe_cto_process_data>();
- for (int j = 0; j < standards.Count; j++)
- {
- sqe_cto_process_data data = new sqe_cto_process_data();
- data.process_id = standards[j].process_id;
- data.standard_id = standards[j].id;
- data.create_by = create_by;
- data.create_date = create_date;
- data.create_org = create_org;
- test_datas.Add(data);
- }
- try
- {
- //将每一个检测标准的值从记录行中取出来
- if (test_datas.Count > 0)
- {
- sqe_cto_process_data data = test_datas[0];
- if (dataRow.c1 != null)
- {
- String s = dataRow.c1.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c2 != null && dataRow.c2.Length > 0 && decimal.TryParse(dataRow.c2, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 1)
- {
- sqe_cto_process_data data = test_datas[1];
- if (dataRow.c1 != null)
- {
- String s = dataRow.c1.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c3 != null && dataRow.c3.Length > 0 && decimal.TryParse(dataRow.c3, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 2)
- {
- sqe_cto_process_data data = test_datas[2];
- if (dataRow.c1 != null)
- {
- String s = dataRow.c1.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c4 != null && dataRow.c4.Length > 0 && decimal.TryParse(dataRow.c4, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 3)
- {
- sqe_cto_process_data data = test_datas[3];
- if (dataRow.c1 != null)
- {
- String s = dataRow.c1.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c5 != null && dataRow.c5.Length > 0 && decimal.TryParse(dataRow.c5, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 4)
- {
- sqe_cto_process_data data = test_datas[4];
- if (dataRow.c1 != null)
- {
- String s = dataRow.c1.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c6 != null && dataRow.c6.Length > 0 && decimal.TryParse(dataRow.c6, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 5)
- {
- sqe_cto_process_data data = test_datas[5];
- if (dataRow.c1 != null)
- {
- String s = dataRow.c1.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c7 != null && dataRow.c7.Length > 0 && decimal.TryParse(dataRow.c7, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 6)
- {
- sqe_cto_process_data data = test_datas[6];
- if (dataRow.c1 != null)
- {
- String s = dataRow.c1.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c8 != null && dataRow.c8.Length > 0 && decimal.TryParse(dataRow.c8, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 7)
- {
- sqe_cto_process_data data = test_datas[7];
- if (dataRow.c1 != null)
- {
- String s = dataRow.c1.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c9 != null && dataRow.c9.Length > 0 && decimal.TryParse(dataRow.c9, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- if (test_datas.Count > 8)
- {
- sqe_cto_process_data data = test_datas[8];
- if (dataRow.c1 != null)
- {
- String s = dataRow.c1.ToString();
- if (s != null && s.Length > 9)
- {
- s = s.Substring(s.Length - 9);
- }
- DateTime date;
- if (DateTime.TryParse(test.product_time.Value.ToString("yyyy-MM-dd ") + s, out date))
- {
- data.data_time = date.ToString("yyyy-MM-dd HH:mm");
- }
- }
- if (dataRow.c10 != null && dataRow.c10.Length > 0 && decimal.TryParse(dataRow.c10, out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- File_data_ToModel_process_data_Add(modelList, test_datas);
- }
- catch (Exception ex)
- {
- WLLog.Error("Excel数据解析_原始数据转换到对象实体的问题:", ex);
- }
- }
- errorMsg = string.Empty;
- return modelList;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- /// <summary>
- /// 将转换的数据插入到返回结果数据集中,处理掉异常数据
- /// </summary>
- /// <param name="dataDest"></param>
- /// <param name="dataSource"></param>
- private void File_data_ToModel_process_data_Add(List<sqe_cto_process_data> dataDest, List<sqe_cto_process_data> dataSource)
- {
- if (dataSource != null && dataSource.Count > 0)
- {
- for (int i = 0; i < dataSource.Count; i++)
- {
- sqe_cto_process_data data = dataSource[i];
- if (data.data_time != null && data.data_value != null)
- {
- dataDest.Add(data);
- }
- }
- }
- }
- #endregion 产品过程特性
- /// <summary>
- /// 依据导入的数据行,生成OP的表头、检验标准和数据行
- /// </summary>
- /// <param name="upload_id"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <returns></returns>
- public string Import_Op_From_Data(int upload_id, string create_by, DateTime create_date, string create_org)
- {
- StringBuilder stringBuilder = new StringBuilder();
- try
- {
- sqe_file_upload sqe_File_Upload = Get_Sqe_file_upload(upload_id);
- List<sqe_file_data> datas = LoadData_file_data(upload_id);
- if (datas == null || datas.Count == 0)
- {
- stringBuilder.AppendLine("导入数据信息不存在!");
- return stringBuilder.ToString();
- }
- //出货检验记录文件格式校验
- if (datas[0].c1.CompareTo("供应商代码") != 0
- || datas[0].c2.CompareTo("日期") != 0
- || datas[0].c3.CompareTo("客户料号") != 0
- || datas[0].c4.CompareTo("物料名称") != 0
- || datas[0].c5.CompareTo("批次号") != 0
- || datas[0].c6.CompareTo("工序") != 0
- || datas[0].c7.CompareTo("总数量") != 0
- || datas[0].c8.CompareTo("良品数") != 0
- || datas[0].c9.CompareTo("不良品数") != 0
- || datas[0].c10.CompareTo("合格率") != 0
- || datas[0].c11.CompareTo("不良率") != 0)
- {
- stringBuilder.AppendLine("文件不是【全检工序】要求的格式");
- return stringBuilder.ToString();
- }
- string errorMsg;
- sqe_op test = File_data_ToModel_op(datas, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_op.BeginTransaction();
- _sqe_op.Insert(test);
- errorMsg = null;
- List<sqe_op_data> standards = File_data_ToModel_op_data(datas, test, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- _sqe_op.Rollback();
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_op_data.BeginTransaction();
- _sqe_op_data.Insert(standards);
- List<sqe_op_data_detail> test_Datas = File_data_ToModel_op_data_detail(datas, test, standards, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- _sqe_op.Rollback();
- _sqe_op_data.Rollback();
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_op_data_detail.Insert(test_Datas);
- sqe_File_Upload.item_no = standards[0].item_no;
- sqe_File_Upload.item_name = standards[0].item_name;
- _sqe_file_upload.Update(sqe_File_Upload);
- _sqe_op.CommitTransaction();
- _sqe_op_data.CommitTransaction();
- }
- catch (Exception ex)
- {
- stringBuilder.Append("数据导入失败!");
- }
- finally
- {
- }
- return stringBuilder.ToString();
- }
- #region OP
- /// <summary>
- /// 从原始数据行生成OP的表头数据
- /// </summary>
- /// <param name="datas"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <param name="errorMsg"></param>
- /// <returns></returns>
- public sqe_op File_data_ToModel_op(List<sqe_file_data> datas, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- sqe_op model = new sqe_op();
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- if (datas != null && datas.Count > 0)
- {
- model.file_id = datas[0].file_id;
- }
- errorMsg = string.Empty;
- errorMsg = "";
- return model;
- }
- /// <summary>
- /// 从原始数据行生成OP的检验标准
- /// </summary>
- /// <param name="datas"></param>
- /// <param name="test"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <param name="errorMsg"></param>
- /// <returns></returns>
- public List<sqe_op_data> File_data_ToModel_op_data(List<sqe_file_data> datas, sqe_op test, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- List<sqe_op_data> modelList = new List<sqe_op_data>();
- decimal realValuel;
- if (datas != null && datas.Count > 1)
- {
- for (int i = 1; i < datas.Count; i++)
- {
- sqe_op_data model = new sqe_op_data();
- model.op_id = test.id;
- sqe_file_data dataRow = datas[i];
- if ((dataRow.c1 == null || dataRow.c1.Length == 0) && (dataRow.c2 == null || dataRow.c2.Length == 0))
- {
- break;
- }
- model.supp_no = dataRow.c1;
- DateTime dt;
- int dateLength;
- if (DateTime.TryParse(dataRow.c2, out dt))
- {
- model.op_time = dt;
- }
- else
- {
- if (int.TryParse(dataRow.c2, out dateLength))
- {
- dt = DateTime.Parse("1900-01-01");
- model.op_time = dt.AddDays(dateLength - 2);
- }
- }
- //model.op_time = DateTime.Parse(dataRow.c2);
- model.item_no = dataRow.c3;
- model.item_name = dataRow.c4;
- model.batch_no = dataRow.c5;
- model.op_no = dataRow.c6;
- Object obj = GetFieldValue(dataRow, "c7");
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.qty_all = realValuel;
- }
- obj = GetFieldValue(dataRow, "c8");
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.qty_ok = realValuel;
- }
- obj = GetFieldValue(dataRow, "c9");
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.qty_error = realValuel;
- }
- obj = GetFieldValue(dataRow, "c10");
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.percent_ok = realValuel;
- }
- obj = GetFieldValue(dataRow, "c11");
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.percent_error = realValuel;
- }
- //model.op_time = DateTime.Now;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- modelList.Add(model);
- }
- }
- errorMsg = stringBuilder.ToString();
- return modelList;
- }
- /// <summary>
- /// 从原始数据行生成OP的数据
- /// </summary>
- /// <param name="datas"></param>
- /// <param name="test"></param>
- /// <param name="standards"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <param name="errorMsg"></param>
- /// <returns></returns>
- public List<sqe_op_data_detail> File_data_ToModel_op_data_detail(List<sqe_file_data> datas, sqe_op test, List<sqe_op_data> standards, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- List<sqe_op_data_detail> modelList = new List<sqe_op_data_detail>();
- decimal realValuel;
- if (datas != null && datas.Count > 1)
- {
- for (int i = 1; i < datas.Count && i - 1 < standards.Count; i++)
- {
- sqe_file_data dataRow = datas[i];
- List<sqe_op_data_detail> testDatas = new List<sqe_op_data_detail>();
- for (int j = 12; j < 50; j += 4)
- {
- Object obj = GetFieldValue(dataRow, "c" + j.ToString());
- if (obj != null && obj.ToString().Length > 0)
- {
- sqe_op_data_detail data = new sqe_op_data_detail();
- data.op_id = standards[i - 1].op_id;
- data.op_data_id = standards[i - 1].id;
- data.bad_type = obj.ToString();
- obj = GetFieldValue(dataRow, "c" + (j + 1).ToString());
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- data.bad_qty = realValuel;
- }
- obj = GetFieldValue(dataRow, "c" + (j + 2).ToString());
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- data.percent_bad_all = realValuel;
- }
- obj = GetFieldValue(dataRow, "c" + (j + 3).ToString());
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- data.percent_bad = realValuel;
- }
- data.create_by = create_by;
- data.create_date = create_date;
- data.create_org = create_org;
- testDatas.Add(data);
- }
- }
- File_data_ToModel_op_data_detail_Add(modelList, testDatas);
- }
- errorMsg = string.Empty;
- return modelList;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- /// <summary>
- /// 将转换的数据插入到返回结果数据集中,处理掉异常数据
- /// </summary>
- /// <param name="dataDest"></param>
- /// <param name="dataSource"></param>
- private void File_data_ToModel_op_data_detail_Add(List<sqe_op_data_detail> dataDest, List<sqe_op_data_detail> dataSource)
- {
- if (dataSource != null && dataSource.Count > 0)
- {
- for (int i = 0; i < dataSource.Count; i++)
- {
- sqe_op_data_detail data = dataSource[i];
- if (data.bad_type != null && data.bad_type.Length > 0 && data.bad_qty != null)
- {
- dataDest.Add(data);
- }
- }
- }
- }
- #endregion OP
- /// <summary>
- /// 依据导入的数据行,生成FPY的表头、检验标准和数据行
- /// </summary>
- /// <param name="upload_id"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <returns></returns>
- public string Import_Fpy_From_Data(int upload_id, string create_by, DateTime create_date, string create_org)
- {
- StringBuilder stringBuilder = new StringBuilder();
- try
- {
- sqe_file_upload sqe_File_Upload = Get_Sqe_file_upload(upload_id);
- List<sqe_file_data> datas = LoadData_file_data(upload_id);
- if (datas == null || datas.Count == 0)
- {
- stringBuilder.AppendLine("导入数据信息不存在!");
- return stringBuilder.ToString();
- }
- //FPY的文件格式校验
- //if (datas[0].c1.CompareTo("一、供应商上传报表模版") != 0)
- //{
- // stringBuilder.AppendLine("文件不是【FPY】要求的格式");
- // return stringBuilder.ToString();
- //}
- if (datas[0].c1.CompareTo("生产各工序良率统计报表") != 0)
- {
- stringBuilder.AppendLine("文件不是【FPY】要求的格式");
- return stringBuilder.ToString();
- }
- if (datas[1].c1.CompareTo("NO") != 0
- || datas[1].c2.CompareTo("日期") != 0
- || datas[1].c3.CompareTo("物料号") != 0
- || datas[1].c4.CompareTo("物料名称") != 0
- || datas[1].c5.CompareTo("工序") != 0
- || datas[1].c6.CompareTo("投入数") != 0
- || datas[1].c7.CompareTo("不良数") != 0
- || datas[1].c8.CompareTo("良品率") != 0)
- {
- stringBuilder.AppendLine("文件不是【FPY】要求的格式");
- return stringBuilder.ToString();
- }
- //if (datas[2].c1.CompareTo("对应原材料批次号") != 0
- // || datas[2].c3.CompareTo("原材料使用数量") != 0
- // || datas[2].c5.CompareTo("物料批次号") != 0
- // || datas[2].c7.CompareTo("物料数量") != 0)
- //{
- // stringBuilder.AppendLine("文件不是【FPY】要求的格式式");
- // return stringBuilder.ToString();
- //}
- string errorMsg;
- sqe_fpy test = File_data_ToModel_fpy(datas, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_fpy.BeginTransaction();
- _sqe_fpy.Insert(test);
- errorMsg = null;
- List<sqe_fpy_data> standards = File_data_ToModel_fpy_data(datas, test, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- _sqe_fpy.Rollback();
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_fpy_data.BeginTransaction();
- _sqe_fpy_data.Insert(standards);
- sqe_File_Upload.item_no = standards[0].item_no;
- sqe_File_Upload.item_name = standards[0].item_name;
- _sqe_file_upload.Update(sqe_File_Upload);
- _sqe_fpy.CommitTransaction();
- _sqe_fpy_data.CommitTransaction();
- }
- catch (Exception ex)
- {
- stringBuilder.Append("数据导入失败!");
- }
- finally
- {
- }
- return stringBuilder.ToString();
- }
- #region FPY
- /// <summary>
- /// 从原始数据行生成FPY的表头数据
- /// </summary>
- /// <param name="datas"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <param name="errorMsg"></param>
- /// <returns></returns>
- public sqe_fpy File_data_ToModel_fpy(List<sqe_file_data> datas, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- sqe_fpy model = new sqe_fpy();
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- if (datas != null && datas.Count > 0)
- {
- model.file_id = datas[0].file_id;
- }
- errorMsg = string.Empty;
- errorMsg = "";
- return model;
- }
- /// <summary>
- /// 从原始数据行生成FPY的检验标准
- /// </summary>
- /// <param name="datas"></param>
- /// <param name="test"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <param name="errorMsg"></param>
- /// <returns></returns>
- public List<sqe_fpy_data> File_data_ToModel_fpy_data(List<sqe_file_data> datas, sqe_fpy test, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- List<sqe_fpy_data> modelList = new List<sqe_fpy_data>();
- decimal realValuel;
- if (datas != null && datas.Count > 2)
- {
- for (int i = 2; i < datas.Count; i++)
- {
- sqe_fpy_data model = new sqe_fpy_data();
- sqe_file_data dataRow = datas[i];
- if ((dataRow.c1 == null || dataRow.c1.Length == 0) && (dataRow.c3 == null || dataRow.c3.Length == 0))
- {
- break;
- }
- int dateLength;
- DateTime dt;
- if (DateTime.TryParse(dataRow.c2, out dt))
- {
- model.op_time = dt;
- }
- else
- {
- if (int.TryParse(dataRow.c2, out dateLength))
- {
- dt = DateTime.Parse("1900-01-01");
- model.op_time = dt.AddDays(dateLength - 2);
- }
- }
- model.item_no = dataRow.c3;
- model.item_name = dataRow.c4;
- model.op_no = dataRow.c5;
- Object obj = GetFieldValue(dataRow, "c6");
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.qty_all = realValuel;
- }
- obj = GetFieldValue(dataRow, "c7");
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.qty_error = realValuel;
- }
- obj = GetFieldValue(dataRow, "c8");
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.percent_ok = realValuel;
- }
- model.fpy_id = test.id;
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- modelList.Add(model);
- }
- }
- errorMsg = stringBuilder.ToString();
- return modelList;
- }
- #endregion FPY
- /// <summary>
- /// 依据导入的数据行,生成OQC的表头、检验标准和数据行
- /// </summary>
- /// <param name="upload_id"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <returns></returns>
- public string Import_Oqc_From_Data(int upload_id, string create_by, DateTime create_date, string create_org)
- {
- StringBuilder stringBuilder = new StringBuilder();
- try
- {
- sqe_file_upload sqe_File_Upload = Get_Sqe_file_upload(upload_id);
- List<sqe_file_data> datas = LoadData_file_data(upload_id);
- if (datas == null || datas.Count == 0)
- {
- stringBuilder.AppendLine("导入数据信息不存在!");
- return stringBuilder.ToString();
- }
- //出货检验记录的文件格式校验
- if (datas[0].c1.CompareTo("出货检验记录") != 0)
- {
- stringBuilder.AppendLine("文件不是【出货检验记录】要求的格式");
- return stringBuilder.ToString();
- }
- if (datas[1].c1.CompareTo("供应商名称") != 0
- || datas[1].c3.CompareTo("物料名称") != 0
- || datas[1].c5.CompareTo("物料号") != 0
- || datas[1].c7.CompareTo("物料版本号") != 0)
- {
- stringBuilder.AppendLine("文件不是【出货检验记录】要求的格式");
- return stringBuilder.ToString();
- }
- if (datas[2].c1.CompareTo("日期") != 0
- || datas[2].c3.CompareTo("批次号") != 0
- || datas[2].c5.CompareTo("批次数量") != 0
- || datas[2].c7.CompareTo("检验人员") != 0)
- {
- stringBuilder.AppendLine("文件不是【出货检验记录】要求的格式");
- return stringBuilder.ToString();
- }
- string errorMsg;
- sqe_oqc test = File_data_ToModel_oqc(datas, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_oqc.BeginTransaction();
- _sqe_oqc.Insert(test);
- errorMsg = null;
- List<sqe_oqc_standard> standards = File_data_ToModel_oqc_standard(datas, test, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- _sqe_oqc.Rollback();
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_oqc_standard.BeginTransaction();
- _sqe_oqc_standard.Insert(standards);
- List<sqe_oqc_data> test_Datas = File_data_ToModel_oqc_data(datas, test, standards, create_by, create_date, create_org, out errorMsg);
- if (errorMsg != null && errorMsg.Length > 0)
- {
- _sqe_oqc.Rollback();
- _sqe_oqc_standard.Rollback();
- stringBuilder.AppendLine(errorMsg);
- return stringBuilder.ToString();
- }
- _sqe_oqc_data.Insert(test_Datas);
- sqe_File_Upload.item_no = test.item_no;
- sqe_File_Upload.item_name = test.item_name;
- _sqe_file_upload.Update(sqe_File_Upload);
- _sqe_oqc.CommitTransaction();
- _sqe_oqc_standard.CommitTransaction();
- }
- catch (Exception ex)
- {
- stringBuilder.Append("数据导入失败!");
- }
- finally
- {
- }
- return stringBuilder.ToString();
- }
- #region OQC
- /// <summary>
- /// 从原始数据行生成OQC的表头数据
- /// </summary>
- /// <param name="datas"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <param name="errorMsg"></param>
- /// <returns></returns>
- public sqe_oqc File_data_ToModel_oqc(List<sqe_file_data> datas, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- sqe_oqc model = new sqe_oqc();
- DateTime timeValue;
- decimal realValuel;
- if (datas != null && datas.Count >= 4)
- {
- try
- {
- model.file_id = datas[0].file_id;
- sqe_file_data data = datas[1];
- model.supp_no = data.c2;
- model.item_name = data.c4;
- model.item_no = data.c6;
- model.item_version = data.c8;
- data = datas[2];
- if (DateTime.TryParse(data.c2, out timeValue))
- {
- model.product_time = timeValue;
- }
- else
- {
- model.product_time = DateTime.Now;
- }
- model.batch_no = data.c4;
- if (decimal.TryParse(data.c6, out realValuel))
- {
- model.batch_qty = realValuel;
- }
- model.test_person = data.c8;
- data = datas[3];
- model.sampling_standard = data.c2;
- if (decimal.TryParse(data.c4, out realValuel))
- {
- model.sampling_number = realValuel;
- }
- model.test_result = data.c8;
- }
- catch (Exception ex)
- {
- WLLog.Error("Excel数据解析问题:", ex);
- }
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- errorMsg = string.Empty;
- return model;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- /// <summary>
- /// 从原始数据行生成OQC的检验标准
- /// </summary>
- /// <param name="datas"></param>
- /// <param name="test"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <param name="errorMsg"></param>
- /// <returns></returns>
- public List<sqe_oqc_standard> File_data_ToModel_oqc_standard(List<sqe_file_data> datas, sqe_oqc test, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- List<sqe_oqc_standard> modelList = new List<sqe_oqc_standard>();
- decimal realValuel;
- if (datas != null && datas.Count >= 13)
- {
- try
- {
- //标准的起始位置
- int index = 4;
- sqe_file_data dataRow = datas[index];
- #region 处理尺寸的表头
- for (int i = 2; i < 10; i++)
- {
- Object obj = GetFieldValue(dataRow, "c" + i.ToString());
- if (obj != null)
- {
- sqe_oqc_standard model = new sqe_oqc_standard();
- model.standard_no = obj.ToString();
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.oqc_id = test.id;
- modelList.Add(model);
- }
- else
- {
- break;
- }
- }
- #endregion 处理尺寸的表头
- //处理表头的具体值
- for (int i = 0; i < 9 && i < modelList.Count; i++)
- {
- string fieldName = "c" + (i + 2).ToString();
- sqe_oqc_standard model = modelList[i];
- dataRow = datas[index + 1];
- Object obj = GetFieldValue(dataRow, fieldName);
- if (obj != null)
- {
- model.standard_no = obj.ToString();
- }
- dataRow = datas[index + 2];
- obj = GetFieldValue(dataRow, fieldName);
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.standard_value = realValuel;
- }
- dataRow = datas[index + 3];
- obj = GetFieldValue(dataRow, fieldName);
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.delta_up = realValuel;
- }
- dataRow = datas[index + 4];
- obj = GetFieldValue(dataRow, fieldName);
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.delta_down = realValuel;
- }
- dataRow = datas[index + 5];
- obj = GetFieldValue(dataRow, fieldName);
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.standard_max = realValuel;
- }
- dataRow = datas[index + 6];
- obj = GetFieldValue(dataRow, fieldName);
- if (obj != null && decimal.TryParse(obj.ToString(), out realValuel))
- {
- model.standard_min = realValuel;
- }
- }
- }
- catch (Exception ex)
- {
- WLLog.Error("Excel数据解析问题:", ex);
- }
- errorMsg = stringBuilder.ToString();
- return modelList;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- /// <summary>
- /// 获取某个对象的某个属性的值
- /// </summary>
- /// <param name="obj"></param>
- /// <param name="fieldName"></param>
- /// <returns></returns>
- private Object GetFieldValue(Object obj, string fieldName)
- {
- //获得对象的所有public属性
- PropertyInfo[] pis = obj.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);
- //如果获得了属性
- if (pis != null)
- {
- foreach (PropertyInfo pi in pis)//针对每一个属性进行循环
- {
- if (pi.Name.CompareTo(fieldName) == 0)
- {
- Object objValue = pi.GetValue(obj);
- if (objValue != null && objValue.ToString().Length > 0)
- {
- return objValue;
- }
- }
- }
- }
- return null;
- }
- /// <summary>
- /// 从原始数据行生成OQC的数据
- /// </summary>
- /// <param name="datas"></param>
- /// <param name="test"></param>
- /// <param name="standards"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <param name="errorMsg"></param>
- /// <returns></returns>
- public List<sqe_oqc_data> File_data_ToModel_oqc_data(List<sqe_file_data> datas, sqe_oqc test, List<sqe_oqc_standard> standards, string create_by, DateTime create_date, string create_org, out string errorMsg)
- {
- StringBuilder stringBuilder = new StringBuilder();
- List<sqe_oqc_data> modelList = new List<sqe_oqc_data>();
- decimal realValuel;
- if (datas != null && datas.Count >= 12)
- {
- for (int i = 11; i < datas.Count; i++)
- {
- sqe_file_data dataRow = datas[i];
- if ((dataRow.c1 == null || dataRow.c1.Length == 0 || dataRow.c1 == "0") && (dataRow.c2 == null || dataRow.c2.Length == 0))
- {
- break;
- }
- //初始化每一层的数据集合
- List<sqe_oqc_data> test_datas = new List<sqe_oqc_data>();
- for (int j = 0; j < standards.Count; j++)
- {
- sqe_oqc_data data = new sqe_oqc_data();
- data.oqc_id = standards[j].oqc_id;
- data.standard_id = standards[j].id;
- data.create_by = create_by;
- data.create_date = create_date;
- data.create_org = create_org;
- test_datas.Add(data);
- }
- try
- {
- //将每一个检测标准的值从记录行中取出来
- for (int j = 0; j < test_datas.Count; j++)
- {
- sqe_oqc_data data = test_datas[j];
- data.data_no = dataRow.c1;
- string fieldName = "c" + (j + 2).ToString();
- Object obj = GetFieldValue(dataRow, fieldName);
- if (obj != null && obj.ToString().Length > 0 && decimal.TryParse(obj.ToString(), out realValuel))
- {
- data.data_value = realValuel;
- }
- else
- {
- data.data_value = null;
- }
- }
- File_data_ToModel_oqc_data_Add(modelList, test_datas);
- }
- catch (Exception ex)
- {
- WLLog.Error("Excel数据解析_原始数据转换到对象实体的问题:", ex);
- }
- }
- errorMsg = string.Empty;
- return modelList;
- }
- else
- {
- errorMsg = stringBuilder.ToString();
- return null;
- }
- }
- /// <summary>
- /// 将转换的数据插入到返回结果数据集中,处理掉异常数据
- /// </summary>
- /// <param name="dataDest"></param>
- /// <param name="dataSource"></param>
- private void File_data_ToModel_oqc_data_Add(List<sqe_oqc_data> dataDest, List<sqe_oqc_data> dataSource)
- {
- if (dataSource != null && dataSource.Count > 0)
- {
- for (int i = 0; i < dataSource.Count; i++)
- {
- sqe_oqc_data data = dataSource[i];
- if (data.data_no != null && data.data_no.Length > 0 && data.data_value != null)
- {
- dataDest.Add(data);
- }
- }
- }
- }
- #endregion OQC
- #region Fct
- /// <summary>
- /// 将字符串插入到数据库
- /// </summary>
- /// <param name="data"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <returns></returns>
- public string Import_Fct_From_Data(String data, string create_by, DateTime create_date, string create_org)
- {
- StringBuilder stringBuilder = new StringBuilder();
- sqe_fct model = new sqe_fct();
- List<sqe_fct_data> modelList = new List<sqe_fct_data>();
- DateTime timeValue;
- decimal realValuel;
- try
- {
- JObject json = JObject.Parse(data);
- model.SpID = json["SpID"].ToString();
- model.WLID = json["WLID"].ToString();
- model.WPID = json["WPID"].ToString();
- model.op_side = json["OpSide"].ToString();
- model.LineID = json["LineID"].ToString();
- model.OpID = json["OpID"].ToString();
- model.bar_code = json["BarCode"].ToString();
- model.SerialNO = json["SerialNO"].ToString();
- model.WONO = json["WONO"].ToString();
- model.program = json["Program"].ToString();
- model.pro_version = json["ProVersion"].ToString();
- model.test_date = DateTime.Parse(json["TestDate"].ToString());
- model.test_result = json["testResult"].ToString();
- model.msg = json["Msg"].ToString();
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- JArray array = JArray.Parse(json["testData"].ToString());
- //将每一个检测标准的值从记录行中取出来
- for (int j = 0; array != null && j < array.Count; j++)
- {
- sqe_fct_data data1 = new sqe_fct_data();
- data1.name = array[j]["Name"].ToString();
- data1.unit = array[j]["Unit"].ToString();
- data1.lower = decimal.Parse(array[j]["Lower"].ToString());
- data1.upper = decimal.Parse(array[j]["Upper"].ToString());
- data1.actual = decimal.Parse(array[j]["Actual"].ToString());
- data1.result = array[j]["result"].ToString();
- data1.start_time = DateTime.Parse(array[j]["StartTime"].ToString());
- data1.end_time = DateTime.Parse(array[j]["endTime"].ToString());
- data1.detial = array[j]["Detial"].ToString();
- data1.create_by = create_by;
- data1.create_date = create_date;
- data1.create_org = create_org;
- modelList.Add(data1);
- }
- }
- catch (Exception ex)
- {
- stringBuilder.Append(ex.ToString());
- WLLog.Error("Fct上传数据解析_原始数据转换到对象实体的问题:", ex);
- }
- try
- {
- _sqe_fct.BeginTransaction();
- _sqe_fct.Insert(model);
- foreach (var item in modelList)
- {
- item.fct_id = model.id;
- }
- _sqe_fct_data.BeginTransaction();
- _sqe_fct_data.Insert(modelList);
- _sqe_fct_data.CommitTransaction();
- _sqe_fct.CommitTransaction();
- }
- catch (Exception ex)
- {
- _sqe_fct_data.Rollback();
- _sqe_fct.Rollback();
- stringBuilder.Append(ex.ToString());
- }
- return stringBuilder.ToString();
- }
- #endregion Fct
- /// <summary>
- /// 依据上传文件id,生成该文件上传的数据统计
- /// </summary>
- /// <param name="upload_id"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <returns></returns>
- public string Compute_Test(int upload_id, string create_by, DateTime create_date, string create_org)
- {
- StringBuilder stringBuilder = new StringBuilder();
- //查询原始记录
- List<sqe_cto_test> tests = _sqe_cto_test.Select(a => a.file_id == upload_id).OrderBy(a => a.id).ToList();
- if (tests == null || tests.Count == 0)
- {
- stringBuilder.AppendLine("该id对应的上传数据记录不存在!");
- return stringBuilder.ToString();
- }
- sqe_cto_test test = tests[0];
- List<sqe_cto_test_standard> test_standards = _sqe_cto_test_standard.Select(a => a.test_id == test.id).OrderBy(a => a.id).ToList();
- if (test_standards == null || test_standards.Count == 0)
- {
- stringBuilder.AppendLine("该id对应的检验标准数据记录不存在!");
- return stringBuilder.ToString();
- }
- //Compute_Test_id(upload_id, "1号尺寸", create_by, create_date, create_org);
- Compute_Test_id(upload_id, test_standards[0].standard_no, create_by, create_date, create_org);
- List<sqe_cto_test_data> test_datas = _sqe_cto_test_data.Select(a => a.test_id == test.id).OrderBy(a => a.id).ToList();
- //生成统计信息
- List<sqe_cto_test_avg> test_avgs = _sqe_cto_test_avg.Select(a => a.cto_test_id == test.id).OrderBy(a => a.id).ToList();
- if (test_avgs != null && test_avgs.Count > 0)
- {
- stringBuilder.AppendLine("该id的数据统计已经完成!");
- return stringBuilder.ToString();
- }
- int sample_count = test.sampling_number;
- for (int i = 0; i <= test_datas.Count - sample_count; i += sample_count)
- {
- }
- return stringBuilder.ToString();
- }
- /// <summary>
- /// 依据test_id,生成该对象的均值和极差,保存到数据库表sqe_cto_test_avg
- /// 依据均值和极差,再次生成该数据的统计值对象,并且保存到数据库表sqe_cto_test_statistics
- /// </summary>
- /// <param name="test_id"></param>
- /// <param name="standard_no"></param>
- /// <param name="create_by"></param>
- /// <param name="create_date"></param>
- /// <param name="create_org"></param>
- /// <returns></returns>
- public string Compute_Test_id(int test_id, string standard_no, string create_by, DateTime create_date, string create_org)
- {
- StringBuilder stringBuilder = new StringBuilder();
- //查询原始记录
- List<sqe_cto_test> tests = _sqe_cto_test.Select(a => a.id == test_id).OrderBy(a => a.id).ToList();
- if (tests == null || tests.Count == 0)
- {
- stringBuilder.AppendLine("该id对应的上传数据记录不存在!");
- return stringBuilder.ToString();
- }
- sqe_cto_test test = tests[0];
- //查看该CTO的产品特性数据,查询统计信息是否已经生成
- List<sqe_cto_test_avg> test_avgs = _sqe_cto_test_avg.Select(a => a.cto_test_id == test.id).OrderBy(a => a.id).ToList();
- if (test_avgs != null && test_avgs.Count > 0)
- {
- stringBuilder.AppendLine("该id的数据统计已经完成!");
- return stringBuilder.ToString();
- }
- // 依据ID条件,获取用户上传的CTO产品特性数据
- List<v_sqe_cto_test_data> test_datas = _v_sqe_cto_test_data.Select(a => a.test_id == test.id && a.standard_no == standard_no && a.data_value != null).OrderBy(a => a.id).ToList();
- if (test_datas == null || test_datas.Count == 0)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您的查询条件没有查询到数据可能有问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- //int sample_count = test_datas != null && test_datas.Count > 0 ? test_datas[0].sampling_count : -1;
- //if (sample_count == -1)
- //{
- // ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择数据中的采样数有问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- // return JsonConvert.SerializeObject(resultError);
- //}
- int sample_count = test.sampling_number;
- double[] data = new double[sample_count];
- //所有的检测数据,按照进行采样数进行归一
- double[] dataAll = new double[test_datas.Count / sample_count * sample_count];
- //极差数据
- double[] dataRange = new double[test_datas.Count / sample_count];
- for (int i = 0; i <= test_datas.Count - sample_count; i += sample_count)
- {
- sqe_cto_test_avg obj = new sqe_cto_test_avg();
- for (int j = 0; j < sample_count; j++)
- {
- data[j] = (double)test_datas[i + j].data_value.Value;
- dataAll[i + j] = data[j];
- }
- obj.create_by = create_by;
- obj.create_date = create_date;
- obj.create_org = create_org;
- obj.standard_no = standard_no;
- obj.sampling_number = sample_count;
- obj.mean_value = (decimal)data.Average();
- obj.range_value = (decimal)(data.Max() - data.Min());
- dataRange[i / sample_count] = (double)obj.range_value;
- obj.cto_test_id = test_id;
- test_avgs.Add(obj);
- }
- decimal a2 = (decimal)GetA2(sample_count);
- decimal d2 = (decimal)GetD2(sample_count);
- decimal d3 = (decimal)GetD3(sample_count);
- decimal d4 = (decimal)GetD4(sample_count);
- //开始计算统计结果
- sqe_cto_test_statistics model = new sqe_cto_test_statistics();
- model.create_by = create_by;
- model.create_date = create_date;
- model.create_org = create_org;
- model.cto_test_id = test.id;
- model.standard_no = standard_no;
- model.value_count = test_datas.Count;
- model.standard_min = test_datas[0].standard_min;
- model.standard_max = test_datas[0].standard_max;
- model.standard_value = (model.standard_min + model.standard_max) / 2;
- model.value_sum = (decimal)dataAll.Sum();
- model.value_avg = (decimal)dataAll.Average();
- model.value_max = (decimal)dataAll.Max();
- model.value_min = (decimal)dataAll.Min();
- model.value_below = dataAll.Count(x => x < (double)model.standard_min);
- model.value_above = dataAll.Count(x => x > (double)model.standard_max);
- model.avg_range = (decimal)dataRange.Average();
- model.value_d2 = d2;
- model.value_cpu = (model.standard_max - model.value_avg) / (3 * model.avg_range / model.value_d2);
- model.value_cpl = (model.value_avg - model.standard_min) / (3 * model.avg_range / model.value_d2);
- model.value_cp = (model.standard_max - model.standard_min) / (6 * model.avg_range / model.value_d2);
- model.value_cpk = model.value_cpu < model.value_cpl ? model.value_cpu : model.value_cpl;
- model.value_cr = (decimal)1.0 / model.value_cp;
- model.value_stdev = (decimal)dataAll.StandardDeviation();
- model.value_stdevp = (decimal)dataAll.PopulationStandardDeviation();
- model.value_var = (decimal)dataAll.Variance();
- model.value_varp = (decimal)dataAll.PopulationVariance();
- model.value_pp = (model.standard_max - model.standard_min) / (6 * model.value_stdev);
- model.value_ppu = (model.standard_max - model.value_avg) / (3 * model.value_stdev);
- model.value_ppl = (model.value_avg - model.standard_min) / (3 * model.value_stdev);
- model.value_ppk = model.value_ppu < model.value_ppl ? model.value_ppu : model.value_ppl;
- //更新均值方差数据表信息
- foreach (var item in test_avgs)
- {
- item.mean_value_all = model.value_avg;
- item.range_value_all = model.avg_range;
- item.value_uclx = item.mean_value_all + item.range_value_all * a2;
- item.value_lclx = item.mean_value_all - item.range_value_all * a2;
- item.value_uclr = item.range_value_all * d4;
- item.value_lclr = item.range_value_all * d3;
- }
- _sqe_cto_test_avg.Update(test_avgs);
- _sqe_cto_test_statistics.Update(model);
- return stringBuilder.ToString();
- }
- #region 计算系数
- /// <summary>
- /// 计算A2系数
- /// </summary>
- /// <param name="sample_count"></param>
- /// <returns></returns>
- public double GetA2(int sample_count)
- {
- switch (sample_count)
- {
- case 1:
- return 2.659574468;
- break;
- case 2:
- return 1.88;
- break;
- case 3:
- return 1.023;
- break;
- case 4:
- return 0.729;
- break;
- case 5:
- return 0.577;
- break;
- }
- return 1;
- }
- /// <summary>
- /// 计算系数D2
- /// </summary>
- /// <param name="sample_count"></param>
- /// <returns></returns>
- public double GetD2(int sample_count)
- {
- switch (sample_count)
- {
- case 1:
- return 1.128;
- break;
- case 2:
- return 1.128;
- break;
- case 3:
- return 1.693;
- break;
- case 4:
- return 2.059;
- break;
- case 5:
- return 2.326;
- break;
- }
- return 1;
- }
- /// <summary>
- /// 计算系数D4
- /// </summary>
- /// <param name="sample_count"></param>
- /// <returns></returns>
- public double GetD4(int sample_count)
- {
- switch (sample_count)
- {
- case 1:
- return 3.267;
- break;
- case 2:
- return 3.267;
- break;
- case 3:
- return 2.574;
- break;
- case 4:
- return 2.282;
- break;
- case 5:
- return 2.114;
- break;
- }
- return 1;
- }
- /// <summary>
- /// 计算系数D3
- /// </summary>
- /// <param name="sample_count"></param>
- /// <returns></returns>
- public double GetD3(int sample_count)
- {
- return 0;
- //switch (sample_count)
- //{
- // case 1:
- // return 1.128;
- // break;
- // case 2:
- // return 1.128;
- // break;
- // case 3:
- // return 1.693;
- // break;
- // case 4:
- // return 2.059;
- // break;
- // case 5:
- // return 2.326;
- // break;
- //}
- //return 1;
- }
- #endregion 计算系数
- /// <summary>
- /// 通过查询条件,查询统计Chart的数据的标识信息
- /// </summary>
- /// <param name="startDate"></param>
- /// <param name="endDate"></param>
- /// <param name="item_no"></param>
- /// <param name="item_batch"></param>
- /// <param name="org"></param>
- /// <param name="standard_no"></param>
- /// <param name="sample_count"></param>
- /// <returns></returns>
- public string Compute_TestChartData(string startDate, string endDate, string item_no, string item_batch, string org, string standard_no, int sample_count)
- {
- try
- {
- // 依据查询条件,获取用户上传的CTO产品特性数据
- List<v_sqe_cto_test_data> test_datas = Get_TestData(startDate, endDate, item_no, item_batch, org, standard_no);
- if (test_datas == null || test_datas.Count == 0)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您的查询条件没有查询到数据可能有问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- //所有的检测数据,按照进行采样数进行归一
- double[] dataAll = null;
- //均值数据
- double[] dataAvg = null;
- //极差数据
- double[] dataRange = null;
- //计算均值与极差
- Get_TestAvgRange(test_datas, sample_count, out dataAll, out dataAvg, out dataRange);
- double a2 = GetA2(sample_count);
- double d2 = GetD2(sample_count);
- double d3 = GetD3(sample_count);
- double d4 = GetD4(sample_count);
- //开始计算统计结果
- double UCLx = 0, AveX = 0, LCLx = 0, UCLr = 0, AveR = 0, LCLr = 0;
- AveX = dataAvg.Average();
- AveR = dataRange.Average();
- UCLx = AveX + a2 * AveR;
- LCLx = AveX - a2 * AveR;
- UCLr = d4 * AveR;
- LCLr = d3 * AveR;
- //生成临时数据,插入数据库
- List<sqe_chart_data_temp> models = new List<sqe_chart_data_temp>();
- sqe_chart_data_temp model;
- DateTime dateTimeNow = DateTime.Now;
- for (int i = 0; i < dataAvg.Length; i++)
- {
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "sub" + (i + 1).ToString();
- model.type_name = "均值";
- model.type_value = (decimal)AveX;
- model.data_time = dateTimeNow;
- models.Add(model);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "sub" + (i + 1).ToString();
- model.type_name = "极差";
- model.type_value = (decimal)AveR;
- model.data_time = dateTimeNow;
- models.Add(model);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "sub" + (i + 1).ToString();
- model.type_name = "UCLx";
- model.type_value = (decimal)UCLx;
- model.data_time = dateTimeNow;
- models.Add(model);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "sub" + (i + 1).ToString();
- model.type_name = "LCLx";
- model.type_value = (decimal)LCLx;
- model.data_time = dateTimeNow;
- models.Add(model);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "sub" + (i + 1).ToString();
- model.type_name = "UCLr";
- model.type_value = (decimal)UCLr;
- model.data_time = dateTimeNow;
- models.Add(model);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "sub" + (i + 1).ToString();
- model.type_name = "LCLr";
- model.type_value = (decimal)LCLr;
- model.data_time = dateTimeNow;
- models.Add(model);
- }
- _sqe_chart_data_temp.Insert(models);
- ResultViewModel result = ResultHelper.CreateResult(ResultCode.Success, dateTimeNow.Ticks.ToString(), ResultCode.Success, null);
- return JsonConvert.SerializeObject(result);
- }
- catch (Exception ex)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择数据中的采样数有问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- }
- /// <summary>
- /// 依据查询统计条件,生成该时间段内的均值和极差
- /// 依据均值和极差,再次生成统计对象
- /// </summary>
- /// <param name="startDate"></param>
- /// <param name="endDate"></param>
- /// <param name="item_no"></param>
- /// <param name="item_batch"></param>
- /// <param name="org"></param>
- /// <param name="standard_no"></param>
- /// <param name="sample_count"></param>
- /// <returns></returns>
- public string Compute_Test(string startDate, string endDate, string item_no, string item_batch, string org, string standard_no, int sample_count)
- {
- try
- {
- // 依据查询条件,获取用户上传的CTO产品特性数据
- List<v_sqe_cto_test_data> test_datas = Get_TestData(startDate, endDate, item_no, item_batch, org, standard_no);
- if (test_datas == null || test_datas.Count == 0)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您的查询条件没有查询到数据可能有问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- //int sample_count = test_datas != null && test_datas.Count > 0 ? test_datas[0].sampling_count : -1;
- //if (sample_count == -1)
- //{
- // ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择数据中的采样数有问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- // return JsonConvert.SerializeObject(resultError);
- //}
- //所有的检测数据,按照进行采样数进行归一
- double[] dataAll = null;
- //均值数据
- double[] dataAvg = null;
- //极差数据
- double[] dataRange = null;
- //计算均值与极差
- Get_TestAvgRange(test_datas, sample_count, out dataAll, out dataAvg, out dataRange);
- decimal a2 = (decimal)GetA2(sample_count);
- decimal d2 = (decimal)GetD2(sample_count);
- decimal d3 = (decimal)GetD3(sample_count);
- decimal d4 = (decimal)GetD4(sample_count);
- //开始计算统计结果
- sqe_cto_test_statistics model = new sqe_cto_test_statistics();
- model.standard_no = standard_no;
- model.value_count = test_datas.Count;
- model.standard_min = test_datas[0].standard_min;
- model.standard_max = test_datas[0].standard_max;
- model.standard_value = (model.standard_min + model.standard_max) / 2;
- model.value_sum = (decimal)dataAll.Sum();
- model.value_avg = (decimal)dataAll.Average();
- model.value_max = (decimal)dataAll.Max();
- model.value_min = (decimal)dataAll.Min();
- model.value_below = dataAll.Count(x => x < (double)model.standard_min);
- model.value_above = dataAll.Count(x => x > (double)model.standard_max);
- model.avg_range = (decimal)dataRange.Average();
- model.value_d2 = d2;
- model.value_cpu = (model.standard_max - model.value_avg) / (3 * model.avg_range / model.value_d2);
- model.value_cpl = (model.value_avg - model.standard_min) / (3 * model.avg_range / model.value_d2);
- model.value_cp = (model.standard_max - model.standard_min) / (6 * model.avg_range / model.value_d2);
- model.value_cpk = model.value_cpu < model.value_cpl ? model.value_cpu : model.value_cpl;
- model.value_cr = (decimal)1.0 / model.value_cp;
- model.value_stdev = (decimal)dataAll.StandardDeviation();
- model.value_stdevp = (decimal)dataAll.PopulationStandardDeviation();
- model.value_var = (decimal)dataAll.Variance();
- model.value_varp = (decimal)dataAll.PopulationVariance();
- model.value_pp = (model.standard_max - model.standard_min) / (6 * model.value_stdev);
- model.value_ppu = (model.standard_max - model.value_avg) / (3 * model.value_stdev);
- model.value_ppl = (model.value_avg - model.standard_min) / (3 * model.value_stdev);
- model.value_ppk = model.value_ppu < model.value_ppl ? model.value_ppu : model.value_ppl;
- ResultViewModel result = ResultHelper.CreateResult(ResultCode.Success, model, ResultCode.Success, null);
- return JsonConvert.SerializeObject(result);
- }
- catch (Exception ex)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择数据中的采样数有问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- }
- /// <summary>
- /// 依据查询条件,查询用户上传的CTO产品特性数据
- /// </summary>
- /// <param name="startDate"></param>
- /// <param name="endDate"></param>
- /// <param name="item_no"></param>
- /// <param name="item_batch"></param>
- /// <param name="org"></param>
- /// <param name="standard_no"></param>
- /// <returns></returns>
- public List<v_sqe_cto_test_data> Get_TestData(string startDate, string endDate,
- string item_no, string item_batch,
- string org, string standard_no)
- {
- try
- {
- #region 查询条件
- // 动态条件
- var conditions = new List<Expression<Func<v_sqe_cto_test_data, bool>>>();
- conditions.Add(p => p.data_value != null);
- if (!string.IsNullOrEmpty(startDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(startDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date >= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(endDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(endDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date <= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(item_no))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.item_no == item_no);
- }
- if (!string.IsNullOrEmpty(item_batch))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.item_batch == item_batch);
- }
- if (!string.IsNullOrEmpty(org))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_org == org);
- }
- if (!string.IsNullOrEmpty(standard_no))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.standard_no == standard_no);
- }
- // 组合条件
- var combinedCondition = PredicateBuilder.New<v_sqe_cto_test_data>();
- foreach (var condition in conditions)
- {
- combinedCondition = combinedCondition.And(condition);
- }
- var query = _v_sqe_cto_test_data.GetDbContext().v_sqe_cto_test_data.AsQueryable();
- // 应用条件
- if (combinedCondition.Body != null)
- {
- query = query.Where(combinedCondition);
- }
- #endregion 查询条件
- // 执行查询
- List<v_sqe_cto_test_data> test_datas = query.DefaultIfEmpty().ToList();
- return test_datas;
- }
- catch (Exception ex)
- {
- return null;
- }
- }
- /// <summary>
- /// 依据CTO产品特性数据,采样数,统计均值与极差
- /// </summary>
- /// <param name="datas"></param>
- /// <param name="sample_count"></param>
- /// <param name="dataAll"></param>
- /// <param name="dataAvg"></param>
- /// <param name="dataRange"></param>
- public void Get_TestAvgRange(List<v_sqe_cto_test_data> datas, int sample_count, out double[] dataAll, out double[] dataAvg, out double[] dataRange)
- {
- //所有的检测数据,按照进行采样数进行归一
- dataAll = new double[datas.Count / sample_count * sample_count];
- //均值数据
- dataAvg = new double[datas.Count / sample_count];
- //极差数据
- dataRange = new double[datas.Count / sample_count];
- //计算极差与均值时的临时数据
- double[] data = new double[sample_count];
- //计算所有的均值与极差
- for (int i = 0; i <= datas.Count - sample_count; i += sample_count)
- {
- for (int j = 0; j < sample_count; j++)
- {
- data[j] = (double)datas[i + j].data_value.Value;
- dataAll[i + j] = data[j];
- }
- dataRange[i / sample_count] = data.Max() - data.Min();
- }
- }
- /// <summary>
- /// 依据查询条件,统计工序的不良情况
- /// </summary>
- /// <param name="startDate"></param>
- /// <param name="endDate"></param>
- /// <param name="item_no"></param>
- /// <param name="item_batch"></param>
- /// <param name="org"></param>
- /// <returns></returns>
- public string Compute_op_query(string startDate, string endDate, string item_no, string item_batch, string org, string op, string bad_type)
- {
- try
- {
- #region 查询条件
- // 动态条件
- var conditions = new List<Expression<Func<v_sqe_op_data_detail, bool>>>();
- if (!string.IsNullOrEmpty(startDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(startDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date >= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(endDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(endDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date <= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(item_no))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.item_no == item_no);
- }
- if (!string.IsNullOrEmpty(item_batch))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.batch_no == item_batch);
- }
- if (!string.IsNullOrEmpty(org))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_org == org);
- }
- if (!string.IsNullOrEmpty(op))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.op_no == op);
- }
- if (!string.IsNullOrEmpty(bad_type))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.bad_type == bad_type);
- }
- // 组合条件
- var combinedCondition = PredicateBuilder.New<v_sqe_op_data_detail>();
- //此处是所有的条件都and。
- foreach (var condition in conditions)
- {
- combinedCondition = combinedCondition.And(condition);
- }
- var query = _v_sqe_op_data_detail.GetDbContext().v_sqe_op_data_detail.AsQueryable();
- // 应用条件
- if (conditions.Count > 0)
- {
- query = query.Where(combinedCondition);
- }
- #endregion 查询条件
- // 分组统计,此处多个条件进行统计,p.bad_type, p.op_no
- var groupBy = query.GroupBy(p => new { p.bad_type, p.op_no })
- .Select(g => new
- {
- bad_type = g.Key.bad_type,
- op_no = g.Key.op_no,
- bad_qty = g.Sum(p => p.bad_qty)
- });
- //增加排序条件,此处多个条件,op_no,bad_type
- var test_datas = groupBy.OrderBy(p => p.op_no).ThenBy(p => p.bad_type).ToList();
- ResultViewModel result = ResultHelper.CreateResult(ResultCode.Success, test_datas, ResultCode.Success, null);
- return JsonConvert.SerializeObject(result);
- }
- catch (Exception ex)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择的数据在统计中出现问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- return null;
- }
- /// <summary>
- /// 工序统计图
- /// </summary>
- /// <param name="startDate"></param>
- /// <param name="endDate"></param>
- /// <param name="item_no"></param>
- /// <param name="item_batch"></param>
- /// <param name="org"></param>
- /// <param name="op"></param>
- /// <param name="bad_type"></param>
- /// <returns></returns>
- public string Compute_OpChartData(string startDate, string endDate, string item_no, string item_batch, string org, string op, string bad_type)
- {
- try
- {
- #region 查询条件
- // 动态条件
- var conditions = new List<Expression<Func<v_sqe_op_data_detail, bool>>>();
- if (!string.IsNullOrEmpty(startDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(startDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date >= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(endDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(endDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date <= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(item_no))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.item_no == item_no);
- }
- if (!string.IsNullOrEmpty(item_batch))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.batch_no == item_batch);
- }
- if (!string.IsNullOrEmpty(org))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_org == org);
- }
- if (!string.IsNullOrEmpty(op))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.op_no == op);
- }
- if (!string.IsNullOrEmpty(bad_type))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.bad_type == bad_type);
- }
- // 组合条件
- var combinedCondition = PredicateBuilder.New<v_sqe_op_data_detail>();
- //此处是所有的条件都and。
- foreach (var condition in conditions)
- {
- combinedCondition = combinedCondition.And(condition);
- }
- var query = _v_sqe_op_data_detail.GetDbContext().v_sqe_op_data_detail.AsQueryable();
- // 应用条件
- if (conditions.Count > 0)
- {
- query = query.Where(combinedCondition);
- }
- #endregion 查询条件
- // 分组统计,此处多个条件进行统计,p.bad_type, p.op_no
- var groupBy = query.GroupBy(p => new { p.bad_type, p.op_no })
- .Select(g => new
- {
- bad_type = g.Key.bad_type,
- op_no = g.Key.op_no,
- bad_qty = g.Sum(p => p.bad_qty)
- });
- //增加排序条件,此处多个条件,op_no,bad_type
- var test_datas = groupBy.OrderBy(p => p.op_no).ThenBy(p => p.bad_type).ToList();
- //生成临时数据,插入数据库
- List<sqe_chart_data_temp> models = new List<sqe_chart_data_temp>();
- sqe_chart_data_temp model;
- DateTime dateTimeNow = DateTime.Now;
- for (int i = 0; i < test_datas.Count; i++)
- {
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = test_datas[i].bad_type;
- model.type_name = test_datas[i].op_no;
- model.type_value = test_datas[i].bad_qty;
- model.data_time = dateTimeNow;
- models.Add(model);
- }
- _sqe_chart_data_temp.Insert(models);
- ResultViewModel result = ResultHelper.CreateResult(ResultCode.Success, dateTimeNow.Ticks.ToString(), ResultCode.Success, null);
- return JsonConvert.SerializeObject(result);
- }
- catch (Exception ex)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择的数据在统计中出现问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- return null;
- }
- /// <summary>
- /// 统计工序百分比
- /// </summary>
- /// <param name="startDate"></param>
- /// <param name="endDate"></param>
- /// <param name="item_no"></param>
- /// <param name="item_batch"></param>
- /// <param name="org"></param>
- /// <param name="op"></param>
- /// <returns></returns>
- public string Compute_OpChartData_Date(string startDate, string endDate, string item_no, string item_batch, string org, string op)
- {
- try
- {
- #region 查询条件
- // 动态条件
- var conditions = new List<Expression<Func<v_sqe_op_data_detail, bool>>>();
- if (!string.IsNullOrEmpty(startDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(startDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date >= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(endDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(endDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date <= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(item_no))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.item_no == item_no);
- }
- if (!string.IsNullOrEmpty(item_batch))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.batch_no == item_batch);
- }
- if (!string.IsNullOrEmpty(org))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_org == org);
- }
- if (!string.IsNullOrEmpty(op))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.op_no == op);
- }
- // 组合条件
- var combinedCondition = PredicateBuilder.New<v_sqe_op_data_detail>();
- //此处是所有的条件都and。
- foreach (var condition in conditions)
- {
- combinedCondition = combinedCondition.And(condition);
- }
- var query = _v_sqe_op_data_detail.GetDbContext().v_sqe_op_data_detail.AsQueryable();
- // 应用条件
- if (conditions.Count > 0)
- {
- query = query.Where(combinedCondition);
- }
- #endregion 查询条件
- // 分组统计,此处多个条件进行统计,p.bad_type, p.op_no
- var groupBy = query.GroupBy(p => new { p.op_time, p.op_no })
- .Select(g => new
- {
- op_time = g.Key.op_time,
- op_no = g.Key.op_no,
- qty_ok = g.Sum(p => p.qty_ok),
- qty_all = g.Sum(p => p.qty_all),
- percent = g.Sum(p => p.qty_ok) / g.Sum(p => p.qty_all)
- });
- //增加排序条件,此处多个条件,op_no,bad_type
- var test_datas = groupBy.OrderBy(p => p.op_time).ThenBy(p => p.op_no).ToList();
- //生成临时数据,插入数据库
- List<sqe_chart_data_temp> models = new List<sqe_chart_data_temp>();
- sqe_chart_data_temp model;
- DateTime dateTimeNow = DateTime.Now;
- for (int i = 0; i < test_datas.Count; i++)
- {
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = test_datas[i].op_time.Value.ToString("yyyy-MM-dd");
- model.type_name = test_datas[i].op_no;
- model.type_value = test_datas[i].percent;
- model.data_time = dateTimeNow;
- models.Add(model);
- }
- _sqe_chart_data_temp.Insert(models);
- ResultViewModel result = ResultHelper.CreateResult(ResultCode.Success, dateTimeNow.Ticks.ToString(), ResultCode.Success, null);
- return JsonConvert.SerializeObject(result);
- }
- catch (Exception ex)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择的数据在统计中出现问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- return null;
- }
- public string Compute_FpyChartData(string startDate, string endDate, string item_no, string org, string op)
- {
- try
- {
- #region 查询条件
- // 动态条件
- var conditions = new List<Expression<Func<v_sqe_fpy_data, bool>>>();
- if (!string.IsNullOrEmpty(startDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(startDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date >= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(endDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(endDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date <= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(item_no))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.item_no == item_no);
- }
- if (!string.IsNullOrEmpty(org))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_org == org);
- }
- if (!string.IsNullOrEmpty(op))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.op_no == op);
- }
- // 组合条件
- var combinedCondition = PredicateBuilder.New<v_sqe_fpy_data>();
- //此处是所有的条件都and。
- foreach (var condition in conditions)
- {
- combinedCondition = combinedCondition.And(condition);
- }
- var query = _v_sqe_fpy_data.GetDbContext().v_sqe_fpy_data.AsQueryable();
- // 应用条件
- if (conditions.Count > 0)
- {
- query = query.Where(combinedCondition);
- }
- #endregion 查询条件
- // 分组统计,此处多个条件进行统计,p.bad_type, p.op_no
- var groupBy = query.GroupBy(p => new { p.op_no })
- .Select(g => new
- {
- op_no = g.Key.op_no,
- qty_error = g.Sum(p => p.qty_error),
- qty_all = g.Sum(p => p.qty_all),
- });
- //增加排序条件,此处多个条件,op_no,bad_type
- var test_datas = groupBy.OrderBy(p => p.op_no).ToList();
- //生成临时数据,插入数据库
- List<sqe_chart_data_temp> models = new List<sqe_chart_data_temp>();
- sqe_chart_data_temp model;
- DateTime dateTimeNow = DateTime.Now;
- for (int i = 0; i < test_datas.Count; i++)
- {
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "期间投入总数";
- model.type_name = test_datas[i].op_no;
- model.type_value = test_datas[i].qty_all;
- model.data_time = dateTimeNow;
- models.Add(model);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "期间不良总数";
- model.type_name = test_datas[i].op_no;
- model.type_value = test_datas[i].qty_error;
- model.data_time = dateTimeNow;
- models.Add(model);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "良率";
- model.type_name = test_datas[i].op_no;
- model.type_value = (1 - test_datas[i].qty_error / test_datas[i].qty_all);
- model.data_time = dateTimeNow;
- models.Add(model);
- }
- _sqe_chart_data_temp.Insert(models);
- ResultViewModel result = ResultHelper.CreateResult(ResultCode.Success, dateTimeNow.Ticks.ToString(), ResultCode.Success, null);
- return JsonConvert.SerializeObject(result);
- }
- catch (Exception ex)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择的数据在统计中出现问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- return null;
- }
- public string Compute_FpyChartData_Date(string startDate, string endDate, string item_no, string org, string op)
- {
- try
- {
- #region 查询条件
- // 动态条件
- var conditions = new List<Expression<Func<v_sqe_fpy_data, bool>>>();
- if (!string.IsNullOrEmpty(startDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(startDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date >= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(endDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(endDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_date <= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(item_no))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.item_no == item_no);
- }
- if (!string.IsNullOrEmpty(org))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_org == org);
- }
- if (!string.IsNullOrEmpty(op))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.op_no == op);
- }
- // 组合条件
- var combinedCondition = PredicateBuilder.New<v_sqe_fpy_data>();
- //此处是所有的条件都and。
- foreach (var condition in conditions)
- {
- combinedCondition = combinedCondition.And(condition);
- }
- var query = _v_sqe_fpy_data.GetDbContext().v_sqe_fpy_data.AsQueryable();
- // 应用条件
- if (conditions.Count > 0)
- {
- query = query.Where(combinedCondition);
- }
- #endregion 查询条件
- // 分组统计,此处多个条件进行统计,p.bad_type, p.op_no
- var groupBy = query.GroupBy(p => new { p.op_time })
- .Select(g => new
- {
- op_time = g.Key.op_time,
- qty_error = g.Sum(p => p.qty_error),
- qty_all = g.Sum(p => p.qty_all)
- });
- //增加排序条件,此处多个条件,op_no,bad_type
- var test_datas = groupBy.OrderBy(p => p.op_time).ToList();
- //生成临时数据,插入数据库
- List<sqe_chart_data_temp> models = new List<sqe_chart_data_temp>();
- sqe_chart_data_temp model;
- DateTime dateTimeNow = DateTime.Now;
- for (int i = 0; i < test_datas.Count; i++)
- {
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = test_datas[i].op_time.Value.ToString("MM-dd");
- model.type_name = "走势图";
- model.type_value = (1 - test_datas[i].qty_error / test_datas[i].qty_all);
- model.data_time = dateTimeNow;
- models.Add(model);
- }
- _sqe_chart_data_temp.Insert(models);
- ResultViewModel result = ResultHelper.CreateResult(ResultCode.Success, dateTimeNow.Ticks.ToString(), ResultCode.Success, null);
- return JsonConvert.SerializeObject(result);
- }
- catch (Exception ex)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择的数据在统计中出现问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- return null;
- }
- /// <summary>
- /// 已经查询条件,统计Oqc数据
- /// </summary>
- /// <param name="startDate"></param>
- /// <param name="endDate"></param>
- /// <param name="item_no"></param>
- /// <param name="org"></param>
- /// <returns></returns>
- public string Compute_OqcChartData(string startDate, string endDate, string item_no, string org)
- {
- try
- {
- //增加排序条件,此处多个条件,op_no,bad_type
- var test_datas = Get_OqcData(startDate, endDate, item_no, org, null);
- //生成临时数据,插入数据库
- List<sqe_chart_data_temp> models = new List<sqe_chart_data_temp>();
- sqe_chart_data_temp model;
- DateTime dateTimeNow = DateTime.Now;
- //生成临时数据,插入数据库
- sqe_oqc_statistics modelStatistics;
- string standard_no = "";
- for (int i = 0; i < test_datas.Count;)
- {
- standard_no = test_datas[i].standard_no;
- if (standard_no == null)
- {
- i++;
- continue;
- }
- List<Double> dataList = new List<double>();
- int j = i;
- for (; j < test_datas.Count; j++)
- {
- if (standard_no.CompareTo(test_datas[j].standard_no) == 0)
- {
- dataList.Add((double)test_datas[j].data_value);
- }
- else
- {
- break;
- }
- }
- Double[] datas = dataList.ToArray();
- modelStatistics = new sqe_oqc_statistics();
- try
- {
- modelStatistics.standard_no = standard_no;
- modelStatistics.value_avg = (decimal)datas.Average();
- modelStatistics.value_std_range = (decimal)datas.StandardDeviation();
- if (modelStatistics.value_std_range != 0)
- {
- modelStatistics.value_pp = (test_datas[i].standard_max - test_datas[i].standard_min) / modelStatistics.value_std_range;
- if (modelStatistics.value_pp > 100000)
- {
- modelStatistics.value_pp = 100000;
- }
- }
- else
- {
- i = j;
- continue;
- }
- //=MIN((B10-Q53)/(3*R53),(Q53-B11)/(3*R53))
- decimal d1, d2;
- d1 = (test_datas[i].standard_max - modelStatistics.value_avg) / 3 * modelStatistics.value_std_range;
- d2 = (modelStatistics.value_avg - test_datas[i].standard_min) / 3 * modelStatistics.value_std_range;
- modelStatistics.value_ppk = d1 > d2 ? d2 : d1;
- modelStatistics.value_max = (decimal)datas.Max();
- modelStatistics.value_min = (decimal)datas.Min();
- modelStatistics.value_range = modelStatistics.value_max - modelStatistics.value_min;
- }
- catch (Exception ex)
- {
- i = j;
- continue;
- }
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "均值";
- model.type_name = standard_no;
- model.type_value = modelStatistics.value_avg;
- model.data_time = dateTimeNow;
- models.Add(model);
- Console.WriteLine(model.type_value);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "西格玛(标准差)";
- model.type_name = standard_no;
- model.type_value = modelStatistics.value_std_range;
- model.data_time = dateTimeNow;
- models.Add(model);
- Console.WriteLine(model.type_value);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "PP";
- model.type_name = standard_no;
- model.type_value = modelStatistics.value_pp;
- model.data_time = dateTimeNow;
- models.Add(model);
- Console.WriteLine(model.type_value);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "PPK";
- model.type_name = standard_no;
- model.type_value = modelStatistics.value_ppk;
- model.data_time = dateTimeNow;
- models.Add(model);
- Console.WriteLine(model.type_value);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "Max";
- model.type_name = standard_no;
- model.type_value = modelStatistics.value_max;
- model.data_time = dateTimeNow;
- models.Add(model);
- Console.WriteLine(model.type_value);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "Min";
- model.type_name = standard_no;
- model.type_value = modelStatistics.value_min;
- model.data_time = dateTimeNow;
- models.Add(model);
- Console.WriteLine(model.type_value);
- model = new sqe_chart_data_temp();
- model.data_id = dateTimeNow.Ticks;
- model.sub_group = "极差(Max-Min)";
- model.type_name = standard_no;
- model.type_value = modelStatistics.value_range;
- model.data_time = dateTimeNow;
- models.Add(model);
- Console.WriteLine(model.type_value);
- i = j;
- }
- _sqe_chart_data_temp.Insert(models);
- ResultViewModel result = ResultHelper.CreateResult(ResultCode.Success, dateTimeNow.Ticks.ToString(), ResultCode.Success, null);
- return JsonConvert.SerializeObject(result);
- }
- catch (Exception ex)
- {
- ResultViewModel resultError = ResultHelper.CreateResult(ResultCode.BusinessError, "您选择的数据在统计中出现问题,请核对之后再进行操作!", ResultCode.BusinessError, null);
- return JsonConvert.SerializeObject(resultError);
- }
- return null;
- }
- /// <summary>
- /// 查询Oqc的数据信息
- /// </summary>
- /// <param name="startDate"></param>
- /// <param name="endDate"></param>
- /// <param name="item_no"></param>
- /// <param name="org"></param>
- /// <param name="standard_no"></param>
- /// <returns></returns>
- public List<v_sqe_oqc_data> Get_OqcData(string startDate, string endDate, string item_no, string org, string standard_no)
- {
- try
- {
- #region 查询条件
- // 动态条件
- var conditions = new List<Expression<Func<v_sqe_oqc_data, bool>>>();
- if (!string.IsNullOrEmpty(startDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(startDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.product_time >= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(endDate))
- {
- DateTime dateTime;
- if (DateTime.TryParse(endDate, out dateTime))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.product_time <= dateTime);
- }
- }
- if (!string.IsNullOrEmpty(item_no))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.item_no == item_no);
- }
- if (!string.IsNullOrEmpty(org))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.create_org == org);
- }
- if (!string.IsNullOrEmpty(standard_no))
- {
- // 添加条件1:Name 包含 "searchTerm"
- conditions.Add(p => p.standard_no == standard_no);
- }
- // 组合条件
- var combinedCondition = PredicateBuilder.New<v_sqe_oqc_data>();
- //此处是所有的条件都and。
- foreach (var condition in conditions)
- {
- combinedCondition = combinedCondition.And(condition);
- }
- var query = _v_sqe_oqc_data.GetDbContext().v_sqe_oqc_data.AsQueryable();
- // 应用条件
- if (conditions.Count > 0)
- {
- query = query.Where(combinedCondition);
- }
- #endregion 查询条件
- //增加排序条件,此处多个条件,op_no,bad_type
- var test_datas = query.OrderBy(p => p.standard_no).DefaultIfEmpty().ToList();
- return test_datas;
- }
- catch (Exception ex)
- {
- }
- return null;
- }
- }
- }
|