123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMABC00300" position="absolute 0 0 1200 791" titletext="조혈모세포보관 및 해동 Result입력" oninit="SMABC00300_oninit" onload="SMABC00300_onload">
- <Layouts>
- <Layout>
- <Static id="caption19" text="조혈모세포보관 및 해동 Result 입력" class="tit_1" position="absolute 0 0 300 23"/>
- <Button id="button9" taborder="1" text="보관위치" class="btn3" position="absolute 0 26 80 48" onclick="button9_onclick"/>
- <Button id="button1" taborder="2" text="폐기현황" class="btn3" position="absolute 83 26 167 48" onclick="button1_onclick"/>
- <Button id="btn_sea" taborder="3" text="조회" class="btn4" position="absolute 1008 26 1064 48" anchor="top right" onclick="btn_sea_onclick"/>
- <Button id="btn_save" taborder="4" text="저장" class="btn4" enable="false" position="absolute 1068 26 1124 48" anchor="top right" onclick="btn_save_onclick"/>
- <Button id="btn_cle" taborder="5" text="초기화" class="btn4" position="absolute 1126 26 1194 48" anchor="top right" onclick="btn_cle_onclick"/>
- <Static id="caption2" text="보관 및 처방내역" class="tit_2" position="absolute 0 131 136 152"/>
- <Shape id="line6" class="line_10" position="absolute 0 147 1194 153" anchor="left top right"/>
- <Grid id="grd_detail" class="datagrid2" taborder="6" binddataset="ds_main_cellresultinfo_detailinfo" useinputpanel="false" position="absolute 0 152 1194 287" anchor="left top right" cellsizingtype="col" oncelldblclick="grd_detail_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="23"/>
- <Column size="98"/>
- <Column size="43"/>
- <Column size="100"/>
- <Column size="92"/>
- <Column size="81"/>
- <Column size="70"/>
- <Column size="58"/>
- <Column size="71"/>
- <Column size="63"/>
- <Column size="95"/>
- <Column size="62"/>
- <Column size="95"/>
- <Column size="57"/>
- <Column size="78"/>
- <Column size="61"/>
- <Column size="75"/>
- <Column size="81"/>
- <Column size="81"/>
- <Column size="83"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="79"/>
- <Column size="87"/>
- <Column size="100"/>
- <Column size="76"/>
- <Column size="83"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="76"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="34"/>
- <Column size="70"/>
- <Column size="41"/>
- <Column size="34"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="33" band="head"/>
- <Row size="24"/>
- <Row size="24" band="summ"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="바코드번호"/>
- <Cell col="2" text="상태"/>
- <Cell col="3" text="보관일자"/>
- <Cell col="4" text="적용일자"/>
- <Cell col="5" text="Stem Cell Source"/>
- <Cell col="6" text="보관 Bag수"/>
- <Cell col="7" text="체중(㎏)"/>
- <Cell col="8" text="처방 Bag수"/>
- <Cell col="9" text="TNC (10^8)"/>
- <Cell col="10" text="TNC (10^8/㎏)"/>
- <Cell col="11" text="MNC (10^8)"/>
- <Cell col="12" text="MNC (10^8/㎏)"/>
- <Cell col="13" text="Lympo (10^8)"/>
- <Cell col="14" text="Lympo (10^8/kg)"/>
- <Cell col="15" text="CD34(%)"/>
- <Cell col="16" text="CD34+ (10^6)"/>
- <Cell col="17" text="CD34+ (10^6/㎏)"/>
- <Cell col="18" text="CD3(%)"/>
- <Cell col="19" text="CD3+(10^6)"/>
- <Cell col="20" text="CD3+(10^6/㎏)"/>
- <Cell col="21" text="CD4(%)"/>
- <Cell col="22" text="CD4(10^6)"/>
- <Cell col="23" text="CD4(10^6/㎏)"/>
- <Cell col="24" text="CD8(%)"/>
- <Cell col="25" text="CD8(10^6)"/>
- <Cell col="26" text="CD8(10^6/㎏)"/>
- <Cell col="27" text="CD19(%)"/>
- <Cell col="28" text="CD19(10^6)"/>
- <Cell col="29" text="CD19(10^6/㎏)"/>
- <Cell col="30" text="NK+(%)"/>
- <Cell col="31" text="NK+(10^6)"/>
- <Cell col="32" text="NK+(10^6/㎏)"/>
- <Cell col="33" text="TNK+(%)"/>
- <Cell col="34" text="TNK+(10^6)"/>
- <Cell col="35" text="TNK+(10^6/㎏)"/>
- <Cell col="36" text="nRBC(10^8)"/>
- <Cell col="37" text="Purity(%)"/>
- <Cell col="38" text="Yield(%)"/>
- <Cell col="39" text="Viability(%)"/>
- <Cell col="40" text="처방일자"/>
- <Cell col="41" text="prcpdd"/>
- <Cell col="42" text="caption2"/>
- <Cell col="43" text="caption3"/>
- <Cell col="44" text="caption4"/>
- <Cell col="45" text="caption5"/>
- <Cell col="46" text="Tank"/>
- <Cell col="47" text="Sess"/>
- <Cell col="48" text="Frame"/>
- <Cell col="49" text="Pos"/>
- <Cell col="50" text="caption9"/>
- <Cell col="51" text="caption10"/>
- <Cell col="52" text="caption11"/>
- <Cell col="53" text="caption1"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:cellbcno"/>
- <Cell col="2" displaytype="combo" edittype="combo" text="bind:status" combodataset="ds_cmb_status" combocodecol="value" combodatacol="label" enable="false"/>
- <Cell col="3" displaytype="date" text="bind:cellprcpdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="4" displaytype="date" text="bind:prcphopedd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="5" displaytype="combo" edittype="combo" text="bind:scs" combodataset="ds_init_cmbinfo_stemcellsource_A0159" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="6" text="bind:bbagcnt"/>
- <Cell col="7" text="bind:bdwt"/>
- <Cell col="8" text="bind:cbagcnt"/>
- <Cell col="9" text="bind:tncqty"/>
- <Cell col="10" text="bind:tnckgqty"/>
- <Cell col="11" text="bind:mncqty"/>
- <Cell col="12" text="bind:mnckgqty"/>
- <Cell col="13" text="bind:lympoqty"/>
- <Cell col="14" text="bind:lympokgqty"/>
- <Cell col="15" text="bind:cd34per"/>
- <Cell col="16" text="bind:cd34qty"/>
- <Cell col="17" text="bind:cd34kgqty"/>
- <Cell col="18" text="bind:cd3per"/>
- <Cell col="19" text="bind:cd3qty"/>
- <Cell col="20" text="bind:cd3kgqty"/>
- <Cell col="21" text="bind:cd4per"/>
- <Cell col="22" text="bind:cd4qty"/>
- <Cell col="23" text="bind:cd4kgqty"/>
- <Cell col="24" text="bind:cd8per"/>
- <Cell col="25" text="bind:cd8qty"/>
- <Cell col="26" text="bind:cd8kgqty"/>
- <Cell col="27" text="bind:cd19per"/>
- <Cell col="28" text="bind:cd19qty"/>
- <Cell col="29" text="bind:cd19kgqty"/>
- <Cell col="30" text="bind:nkper"/>
- <Cell col="31" text="bind:nkqty"/>
- <Cell col="32" text="bind:nkkgqty"/>
- <Cell col="33" text="bind:nktper"/>
- <Cell col="34" text="bind:nktqty"/>
- <Cell col="35" text="bind:nktkgqty"/>
- <Cell col="36" text="bind:nrbcqty"/>
- <Cell col="37" text="bind:purityper"/>
- <Cell col="38" text="bind:yieldper"/>
- <Cell col="39" text="bind:viabper"/>
- <Cell col="40" displaytype="date" text="bind:fstrgstdt" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="41" text="bind:prcpdd" mask="yyyy-mm-dd"/>
- <Cell col="42" text="bind:execprcpuniqno"/>
- <Cell col="43" text="bind:tretvol"/>
- <Cell col="44" text="bind:infsvol"/>
- <Cell col="45" text="bind:cellhct"/>
- <Cell col="46" text="bind:tankflag"/>
- <Cell col="47" displaytype="combo" edittype="combo" text="bind:sesnflag" combodataset="ds_init_cmbinfo_sesnflag_A0395" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="48" text="bind:frameflag"/>
- <Cell col="49" text="bind:keeppos"/>
- <Cell col="50" text="bind:keepdd"/>
- <Cell col="51" text="bind:cellprcpdd"/>
- <Cell col="52" text="bind:addseqno"/>
- <Cell col="53" text="bind:pid"/>
- </Band>
- <Band id="summary">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6" text="total"/>
- <Cell col="7"/>
- <Cell col="8" displaytype="number" text="expr:getSum('cbagcnt')"/>
- <Cell col="9" displaytype="number" text="expr:getSum('tncqty')"/>
- <Cell col="10" displaytype="number" text="expr:getSum('tnckgqty')"/>
- <Cell col="11" displaytype="number" text="expr:getSum('mncqty')"/>
- <Cell col="12" displaytype="number" text="expr:getSum('mnckgqty')"/>
- <Cell col="13" displaytype="number" text="expr:getSum('lympoqty')"/>
- <Cell col="14" displaytype="number" text="expr:getSum('lympokgqty')"/>
- <Cell col="15"/>
- <Cell col="16" displaytype="number" text="expr:getSum('cd34qty')"/>
- <Cell col="17" displaytype="number" text="expr:getSum('cd34kgqty')"/>
- <Cell col="18"/>
- <Cell col="19" displaytype="number" text="expr:getSum('cd3qty')"/>
- <Cell col="20" displaytype="number" text="expr:getSum('cd3kgqty')"/>
- <Cell col="21"/>
- <Cell col="22" displaytype="number" text="expr:getSum('cd4qty')"/>
- <Cell col="23" displaytype="number" text="expr:getSum('cd4kgqty')"/>
- <Cell col="24"/>
- <Cell col="25" displaytype="number" text="expr:getSum('cd8qty')"/>
- <Cell col="26" displaytype="number" text="expr:getSum('cd8kgqty')"/>
- <Cell col="27"/>
- <Cell col="28" displaytype="number" text="expr:getSum('cd19qty')"/>
- <Cell col="29" displaytype="number" text="expr:getSum('cd19kgqty')"/>
- <Cell col="30"/>
- <Cell col="31" displaytype="number" text="expr:getSum('nkqty')"/>
- <Cell col="32" displaytype="number" text="expr:getSum('nkkgqty')"/>
- <Cell col="33"/>
- <Cell col="34" displaytype="number" text="expr:getSum('nktqty')"/>
- <Cell col="35" displaytype="number" text="expr:getSum('nktkgqty')"/>
- <Cell col="36" displaytype="number" text="expr:getSum('nrbcqty')"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42"/>
- <Cell col="43"/>
- <Cell col="44"/>
- <Cell col="45"/>
- <Cell col="46"/>
- <Cell col="47"/>
- <Cell col="48"/>
- <Cell col="49"/>
- <Cell col="50"/>
- <Cell col="51"/>
- <Cell col="52"/>
- <Cell col="53"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape id="line1" class="line_10" position="absolute 0 311 1194 317" anchor="left top right"/>
- <Static id="caption6" text="세포주입 Result" class="tit_2" position="absolute 0 295 128 316"/>
- <Grid id="grd_infs" class="datagrid2" taborder="7" binddataset="ds_main_cellresultinfo_infsinfo" useinputpanel="false" position="absolute 0 344 1194 464" anchor="left top right" cellsizingtype="col" oncelldblclick="grd_infs_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="26"/>
- <Column size="98"/>
- <Column size="84"/>
- <Column size="84"/>
- <Column size="84"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="72"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="78"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="72"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="77"/>
- <Column size="81"/>
- <Column size="81"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="36"/>
- <Column size="36"/>
- <Column size="41"/>
- <Column size="34"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="30" band="head"/>
- <Row size="24"/>
- <Row size="24" band="summ"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="바코드번호"/>
- <Cell col="2" text="주입일자"/>
- <Cell col="3" text="보관일자"/>
- <Cell col="4" text="Stem Cell Source"/>
- <Cell col="5" text="해동 Bag수"/>
- <Cell col="6" text="체중 (㎏)"/>
- <Cell col="7" text="TNC (10^8)"/>
- <Cell col="8" text="TNC (10^8/㎏)"/>
- <Cell col="9" text="MNC (10^8)"/>
- <Cell col="10" text="MNC (10^8/㎏)"/>
- <Cell col="11" text="Lympo (10^8)"/>
- <Cell col="12" text="Lympo (10^8/kg)"/>
- <Cell col="13" text="CD34 (%)"/>
- <Cell col="14" text="CD34+ (10^6)"/>
- <Cell col="15" text="CD34+ (10^6/㎏)"/>
- <Cell col="16" text="CD3 (%)"/>
- <Cell col="17" text="CD3+ (10^6)"/>
- <Cell col="18" text="CD3+ (10^6/㎏)"/>
- <Cell col="19" text="CD4(%)"/>
- <Cell col="20" text="CD4(10^6)"/>
- <Cell col="21" text="CD4(10^6/㎏)"/>
- <Cell col="22" text="CD8(%)"/>
- <Cell col="23" text="CD8(10^6)"/>
- <Cell col="24" text="CD8(10^6/㎏)"/>
- <Cell col="25" text="CD19(%)"/>
- <Cell col="26" text="CD19(10^6)"/>
- <Cell col="27" text="CD19(10^6/㎏)"/>
- <Cell col="28" text="NK+ (%)"/>
- <Cell col="29" text="NK+ (10^6)"/>
- <Cell col="30" text="NK+ (10^6/㎏)"/>
- <Cell col="31" text="TNK+ (%)"/>
- <Cell col="32" text="TNK+ (10^6)"/>
- <Cell col="33" text="TNK+ (10^6/㎏)"/>
- <Cell col="34" text="nRBC(10^8)"/>
- <Cell col="35" text="Purity (%)"/>
- <Cell col="36" text="Yield (%)"/>
- <Cell col="37" text="Viability(%)"/>
- <Cell col="38" text="적용일자"/>
- <Cell col="39" text="처방일자"/>
- <Cell col="40" text="caption1"/>
- <Cell col="41" text="caption2"/>
- <Cell col="42" text="caption4"/>
- <Cell col="43" text="caption5"/>
- <Cell col="44" text="caption6"/>
- <Cell col="45" text="caption7"/>
- <Cell col="46" text="caption8"/>
- <Cell col="47" text="Tank"/>
- <Cell col="48" text="Sess"/>
- <Cell col="49" text="Frame"/>
- <Cell col="50" text="Pos"/>
- <Cell col="51" text="caption12"/>
- <Cell col="52" text="caption13"/>
- <Cell col="53" text="caption15"/>
- <Cell col="54" text="caption3"/>
- <Cell col="55" text="cell34vol"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:cellbcno"/>
- <Cell col="2" displaytype="date" text="bind:infsdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="3" displaytype="date" text="bind:cellprcpdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="4" displaytype="combo" edittype="combo" text="bind:scs" enable="false"/>
- <Cell col="5" text="bind:infsbagqty"/>
- <Cell col="6" displaytype="text" edittype="text" text="bind:bdwt"/>
- <Cell col="7" text="bind:tncqty"/>
- <Cell col="8" text="bind:tnckgqty"/>
- <Cell col="9" text="bind:mncqty"/>
- <Cell col="10" text="bind:mnckgqty"/>
- <Cell col="11" text="bind:lympoqty"/>
- <Cell col="12" text="bind:lympokgqty"/>
- <Cell col="13" text="bind:cd34per"/>
- <Cell col="14" text="bind:cd34qty"/>
- <Cell col="15" text="bind:cd34kgqty"/>
- <Cell col="16" text="bind:cd3per"/>
- <Cell col="17" text="bind:cd3qty"/>
- <Cell col="18" text="bind:cd3kgqty"/>
- <Cell col="19" text="bind:cd4per"/>
- <Cell col="20" text="bind:cd4qty"/>
- <Cell col="21" text="bind:cd4kgqty"/>
- <Cell col="22" text="bind:cd8per"/>
- <Cell col="23" text="bind:cd8qty"/>
- <Cell col="24" text="bind:cd8kgqty"/>
- <Cell col="25" text="bind:cd19per"/>
- <Cell col="26" text="bind:cd19qty"/>
- <Cell col="27" text="bind:cd19kgqty"/>
- <Cell col="28" text="bind:nkper"/>
- <Cell col="29" text="bind:nkqty"/>
- <Cell col="30" text="bind:nkkgqty"/>
- <Cell col="31" text="bind:nktper"/>
- <Cell col="32" text="bind:nktqty"/>
- <Cell col="33" text="bind:nktkgqty"/>
- <Cell col="34" text="bind:nrbcqty"/>
- <Cell col="35" text="bind:purityper"/>
- <Cell col="36" text="bind:yieldper"/>
- <Cell col="37" displaytype="text" edittype="text" text="bind:viabper"/>
- <Cell col="38" displaytype="date" text="bind:prcphopedd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="39" displaytype="date" text="bind:fstrgstdt" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="40" text="bind:prcpdd"/>
- <Cell col="41" text="bind:execprcpuniqno"/>
- <Cell col="42" text="bind:abnyn"/>
- <Cell col="43" text="bind:cellvol"/>
- <Cell col="44" text="bind:tretvol"/>
- <Cell col="45" text="bind:infsvol"/>
- <Cell col="46" text="bind:cellhct"/>
- <Cell col="47" text="bind:tankflag"/>
- <Cell col="48" text="bind:sesnflag"/>
- <Cell col="49" text="bind:frameflag"/>
- <Cell col="50" text="bind:keeppos"/>
- <Cell col="51" text="bind:keepdd"/>
- <Cell col="52" text="bind:pid"/>
- <Cell col="53" text="bind:addseqno"/>
- <Cell col="54" text="bind:keepflag"/>
- <Cell col="55" text="bind:cell34vol"/>
- </Band>
- <Band id="summary">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5" text="total"/>
- <Cell col="6"/>
- <Cell col="7" displaytype="number" text="expr:getSum('tncqty')"/>
- <Cell col="8" displaytype="number" text="expr:getSum('tnckgqty')"/>
- <Cell col="9" displaytype="number" text="expr:getSum('mncqty')"/>
- <Cell col="10" displaytype="number" text="expr:getSum('mnckgqty')"/>
- <Cell col="11" displaytype="number" text="expr:getSum('lympoqty')"/>
- <Cell col="12" displaytype="number" text="expr:getSum('lympokgqty')"/>
- <Cell col="13"/>
- <Cell col="14" displaytype="number" text="expr:getSum('cd34qty')"/>
- <Cell col="15" displaytype="number" text="expr:getSum('cd34kgqty')"/>
- <Cell col="16"/>
- <Cell col="17" displaytype="number" text="expr:getSum('cd3qty')"/>
- <Cell col="18" displaytype="number" text="expr:getSum('cd3kgqty')"/>
- <Cell col="19"/>
- <Cell col="20" displaytype="number" text="expr:getSum('cd4qty')"/>
- <Cell col="21" displaytype="number" text="expr:getSum('cd4kgqty')"/>
- <Cell col="22"/>
- <Cell col="23" displaytype="number" text="expr:getSum('cd8qty')"/>
- <Cell col="24" displaytype="number" text="expr:getSum('cd8kgqty')"/>
- <Cell col="25"/>
- <Cell col="26" displaytype="number" text="expr:getSum('cd19qty')"/>
- <Cell col="27" displaytype="number" text="expr:getSum('cd19kgqty')"/>
- <Cell col="28"/>
- <Cell col="29" displaytype="number" text="expr:getSum('nkqty')"/>
- <Cell col="30" displaytype="number" text="expr:getSum('nkkgqty')"/>
- <Cell col="31"/>
- <Cell col="32" displaytype="number" text="expr:getSum('nktqty')"/>
- <Cell col="33" displaytype="number" text="expr:getSum('nktkgqty')"/>
- <Cell col="34" displaytype="number" text="expr:getSum('nrbcqty')"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42"/>
- <Cell col="43"/>
- <Cell col="44"/>
- <Cell col="45"/>
- <Cell col="46"/>
- <Cell col="47"/>
- <Cell col="48"/>
- <Cell col="49"/>
- <Cell col="50"/>
- <Cell col="51"/>
- <Cell col="52"/>
- <Cell col="53"/>
- <Cell col="54"/>
- <Cell col="55"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape id="line3" class="line_10" position="absolute 0 639 1194 645" anchor="left top right"/>
- <Static id="caption8" text="남아있는 Cell수" class="tit_2" position="absolute 0 623 128 644"/>
- <Static id="caption33" text="해동일자" class="cell_1" position="absolute 0 316 120 339"/>
- <Calendar id="input4" taborder="8" class="input_default" position="absolute 123 317 243 336" dateformat="yyyy-MM-dd" value="null" autoselect="true"/>
- <Combo id="combo1" taborder="9" innerdataset="ds_init_combo1" codecolumn="cdid" datacolumn="cdnm" class="combo_default" position="absolute 145 471 345 490"/>
- <Shape id="line4" class="line_3" position="absolute 0 338 1194 344" anchor="left top right"/>
- <Shape id="line5" class="line_10" position="absolute 0 491 1194 497" anchor="left top right"/>
- <Static id="caption5" text="세포폐기 Result" class="tit_2" position="absolute 0 475 120 496"/>
- <Static id="caption9" text="환자정보" class="tit_2" position="absolute 0 54 85 75"/>
- <Shape id="line7" class="line_10" position="absolute 0 70 1194 76" anchor="left top right"/>
- <Button id="button2" taborder="10" class="icon_search" position="absolute 196 77 212 93" onclick="button2_onclick"/>
- <Edit id="output1" taborder="11" readonly="true" position="absolute 319 100 586 119"/>
- <Edit id="output6" taborder="12" readonly="true" position="absolute 548 76 587 95"/>
- <Edit id="output7" taborder="13" readonly="true" position="absolute 515 76 544 95"/>
- <Edit id="output3" taborder="14" readonly="true" position="absolute 319 76 399 95"/>
- <Edit id="output11" taborder="15" readonly="true" position="absolute 692 76 802 95"/>
- <Shape id="line8" linetype="vertical" class="line_2" position="absolute 0 94 1194 100"/>
- <Grid id="grd_abn" class="datagrid2" taborder="16" binddataset="ds_main_cellresultinfo_abninfo" useinputpanel="false" position="absolute 0 496 1194 616" anchor="left top right" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="23"/>
- <Column size="98"/>
- <Column size="84"/>
- <Column size="0"/>
- <Column size="81"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="78"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="83"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="36"/>
- <Column size="36"/>
- <Column size="41"/>
- <Column size="34"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="32" band="head"/>
- <Row size="24"/>
- <Row size="24" band="summ"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="바코드번호"/>
- <Cell col="2" text="폐기일자"/>
- <Cell col="3" text="적용일자"/>
- <Cell col="4" text="Stem Cell Source"/>
- <Cell col="5" text="폐기 Bag수"/>
- <Cell col="6" text="체중 (㎏)"/>
- <Cell col="7" text="TNC (10^8)"/>
- <Cell col="8" text="TNC (10^8/㎏)"/>
- <Cell col="9" text="MNC (10^8)"/>
- <Cell col="10" text="MNC (10^8/㎏)"/>
- <Cell col="11" text="Lympo (10^8)"/>
- <Cell col="12" text="Lympo (10^8/kg)"/>
- <Cell col="13" text="CD34 (%)"/>
- <Cell col="14" text="CD34+ (10^6)"/>
- <Cell col="15" text="CD34+ (10^6/㎏)"/>
- <Cell col="16" text="CD3 (%)"/>
- <Cell col="17" text="CD3+ (10^6)"/>
- <Cell col="18" text="CD3+ (10^6/㎏)"/>
- <Cell col="19" text="CD4(%)"/>
- <Cell col="20" text="CD4(10^6)"/>
- <Cell col="21" text="CD4(10^6/㎏)"/>
- <Cell col="22" text="CD8(%)"/>
- <Cell col="23" text="CD8(10^6)"/>
- <Cell col="24" text="CD8(10^6/㎏)"/>
- <Cell col="25" text="CD19(%)"/>
- <Cell col="26" text="CD19(10^6)"/>
- <Cell col="27" text="CD19(10^6/㎏)"/>
- <Cell col="28" text="NK+ (%)"/>
- <Cell col="29" text="NK+ (10^6)"/>
- <Cell col="30" text="NK+ (10^6/㎏)"/>
- <Cell col="31" text="TNK+ (%)"/>
- <Cell col="32" text="TNK+ (10^6)"/>
- <Cell col="33" text="TNK+ (10^6/㎏)"/>
- <Cell col="34" text="nRBC(10^8)"/>
- <Cell col="35" text="Purity (%)"/>
- <Cell col="36" text="Yield (%)"/>
- <Cell col="37" text="Viability(%)"/>
- <Cell col="38" text="caption1"/>
- <Cell col="39" text="caption2"/>
- <Cell col="40" text="caption4"/>
- <Cell col="41" text="caption5"/>
- <Cell col="42" text="caption6"/>
- <Cell col="43" text="caption7"/>
- <Cell col="44" text="Tank"/>
- <Cell col="45" text="Sess"/>
- <Cell col="46" text="Frame"/>
- <Cell col="47" text="Pos"/>
- <Cell col="48" text="caption11"/>
- <Cell col="49" text="caption12"/>
- <Cell col="50" text="caption13"/>
- <Cell col="51" text="caption14"/>
- <Cell col="52" text="caption3"/>
- <Cell col="53" text="caption8"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:cellbcno"/>
- <Cell col="2" displaytype="date" text="bind:abndd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="3" text="bind:prcphopedd" mask="yyyy-mm-dd"/>
- <Cell col="4" displaytype="combo" edittype="combo" text="bind:scs" combodataset="ds_init_cmbinfo_stemcellsource_A0159" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="5" text="bind:abnbagqty"/>
- <Cell col="6" text="bind:bdwt"/>
- <Cell col="7" text="bind:tncqty"/>
- <Cell col="8" text="bind:tnckgqty"/>
- <Cell col="9" text="bind:mncqty"/>
- <Cell col="10" text="bind:mnckgqty"/>
- <Cell col="11" text="bind:lympoqty"/>
- <Cell col="12" text="bind:lympokgqty"/>
- <Cell col="13" text="bind:cd34per"/>
- <Cell col="14" text="bind:cd34qty"/>
- <Cell col="15" text="bind:cd34kgqty"/>
- <Cell col="16" text="bind:cd3per"/>
- <Cell col="17" text="bind:cd3qty"/>
- <Cell col="18" text="bind:cd3kgqty"/>
- <Cell col="19" text="bind:cd4per"/>
- <Cell col="20" text="bind:cd4qty"/>
- <Cell col="21" text="bind:cd4kgqty"/>
- <Cell col="22" text="bind:cd8per"/>
- <Cell col="23" text="bind:cd8qty"/>
- <Cell col="24" text="bind:cd8kgqty"/>
- <Cell col="25" text="bind:cd19per"/>
- <Cell col="26" text="bind:cd19qty"/>
- <Cell col="27" text="bind:cd19kgqty"/>
- <Cell col="28" text="bind:nkper"/>
- <Cell col="29" text="bind:nkqty"/>
- <Cell col="30" text="bind:nkkgqty"/>
- <Cell col="31" text="bind:nktper"/>
- <Cell col="32" text="bind:nktqty"/>
- <Cell col="33" text="bind:nktkgqty"/>
- <Cell col="34" text="bind:nrbcqty"/>
- <Cell col="35" text="bind:purityper"/>
- <Cell col="36" text="bind:yieldper"/>
- <Cell col="37" text="bind:viabper"/>
- <Cell col="38" text="bind:prcpdd"/>
- <Cell col="39" text="bind:execprcpuniqno"/>
- <Cell col="40" text="bind:abnresn"/>
- <Cell col="41" text="bind:tretvol"/>
- <Cell col="42" text="bind:infsvol"/>
- <Cell col="43" text="bind:cellhct"/>
- <Cell col="44" text="bind:tankflag"/>
- <Cell col="45" text="bind:sesnflag"/>
- <Cell col="46" text="bind:frameflag"/>
- <Cell col="47" text="bind:keeppos"/>
- <Cell col="48" text="bind:keepdd"/>
- <Cell col="49" text="bind:pid"/>
- <Cell col="50" text="bind:cellprcpdd"/>
- <Cell col="51" text="bind:addseqno"/>
- <Cell col="52" text="bind:keepflag"/>
- <Cell col="53" text="bind:cellvolcheckyn"/>
- </Band>
- <Band id="summary">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5" text="total"/>
- <Cell col="6"/>
- <Cell col="7" displaytype="number" text="expr:getSum('tncqty')"/>
- <Cell col="8" displaytype="number" text="expr:getSum('tnckgqty')"/>
- <Cell col="9" displaytype="number" text="expr:getSum('mncqty')"/>
- <Cell col="10" displaytype="number" text="expr:getSum('mnckgqty')"/>
- <Cell col="11" displaytype="number" text="expr:getSum('lympoqty')"/>
- <Cell col="12" displaytype="number" text="expr:getSum('lympokgqty')"/>
- <Cell col="13"/>
- <Cell col="14" displaytype="number" text="expr:getSum('cd34qty')"/>
- <Cell col="15" displaytype="number" text="expr:getSum('cd34kgqty')"/>
- <Cell col="16"/>
- <Cell col="17" displaytype="number" text="expr:getSum('cd3qty')"/>
- <Cell col="18" displaytype="number" text="expr:getSum('cd3kgqty')"/>
- <Cell col="19"/>
- <Cell col="20" displaytype="number" text="expr:getSum('cd4qty')"/>
- <Cell col="21" displaytype="number" text="expr:getSum('cd4kgqty')"/>
- <Cell col="22"/>
- <Cell col="23" displaytype="number" text="expr:getSum('cd8qty')"/>
- <Cell col="24" displaytype="number" text="expr:getSum('cd8kgqty')"/>
- <Cell col="25"/>
- <Cell col="26" displaytype="number" text="expr:getSum('cd19qty')"/>
- <Cell col="27" displaytype="number" text="expr:getSum('cd19kgqty')"/>
- <Cell col="28"/>
- <Cell col="29" displaytype="number" text="expr:getSum('nkqty')"/>
- <Cell col="30" displaytype="number" text="expr:getSum('nkkgqty')"/>
- <Cell col="31"/>
- <Cell col="32" displaytype="number" text="expr:getSum('nktqty')"/>
- <Cell col="33" displaytype="number" text="expr:getSum('nktkgqty')"/>
- <Cell col="34" displaytype="number" text="expr:getSum('nrbcqty')"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42"/>
- <Cell col="43"/>
- <Cell col="44"/>
- <Cell col="45"/>
- <Cell col="46"/>
- <Cell col="47"/>
- <Cell col="48"/>
- <Cell col="49"/>
- <Cell col="50"/>
- <Cell col="51"/>
- <Cell col="52"/>
- <Cell col="53"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_rest" class="datagrid2" taborder="17" binddataset="ds_main_cellresultinfo_restinfo" useinputpanel="false" position="absolute 0 644 1194 787" anchor="all" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="98"/>
- <Column size="84"/>
- <Column size="84"/>
- <Column size="81"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="78"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="83"/>
- <Column size="84"/>
- </Columns>
- <Rows>
- <Row size="30" band="head"/>
- <Row size="24"/>
- <Row size="24" band="summ"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="바코드번호"/>
- <Cell col="2" text="보관일자"/>
- <Cell col="3" text="적용일자"/>
- <Cell col="4" text="Stem Cell Source"/>
- <Cell col="5" text="남은 Bag수"/>
- <Cell col="6" text="체중 (㎏)"/>
- <Cell col="7" text="TNC (10^8)"/>
- <Cell col="8" text="TNC (10^8/㎏)"/>
- <Cell col="9" text="MNC (10^8)"/>
- <Cell col="10" text="MNC (10^8/㎏)"/>
- <Cell col="11" text="Lympo (10^8)"/>
- <Cell col="12" text="Lympo (10^8/kg)"/>
- <Cell col="13" text="CD34 (%)"/>
- <Cell col="14" text="CD34+ (10^6)"/>
- <Cell col="15" text="CD34+ (10^6/㎏)"/>
- <Cell col="16" text="CD3 (%)"/>
- <Cell col="17" text="CD3+ (10^6)"/>
- <Cell col="18" text="CD3+ (10^6/㎏)"/>
- <Cell col="19" text="CD4(%)"/>
- <Cell col="20" text="CD4(10^6)"/>
- <Cell col="21" text="CD4(10^6/㎏)"/>
- <Cell col="22" text="CD8(%)"/>
- <Cell col="23" text="CD8(10^6)"/>
- <Cell col="24" text="CD8(10^6/㎏)"/>
- <Cell col="25" text="CD19(%)"/>
- <Cell col="26" text="CD19(10^6)"/>
- <Cell col="27" text="CD19(10^6/㎏)"/>
- <Cell col="28" text="NK+ (%)"/>
- <Cell col="29" text="NK+ (10^6)"/>
- <Cell col="30" text="NK+ (10^6/㎏)"/>
- <Cell col="31" text="TNK+ (%)"/>
- <Cell col="32" text="TNK+ (10^6)"/>
- <Cell col="33" text="TNK+ (10^6/㎏)"/>
- <Cell col="34" text="nRBC(10^8)"/>
- <Cell col="35" text="Purity (%)"/>
- <Cell col="36" text="Yield (%)"/>
- <Cell col="37" text="Viability(%)"/>
- <Cell col="38" text="처방일자"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:cellbcno"/>
- <Cell col="2" displaytype="date" text="bind:cellprcpdd" mask="yyyy-MM-dd"/>
- <Cell col="3" displaytype="date" text="bind:prcphopedd" mask="yyyy-MM-dd"/>
- <Cell col="4" displaytype="combo" edittype="combo" text="bind:scs" combodataset="ds_init_cmbinfo_stemcellsource_A0159" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="5" text="bind:restbagcnt"/>
- <Cell col="6" text="bind:bdwt"/>
- <Cell col="7" text="bind:tncqty"/>
- <Cell col="8" text="bind:tnckgqty"/>
- <Cell col="9" text="bind:mncqty"/>
- <Cell col="10" text="bind:mnckgqty"/>
- <Cell col="11" text="bind:lympoqty"/>
- <Cell col="12" text="bind:lympokgqty"/>
- <Cell col="13" text="bind:cd34per"/>
- <Cell col="14" text="bind:cd34qty"/>
- <Cell col="15" text="bind:cd34kgqty"/>
- <Cell col="16" text="bind:cd3per"/>
- <Cell col="17" text="bind:cd3qty"/>
- <Cell col="18" text="bind:cd3kgqty"/>
- <Cell col="19" text="bind:cd4per"/>
- <Cell col="20" text="bind:cd4qty"/>
- <Cell col="21" text="bind:cd4kgqty"/>
- <Cell col="22" text="bind:cd8per"/>
- <Cell col="23" text="bind:cd8qty"/>
- <Cell col="24" text="bind:cd8kgqty"/>
- <Cell col="25" text="bind:cd19per"/>
- <Cell col="26" text="bind:cd19qty"/>
- <Cell col="27" text="bind:cd19kgqty"/>
- <Cell col="28" text="bind:nkper"/>
- <Cell col="29" text="bind:nkqty"/>
- <Cell col="30" text="bind:nkkgqty"/>
- <Cell col="31" text="bind:nktper"/>
- <Cell col="32" text="bind:nktqty"/>
- <Cell col="33" text="bind:nktkgqty"/>
- <Cell col="34" text="bind:nrbcqty"/>
- <Cell col="35" text="bind:purityper"/>
- <Cell col="36" text="bind:yieldper"/>
- <Cell col="37" text="bind:viabper"/>
- <Cell col="38" text="bind:fstrgstdt"/>
- </Band>
- <Band id="summary">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5" text="total"/>
- <Cell col="6"/>
- <Cell col="7" displaytype="number" text="expr:getSum('tncqty')"/>
- <Cell col="8" displaytype="number" text="expr:getSum('tnckgqty')"/>
- <Cell col="9" displaytype="number" text="expr:getSum('mncqty')"/>
- <Cell col="10" displaytype="number" text="expr:getSum('mnckgqty')"/>
- <Cell col="11" displaytype="number" text="expr:getSum('lympoqty')"/>
- <Cell col="12" displaytype="number" text="expr:getSum('lympokgqty')"/>
- <Cell col="13"/>
- <Cell col="14" displaytype="number" text="expr:getSum('cd34qty')"/>
- <Cell col="15" displaytype="number" text="expr:getSum('cd34kgqty')"/>
- <Cell col="16"/>
- <Cell col="17" displaytype="number" text="expr:getSum('cd3qty')"/>
- <Cell col="18" displaytype="number" text="expr:getSum('cd3kgqty')"/>
- <Cell col="19"/>
- <Cell col="20" displaytype="number" text="expr:getSum('cd4qty')"/>
- <Cell col="21" displaytype="number" text="expr:getSum('cd4kgqty')"/>
- <Cell col="22"/>
- <Cell col="23" displaytype="number" text="expr:getSum('cd8qty')"/>
- <Cell col="24" displaytype="number" text="expr:getSum('cd8kgqty')"/>
- <Cell col="25"/>
- <Cell col="26" displaytype="number" text="expr:getSum('cd19qty')"/>
- <Cell col="27" displaytype="number" text="expr:getSum('cd19kgqty')"/>
- <Cell col="28"/>
- <Cell col="29" displaytype="number" text="expr:getSum('nkqty')"/>
- <Cell col="30" displaytype="number" text="expr:getSum('nkkgqty')"/>
- <Cell col="31"/>
- <Cell col="32" displaytype="number" text="expr:getSum('nktqty')"/>
- <Cell col="33" displaytype="number" text="expr:getSum('nktkgqty')"/>
- <Cell col="34" displaytype="number" text="expr:getSum('nrbcqty')"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Edit id="output8" taborder="18" readonly="true" position="absolute 908 76 998 95"/>
- <Edit id="output9" taborder="19" readonly="true" position="absolute 1104 76 1194 95"/>
- <Edit id="output10" taborder="20" readonly="true" position="absolute 1104 100 1194 119"/>
- <Static id="caption7" text="담당의" class="cell_1" position="absolute 1001 75 1101 98"/>
- <Static id="caption16" text="체중" class="cell_1" position="absolute 1001 99 1101 122"/>
- <Static id="caption10" text="등록번호" class="cell_1" position="absolute 0 75 100 98"/>
- <Static id="caption11" text="진료형태" class="cell_1" position="absolute 0 99 100 122"/>
- <Static id="caption12" text="환자정보" class="cell_1" position="absolute 216 75 316 98"/>
- <Static id="caption3" text="주치의" class="cell_1" position="absolute 805 75 905 98"/>
- <Static id="caption13" text="진단명" class="cell_1" position="absolute 216 99 316 122"/>
- <Static id="caption14" text="진료과" class="cell_1" position="absolute 589 75 689 98"/>
- <Shape id="line9" class="line_3" position="absolute 0 121 1194 127" anchor="left top right"/>
- <Button id="button4" taborder="21" text="일괄폐기" class="btn2" enable="false" visible="false" position="absolute 1070 471 1134 490" anchor="top right" onclick="button4_onclick"/>
- <Edit id="input1" taborder="22" class="input_default" position="absolute 625 317 680 336" autoselect="true"/>
- <Static id="caption4" text="10^6/Kg" position="absolute 683 317 747 337"/>
- <Button id="btn_del" taborder="23" text="삭제" class="btn4" position="absolute 1138 316 1194 338" anchor="top right" onclick="btn_del_onclick"/>
- <Button id="btn_del2" taborder="24" text="삭제" class="btn4" position="absolute 1139 469 1195 491" anchor="top right" onclick="btn_del2_onclick"/>
- <Static id="caption17" text="바코드" class="cell_1" position="absolute 250 316 370 339"/>
- <Edit id="input3" taborder="25" position="absolute 374 317 509 336" autoselect="true" onkeyup="input3_onkeyup"/>
- <Static id="caption18" text="바코드" class="cell_1" position="absolute 355 468 475 491"/>
- <Edit id="input5" taborder="26" position="absolute 477 471 612 490" autoselect="true" onkeyup="input5_onkeyup"/>
- <Edit id="input23" taborder="27" readonly="true" position="absolute 457 76 512 95"/>
- <Static id="caption78" text="-" position="absolute 448 76 458 96"/>
- <Edit id="input36" taborder="28" readonly="true" position="absolute 401 76 448 95"/>
- <Static id="caption31" text="UNIT/병실" class="cell_1" position="absolute 589 99 689 122"/>
- <Edit id="output15" taborder="29" readonly="true" position="absolute 692 100 997 119"/>
- <Button id="button3" taborder="30" text="적용" class="btn2" position="absolute 618 471 661 490" onclick="button3_onclick"/>
- <Button id="button5" taborder="31" text="적용" class="btn2" position="absolute 515 317 568 336" onclick="button5_onclick"/>
- <Button id="button6" taborder="32" text="주입적용" class="btn2" position="absolute 735 317 799 336" onclick="button6_onclick"/>
- <Edit id="input2" taborder="33" class="input_s_button" position="absolute 103 76 194 95" autoselect="true" onkeyup="input2_onkeyup"/>
- <Combo id="combo2" taborder="34" codecolumn="codecolumn" datacolumn="datacolumn" class="combo_default" enable="false" position="absolute 103 100 213 119">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">I</Col>
- <Col id="datacolumn">입원</Col>
- </Row>
- <Row>
- <Col id="codecolumn">O</Col>
- <Col id="datacolumn">외래</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Static id="caption1" text="CD3 :" position="absolute 590 317 625 337"/>
- <Static id="caption15" text="CD34 :" position="absolute 880 317 919 337"/>
- <Static id="caption20" text="10^6/Kg" position="absolute 978 317 1042 337"/>
- <Edit id="input6" taborder="35" class="input_default" position="absolute 920 317 975 336" autoselect="true"/>
- <Button id="button7" taborder="36" text="주입적용" class="btn2" position="absolute 1030 317 1094 336" onclick="button7_onclick"/>
- <Button id="btn_ipt" taborder="37" position="absolute 178 79 192 92" onclick="btn_ipt_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_send_baseinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="cellbcno" type="STRING" size="256"/>
- <Column id="prcpdd" type="STRING" size="256"/>
- <Column id="execprcpuniqno" type="STRING" size="256"/>
- <Column id="fstrgstdt" type="STRING" size="256"/>
- <Column id="prcphopedd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="pid"/>
- <Col id="cellbcno"/>
- <Col id="prcpdd"/>
- <Col id="execprcpuniqno"/>
- <Col id="fstrgstdt"/>
- <Col id="prcphopedd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cellresultinfo_patinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="rrgstno1" type="STRING" size="256"/>
- <Column id="rrgstno2" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="atdoctid" type="STRING" size="256"/>
- <Column id="docdamid" type="STRING" size="256"/>
- <Column id="ordtype" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- <Column id="diagcd1" type="STRING" size="256"/>
- <Column id="trnptinwardcd" type="STRING" size="256"/>
- <Column id="patbdwt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="hngnm"/>
- <Col id="rrgstno1"/>
- <Col id="rrgstno2"/>
- <Col id="sex"/>
- <Col id="age"/>
- <Col id="atdoctid"/>
- <Col id="docdamid"/>
- <Col id="ordtype"/>
- <Col id="orddeptcd"/>
- <Col id="diagcd1"/>
- <Col id="trnptinwardcd"/>
- <Col id="patbdwt"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_cmb_status" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">보관</Col>
- <Col id="value">K</Col>
- </Row>
- <Row>
- <Col id="label">주입</Col>
- <Col id="value">I</Col>
- </Row>
- <Row>
- <Col id="label">폐기</Col>
- <Col id="value">A</Col>
- </Row>
- <Row>
- <Col id="label">당일</Col>
- <Col id="value">D</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cmbinfo_stemcellsource_A0159" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmbinfo_sesnflag_A0395" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_cellresultinfo_detailinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cellbcno" type="STRING" size="256" sumtext="바코드"/>
- <Column id="status" type="STRING" size="256" sumtext="상태"/>
- <Column id="cellprcpdd" type="STRING" size="256" sumtext="세포처리일자"/>
- <Column id="scs" type="STRING" size="256" sumtext="Stem Cell Source"/>
- <Column id="bbagcnt" type="STRING" size="256" sumtext="보관백수"/>
- <Column id="bdwt" type="STRING" size="256" sumtext="체중"/>
- <Column id="cbagcnt" type="STRING" size="256" sumtext="처방백수"/>
- <Column id="tncqty" type="BIGDECIMAL" size="256" sumtext="TNC(10^8)"/>
- <Column id="tnckgqty" type="BIGDECIMAL" size="256" sumtext="TNC(10^8/kg)"/>
- <Column id="mncqty" type="BIGDECIMAL" size="256" sumtext="MNC(10^8)"/>
- <Column id="mnckgqty" type="BIGDECIMAL" size="256" sumtext="MNC(10^8/kg)"/>
- <Column id="lympokgqty" type="BIGDECIMAL" size="256" sumtext="LYMPO(10^8/kg)"/>
- <Column id="lympoqty" type="BIGDECIMAL" size="256" sumtext="LYMPO(10~8)"/>
- <Column id="cd34per" type="BIGDECIMAL" size="256" sumtext="CD34+(%)"/>
- <Column id="cd34qty" type="BIGDECIMAL" size="256" sumtext="CD34+(10^6)"/>
- <Column id="cd34kgqty" type="BIGDECIMAL" size="256" sumtext="CD34+(10^6/kg)"/>
- <Column id="cd3per" type="BIGDECIMAL" size="256" sumtext="CD3+(%)"/>
- <Column id="cd3qty" type="BIGDECIMAL" size="256" sumtext="CD3+(10^6)"/>
- <Column id="cd3kgqty" type="BIGDECIMAL" size="256" sumtext="CD3+(10^6/kg)"/>
- <Column id="cd4per" type="BIGDECIMAL" size="256" sumtext="CD4+(%)"/>
- <Column id="cd4qty" type="BIGDECIMAL" size="256" sumtext="CD4+(10^6)"/>
- <Column id="cd4kgqty" type="BIGDECIMAL" size="256" sumtext="CD4+(10^6/kg)"/>
- <Column id="cd8per" type="BIGDECIMAL" size="256" sumtext="CD8+(%)"/>
- <Column id="cd8qty" type="BIGDECIMAL" size="256" sumtext="CD8+(10^6)"/>
- <Column id="cd8kgqty" type="BIGDECIMAL" size="256" sumtext="CD8+(10^6/kg)"/>
- <Column id="cd19per" type="BIGDECIMAL" size="256" sumtext="CD19+(%)"/>
- <Column id="cd19qty" type="BIGDECIMAL" size="256" sumtext="CD19+(10^6)"/>
- <Column id="cd19kgqty" type="BIGDECIMAL" size="256" sumtext="CD19+(10^6/kg)"/>
- <Column id="nkper" type="BIGDECIMAL" size="256" sumtext="NK+(%)"/>
- <Column id="nkqty" type="BIGDECIMAL" size="256" sumtext="NK+(10^6)"/>
- <Column id="nkkgqty" type="BIGDECIMAL" size="256" sumtext="NK+(10^6/kg)"/>
- <Column id="nktper" type="BIGDECIMAL" size="256" sumtext="NKT+(%)"/>
- <Column id="nktqty" type="BIGDECIMAL" size="256" sumtext="NKT+(10^6)"/>
- <Column id="nktkgqty" type="BIGDECIMAL" size="256" sumtext="NKT+(10^6/kg)"/>
- <Column id="nrbcqty" type="BIGDECIMAL" size="256" sumtext="nRBC(10^6)"/>
- <Column id="purityper" type="BIGDECIMAL" size="256" sumtext="purityper"/>
- <Column id="yieldper" type="BIGDECIMAL" size="256" sumtext="yieldper"/>
- <Column id="viabper" type="BIGDECIMAL" size="256" sumtext="viabper"/>
- <Column id="prcpdd" type="STRING" size="256" sumtext="적용일자"/>
- <Column id="execprcpuniqno" type="INT" size="256" sumtext="처방유일번호"/>
- <Column id="tretvol" type="BIGDECIMAL" size="256" sumtext="채집량"/>
- <Column id="infsvol" type="BIGDECIMAL" size="256" sumtext="주입량"/>
- <Column id="cellhct" type="BIGDECIMAL" size="256" sumtext="Cell Hct"/>
- <Column id="tankflag" type="STRING" size="256" sumtext="탱크구분"/>
- <Column id="sesnflag" type="STRING" size="256" sumtext="보관프레임번호"/>
- <Column id="frameflag" type="STRING" size="256" sumtext="보관stage번호"/>
- <Column id="keeppos" type="STRING" size="256" sumtext="보관위치"/>
- <Column id="keepdd" type="STRING" size="256" sumtext="보관일자"/>
- <Column id="prcphopedd" type="STRING" size="256" sumtext="처방희망일자"/>
- <Column id="addseqno" type="STRING" size="256" sumtext="보관일자"/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="처방입력일시"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_cellresultinfo_infsinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_cellresultinfo_infsinfo_oncolumnchanged">
- <ColumnInfo>
- <Column id="cellbcno" type="STRING" size="256" sumtext="바코드"/>
- <Column id="infsdd" type="STRING" size="256" sumtext="주입일자"/>
- <Column id="cellprcpdd" type="STRING" size="256" sumtext="세포처리일자"/>
- <Column id="scs" type="STRING" size="256" sumtext="Stem Cell Source"/>
- <Column id="infsbagqty" type="STRING" size="256" sumtext="해동백수"/>
- <Column id="bdwt" type="STRING" size="256" sumtext="체중"/>
- <Column id="tncqty" type="BIGDECIMAL" size="256" sumtext="TNC(10^8)"/>
- <Column id="tnckgqty" type="BIGDECIMAL" size="256" sumtext="TNC(10^8/kg)"/>
- <Column id="mncqty" type="BIGDECIMAL" size="256" sumtext="MNC(10^8)"/>
- <Column id="mnckgqty" type="BIGDECIMAL" size="256" sumtext="MNC(10^8/kg)"/>
- <Column id="lympoqty" type="BIGDECIMAL" size="256" sumtext="LYMPO(10~8)"/>
- <Column id="lympokgqty" type="BIGDECIMAL" size="256" sumtext="LYMPO(10^8/kg)"/>
- <Column id="cd34per" type="BIGDECIMAL" size="256" sumtext="CD34+(%)"/>
- <Column id="cd34qty" type="BIGDECIMAL" size="256" sumtext="CD34+(10^6)"/>
- <Column id="cd34kgqty" type="BIGDECIMAL" size="256" sumtext="CD34+(10^6/kg)"/>
- <Column id="cd3per" type="BIGDECIMAL" size="256" sumtext="CD3+(%)"/>
- <Column id="cd3qty" type="BIGDECIMAL" size="256" sumtext="CD3+(10^6)"/>
- <Column id="cd3kgqty" type="BIGDECIMAL" size="256" sumtext="CD3+(10^6/kg)"/>
- <Column id="cd4per" type="BIGDECIMAL" size="256" sumtext="CD4+(%)"/>
- <Column id="cd4qty" type="BIGDECIMAL" size="256" sumtext="CD4+(10^6)"/>
- <Column id="cd4kgqty" type="BIGDECIMAL" size="256" sumtext="CD4+(10^6/kg)"/>
- <Column id="cd8per" type="BIGDECIMAL" size="256" sumtext="CD8+(%)"/>
- <Column id="cd8qty" type="BIGDECIMAL" size="256" sumtext="CD8+(10^6)"/>
- <Column id="cd8kgqty" type="BIGDECIMAL" size="256" sumtext="CD8+(10^6/kg)"/>
- <Column id="cd19per" type="BIGDECIMAL" size="256" sumtext="CD19+(%)"/>
- <Column id="cd19qty" type="BIGDECIMAL" size="256" sumtext="CD19+(10^6)"/>
- <Column id="cd19kgqty" type="BIGDECIMAL" size="256" sumtext="CD19+(10^6/kg)"/>
- <Column id="nkper" type="BIGDECIMAL" size="256" sumtext="NK+(%)"/>
- <Column id="nkqty" type="BIGDECIMAL" size="256" sumtext="NK+(10^6)"/>
- <Column id="nkkgqty" type="BIGDECIMAL" size="256" sumtext="NK+(10^6/kg)"/>
- <Column id="nktper" type="BIGDECIMAL" size="256" sumtext="NKT+(%)"/>
- <Column id="nktqty" type="BIGDECIMAL" size="256" sumtext="NKT+(10^6)"/>
- <Column id="nktkgqty" type="BIGDECIMAL" size="256" sumtext="NKT+(10^6/kg)"/>
- <Column id="nrbcqty" type="BIGDECIMAL" size="256" sumtext="nRBC+(10^6)"/>
- <Column id="purityper" type="BIGDECIMAL" size="256" sumtext="purityper"/>
- <Column id="yieldper" type="BIGDECIMAL" size="256" sumtext="yieldper"/>
- <Column id="viabper" type="BIGDECIMAL" size="256" sumtext="viabper"/>
- <Column id="prcpdd" type="STRING" size="256" sumtext="적용일자"/>
- <Column id="execprcpuniqno" type="INT" size="256" sumtext="처방유일번호"/>
- <Column id="abnyn" type="STRING" size="256" sumtext="폐기여부"/>
- <Column id="cellvol" type="BIGDECIMAL" size="256" sumtext="세포량"/>
- <Column id="tretvol" type="BIGDECIMAL" size="256" sumtext="채집량"/>
- <Column id="infsvol" type="BIGDECIMAL" size="256" sumtext="주입량"/>
- <Column id="cellhct" type="BIGDECIMAL" size="256" sumtext="Cell Hct"/>
- <Column id="tankflag" type="STRING" size="256" sumtext="탱크구분"/>
- <Column id="sesnflag" type="STRING" size="256" sumtext="보관프레임번호"/>
- <Column id="frameflag" type="STRING" size="256" sumtext="보관stage번호"/>
- <Column id="keeppos" type="STRING" size="256" sumtext="보관위치"/>
- <Column id="keepdd" type="STRING" size="256" sumtext="보관일자"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="prcphopedd" type="STRING" size="256" sumtext="처방희망일자"/>
- <Column id="addseqno" type="INT" size="256" sumtext="보관일자"/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="처방입력일자"/>
- <Column id="keepflag" type="STRING" size="256" sumtext="탱크의 셀 존재 여부"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_cellresultinfo_abninfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cellbcno" type="STRING" size="256" sumtext="바코드"/>
- <Column id="abndd" type="STRING" size="256" sumtext="폐기일자"/>
- <Column id="cellprcpdd" type="STRING" size="256" sumtext="세포처리일자"/>
- <Column id="scs" type="STRING" size="256" sumtext="Stem Cell Source"/>
- <Column id="abnbagqty" type="STRING" size="256" sumtext="폐기백수"/>
- <Column id="bdwt" type="STRING" size="256" sumtext="체중"/>
- <Column id="tncqty" type="BIGDECIMAL" size="256" sumtext="TNC(10^8)"/>
- <Column id="tnckgqty" type="BIGDECIMAL" size="256" sumtext="TNC(10^8/kg)"/>
- <Column id="mncqty" type="BIGDECIMAL" size="256" sumtext="MNC(10^8)"/>
- <Column id="mnckgqty" type="BIGDECIMAL" size="256" sumtext="MNC(10^8/kg)"/>
- <Column id="lympoqty" type="BIGDECIMAL" size="256" sumtext="LYMPO(10~8)"/>
- <Column id="lympokgqty" type="BIGDECIMAL" size="256" sumtext="LYMPO(10^8/kg)"/>
- <Column id="cd34per" type="BIGDECIMAL" size="256" sumtext="CD34+(%)"/>
- <Column id="cd34qty" type="BIGDECIMAL" size="256" sumtext="CD34+(10^6)"/>
- <Column id="cd34kgqty" type="BIGDECIMAL" size="256" sumtext="CD34+(10^6/kg)"/>
- <Column id="cd3per" type="BIGDECIMAL" size="256" sumtext="CD3+(%)"/>
- <Column id="cd3qty" type="BIGDECIMAL" size="256" sumtext="CD3+(10^6)"/>
- <Column id="cd3kgqty" type="BIGDECIMAL" size="256" sumtext="CD3+(10^6/kg)"/>
- <Column id="cd4per" type="BIGDECIMAL" size="256" sumtext="CD4+(%)"/>
- <Column id="cd4qty" type="BIGDECIMAL" size="256" sumtext="CD4+(10^6)"/>
- <Column id="cd4kgqty" type="BIGDECIMAL" size="256" sumtext="CD4+(10^6/kg)"/>
- <Column id="cd8per" type="BIGDECIMAL" size="256" sumtext="CD8+(%)"/>
- <Column id="cd8qty" type="BIGDECIMAL" size="256" sumtext="CD8+(10^6)"/>
- <Column id="cd8kgqty" type="BIGDECIMAL" size="256" sumtext="CD8+(10^6/kg)"/>
- <Column id="cd19per" type="BIGDECIMAL" size="256" sumtext="CD19+(%)"/>
- <Column id="cd19qty" type="BIGDECIMAL" size="256" sumtext="CD19+(10^6)"/>
- <Column id="cd19kgqty" type="BIGDECIMAL" size="256" sumtext="CD19+(10^6/kg)"/>
- <Column id="nkper" type="BIGDECIMAL" size="256" sumtext="NK+(%)"/>
- <Column id="nkqty" type="BIGDECIMAL" size="256" sumtext="NK+(10^6)"/>
- <Column id="nkkgqty" type="BIGDECIMAL" size="256" sumtext="NK+(10^6/kg)"/>
- <Column id="nktper" type="BIGDECIMAL" size="256" sumtext="NKT+(%)"/>
- <Column id="nktqty" type="BIGDECIMAL" size="256" sumtext="NKT+(10^6)"/>
- <Column id="nktkgqty" type="BIGDECIMAL" size="256" sumtext="NKT+(10^6/kg)"/>
- <Column id="nrbcqty" type="BIGDECIMAL" size="256" sumtext="nRBC(10^6)"/>
- <Column id="purityper" type="BIGDECIMAL" size="256" sumtext="purityper"/>
- <Column id="yieldper" type="BIGDECIMAL" size="256" sumtext="yieldper"/>
- <Column id="viabper" type="BIGDECIMAL" size="256" sumtext="viabper"/>
- <Column id="prcpdd" type="STRING" size="256" sumtext="적용일자"/>
- <Column id="execprcpuniqno" type="INT" size="256" sumtext="처방유일번호"/>
- <Column id="abnresn" type="STRING" size="256" sumtext="폐기사유"/>
- <Column id="tretvol" type="BIGDECIMAL" size="256" sumtext="채집량"/>
- <Column id="infsvol" type="BIGDECIMAL" size="256" sumtext="주입량"/>
- <Column id="cellhct" type="BIGDECIMAL" size="256" sumtext="Cell Hct"/>
- <Column id="tankflag" type="STRING" size="256" sumtext="탱크구분"/>
- <Column id="sesnflag" type="STRING" size="256" sumtext="보관프레임번호"/>
- <Column id="frameflag" type="STRING" size="256" sumtext="보관stage번호"/>
- <Column id="keeppos" type="STRING" size="256" sumtext="보관위치"/>
- <Column id="keepdd" type="STRING" size="256" sumtext="보관일자"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="prcphopedd" type="STRING" size="256" sumtext="처방희망일자"/>
- <Column id="addseqno" type="INT" size="256" sumtext="보관일자"/>
- <Column id="keepflag" type="STRING" size="256" sumtext="탱크의 셀 존재 여부"/>
- <Column id="cellvolcheckyn" type="STRING" size="256" sumtext="주입여부적용여부"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_cellresultinfo_restinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cellbcno" type="STRING" size="256" sumtext="바코드"/>
- <Column id="cellprcpdd" type="STRING" size="256" sumtext="세포처리일자"/>
- <Column id="prcpdd" type="STRING" size="256" sumtext="처방일자"/>
- <Column id="scs" type="STRING" size="256" sumtext="Stem Cell Source"/>
- <Column id="bbagcnt" type="STRING" size="256" sumtext="남은백수"/>
- <Column id="bdwt" type="STRING" size="256" sumtext="체중"/>
- <Column id="tncqty" type="BIGDECIMAL" size="256" sumtext="TNC(10^8)"/>
- <Column id="tnckgqty" type="BIGDECIMAL" size="256" sumtext="TNC(10^8/kg)"/>
- <Column id="mncqty" type="BIGDECIMAL" size="256" sumtext="MNC(10^8)"/>
- <Column id="mnckgqty" type="BIGDECIMAL" size="256" sumtext="MNC(10^8/kg)"/>
- <Column id="lympoqty" type="BIGDECIMAL" size="256" sumtext="LYMPO(10~8)"/>
- <Column id="lympokgqty" type="BIGDECIMAL" size="256" sumtext="LYMPO(10^8/kg)"/>
- <Column id="cd34per" type="BIGDECIMAL" size="256" sumtext="CD34+(%)"/>
- <Column id="cd34qty" type="BIGDECIMAL" size="256" sumtext="CD34+(10^6)"/>
- <Column id="cd34kgqty" type="BIGDECIMAL" size="256" sumtext="CD34+(10^6/kg)"/>
- <Column id="cd3per" type="BIGDECIMAL" size="256" sumtext="CD3+(%)"/>
- <Column id="cd3qty" type="BIGDECIMAL" size="256" sumtext="CD3+(10^6)"/>
- <Column id="cd3kgqty" type="BIGDECIMAL" size="256" sumtext="CD3+(10^6/kg)"/>
- <Column id="cd4per" type="BIGDECIMAL" size="256" sumtext="CD4+(%)"/>
- <Column id="cd4qty" type="BIGDECIMAL" size="256" sumtext="CD4+(10^6)"/>
- <Column id="cd4kgqty" type="BIGDECIMAL" size="256" sumtext="CD4+(10^6/kg)"/>
- <Column id="cd8per" type="BIGDECIMAL" size="256" sumtext="CD8+(%)"/>
- <Column id="cd8qty" type="BIGDECIMAL" size="256" sumtext="CD8+(10^6)"/>
- <Column id="cd8kgqty" type="BIGDECIMAL" size="256" sumtext="CD8+(10^6/kg)"/>
- <Column id="cd19per" type="BIGDECIMAL" size="256" sumtext="CD19+(%)"/>
- <Column id="cd19qty" type="BIGDECIMAL" size="256" sumtext="CD19+(10^6)"/>
- <Column id="cd19kgqty" type="BIGDECIMAL" size="256" sumtext="CD19+(10^6/kg)"/>
- <Column id="nkper" type="BIGDECIMAL" size="256" sumtext="NK+(%)"/>
- <Column id="nkqty" type="BIGDECIMAL" size="256" sumtext="NK+(10^6)"/>
- <Column id="nkkgqty" type="BIGDECIMAL" size="256" sumtext="NK+(10^6/kg)"/>
- <Column id="nktper" type="BIGDECIMAL" size="256" sumtext="NKT+(%)"/>
- <Column id="nktqty" type="BIGDECIMAL" size="256" sumtext="NKT+(10^6)"/>
- <Column id="nktkgqty" type="BIGDECIMAL" size="256" sumtext="NKT+(10^6/kg)"/>
- <Column id="nrbcqty" type="BIGDECIMAL" size="256" sumtext="nRBC(10^6)"/>
- <Column id="purityper" type="BIGDECIMAL" size="256" sumtext="purityper"/>
- <Column id="yieldper" type="BIGDECIMAL" size="256" sumtext="yieldper"/>
- <Column id="viabper" type="BIGDECIMAL" size="256" sumtext="viabper"/>
- <Column id="prcphopedd" type="STRING" size="256" sumtext="처방희망일자"/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="처방입력일자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_paminfo_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_reqdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="popupendflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_bmtpatientinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_patinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="input2" propid="value" datasetid="ds_send_baseinfo" columnid="pid"/>
- <BindItem id="item1" compid="output3" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="hngnm"/>
- <BindItem id="item2" compid="input36" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="rrgstno1"/>
- <BindItem id="item3" compid="input23" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="rrgstno2"/>
- <BindItem id="item4" compid="output7" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="sex"/>
- <BindItem id="item5" compid="output6" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="age"/>
- <BindItem id="item6" compid="output11" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="orddeptcd"/>
- <BindItem id="item7" compid="output8" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="atdoctid"/>
- <BindItem id="item8" compid="output9" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="docdamid"/>
- <BindItem id="item9" compid="combo2" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="ordtype"/>
- <BindItem id="item10" compid="output1" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="diagcd1"/>
- <BindItem id="item11" compid="output15" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="trnptinwardcd"/>
- <BindItem id="item12" compid="output10" propid="value" datasetid="ds_main_cellresultinfo_patinfolist" columnid="patbdwt"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2015-11-13
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-13 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- function SMABC00300_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMABC00300_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_initGrid(grd_abn);
- grdf_initGrid(grd_detail);
- grdf_initGrid(grd_infs);
- grdf_initGrid(grd_rest);
-
- var arrParam = [{dsNm: "ds_init_cmbinfo_stemcellsource_A0159", cdGrpId: "A0159"}
- , {dsNm: "ds_init_cmbinfo_sesnflag_A0395", cdGrpId: "A0395"}
- , {dsNm: "ds_init_cmbinfo_abnresn_A0155", cdGrpId: "A0155"}]
- appf_getCodeList(arrParam);
-
- if (frmf_checkOpener())
- {
- var param = opener.frmf_getParameter("opener_parameter_id");
-
- if(!utlf_isNull(param))
- {
- condarray = param.split("▦");
-
- ds_send_baseinfo.setColumn(0, "pid", condarray[0]);
- ds_send_baseinfo.setColumn(0, "prcpdd", condarray[1]);
- ds_send_baseinfo.setColumn(0, "execprcpuniqno", condarray[2]);
- ds_send_baseinfo.setColumn(0, "prcphopedd", condarray[3]);
- ds_send_baseinfo.setColumn(0, "fstrgstdt", condarray[4]);
-
- btn_sea_onclick();
- }
- else
- {
- var paminfo = sysf_getGlobalVariable("paminfo");
-
- if(!utlf_isNull(paminfo))
- {
- dsf_setCSVToDs("ds_paminfo_list", paminfo);
-
- ds_send_baseinfo.setColumn(0, "pid", ds_paminfo_list.getColumn(0, "pid"));
-
- btn_sea_onclick();
- }
- }
- }
- else
- {
- var paminfo = sysf_getGlobalVariable("paminfo");
- if ( !utlf_isNull(paminfo))
- {
- dsf_setCSVToDs("ds_paminfo_list", paminfo);
- ds_send_baseinfo.setColumn(0, "pid", ds_paminfo_list.getColumn(0, "pid"));
- btn_sea_onclick();
- }
- }
- btn_save.enable = frmf_checkAuth("X");
- }
- function btn_sea_onclick(obj:Button, e:ClickEventInfo)
- {
- if (utlf_isNull(ds_send_baseinfo.getColumn(0, "pid")))
- {
- sysf_messageBox("환자번호는 필수 선택 또는 입력항목 입니다", "E999", "");
- return;
- }
- fGetPatientInfo();
- }
- function fGetPatientInfo()
- {
- ds_main_cellresultinfo_abninfo.clearData();
- ds_main_cellresultinfo_detailinfo.clearData();
- ds_main_cellresultinfo_patinfolist.clearData();
- ds_main_cellresultinfo_restinfo.clearData();
- ds_main_cellresultinfo_infsinfo.clearData();
-
- ds_send_reqdata.clearData();
- ds_send_reqdata.addRow();
-
- if(utlf_isNull(ds_send_baseinfo.getColumn(0, "pid")))
- {
- ds_main_cellresultinfo_patinfolist.clearData();
- return;
- }
-
- var oParam = {};
- oParam.id = "TRABC00301";
- oParam.service = "hsctstemcellapp.StemCellTreat";
- oParam.method = "reqGetCellKeepInfsInfo";
- oParam.inds = "req=ds_send_baseinfo";
- oParam.outds = "ds_main_cellresultinfo_patinfolist=patinfolist ds_main_cellresultinfo_detailinfo=detailinfo ds_main_cellresultinfo_infsinfo=infsinfo ds_main_cellresultinfo_abninfo=abninfo ds_main_cellresultinfo_restinfo=restinfo";
- oParam.async = false;
- //oParam.callback = "cf_TRABC00301";
- tranf_submit(oParam);
- dsf_setDefaultVal(ds_main_cellresultinfo_detailinfo, "cbagcnt:1");
-
- if(utlf_isNull(ds_main_cellresultinfo_detailinfo.getColumn(0, "prcphopedd")))
- {
- ds_main_cellresultinfo_detailinfo.clearData();
-
- btn_save.enable = false;
- }
- else
- {
- btn_save.enable = true;
- }
-
- if(utlf_isNull(ds_main_cellresultinfo_infsinfo.getColumn(0, "prcphopedd")))
- {
- ds_main_cellresultinfo_infsinfo.clearData();
-
- btn_save.enable = false;
- }
- else
- {
- btn_save.enable = true;
- }
-
- if(utlf_isNull(ds_main_cellresultinfo_abninfo.getColumn(0, "prcphopedd")) && utlf_isNull(ds_main_cellresultinfo_abninfo.getColumn(0, "cellbcno")))
- {
- ds_main_cellresultinfo_abninfo.clearData();
-
- btn_save.enable = false;
- }
- else
- {
- btn_save.enable = true;
- }
-
- if(utlf_isNull(ds_main_cellresultinfo_restinfo.getColumn(0, "prcphopedd")))
- {
- ds_main_cellresultinfo_restinfo.clearData();
- }
-
- ds_send_reqdata.setColumn(0, "infsdd", utlf_getCurrentDate());
-
- //fGetPrcpTotalSum();
- //fGetInfsTotalSum();
- //fGetCabnTotalSum();
- //fGetRestCellTotalSum();
- }
- function button9_onclick(obj:Button, e:ClickEventInfo)
- {
- var pid = ds_send_baseinfo.getColumn(0, "pid");
- var sflag = pid;
- frmf_setParameter("opener_parameter_id", sflag);
- frmf_modal("SMABC00400", "SMABC00400", "", "", "", "", "", "", "", "", "", "", "M");
- }
- function button1_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_modal("SMABC01300", "SMABC01300", "", "", "", "", "", "", "", "", "", "", "M");
- }
- function btn_save_onclick(obj:Button, e:ClickEventInfo)
- {
- fExecSave();
- }
- function fExecSave()
- {
- var oParam = {};
- oParam.id = "TXABC00301";
- oParam.service = "hsctstemcellapp.StemCellTreat";
- oParam.method = "reqExeCellInfsAbn";
- oParam.inds = "infsinfo=ds_main_cellresultinfo_infsinfo:U abninfo=ds_main_cellresultinfo_abninfo:U";
- oParam.outds = "ds_=item";
- oParam.async = false;
- oParam.callback = "cf_TXABC00301";
- tranf_submit(oParam);
- }
- function cf_TXABC00301(sSvcId, nErrorCode, sErrorMsg)
- {
- if(nErrorCode < 0)
- {
- sysf_messageBox(sErrorMsg, "E999", "");
- return;
- }
- else
- {
- fGetPatientInfo();
- }
- }
- function btn_cle_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_main_cellresultinfo_detailinfo.clearData();
- ds_main_cellresultinfo_infsinfo.clearData();
- ds_main_cellresultinfo_abninfo.clearData();
- ds_main_cellresultinfo_restinfo.clearData();
-
- ds_send_baseinfo.clearData();
- ds_send_baseinfo.addRow();
-
- ds_send_reqdata.clearData();
- ds_send_reqdata.addRow();
- }
- function input2_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- fGetPatientInfo();
- }
- }
- function button2_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_modal("SPPMC02500", "SPPMC02500", "", "", "", "", "", "", "", "", "", "", "M");
-
- if(ds_main.getColumn(0, "popupendflag") == "cancel" || utlf_isNull(ds_main.getColumn(0, "popupendflag")))
- {
- }
- else
- {
- ds_send_baseinfo.setColumn(0, "pid", ds_patinfolist.getColumn(0, "pid"));
- ds_main_cellresultinfo_patinfolist.setColumn(0, "hngnm", ds_patinfolist.getColumn(0, "hngnm"));
- ds_main_cellresultinfo_patinfolist.setColumn(0, "rrgstno1", ds_patinfolist.getColumn(0, "rrgstno1"));
- ds_main_cellresultinfo_patinfolist.setColumn(0, "rrgstno2", ds_patinfolist.getColumn(0, "rrgstno2"));
- ds_main_cellresultinfo_patinfolist.setColumn(0, "sex", ds_patinfolist.getColumn(0, "sex"));
- ds_main_cellresultinfo_patinfolist.setColumn(0, "age", ds_patinfolist.getColumn(0, "age"));
- fGetPatientInfo();
- }
- }
- function btn_ipt_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_modal("SPABO61300", "SPABO61300", "", "", "", "", "", "", "", "", "", "", "M");
-
- if(ds_main.getColumn(0, "popupendflag") == "ok")
- {
- var spid = ds_temp_bmtpatientinfo.getColumn(0, "pid");
- if(utlf_isNull(spid) || spid == "" || spid == " ")
- {
- return false;
- }
-
- ds_send_baseinfo.setColumn(0, "pid", ds_temp_bmtpatientinfo.getColumn(0, "pid"));
- fGetPatientInfo();
- }
- }
- function isDate(str)
- {
- if(utlf_isNull(str))
- {
- return true;
- }
-
- if (utlf_isNull(trim(str)))
- {
- return true; // 빈건 체크안함
- }
- if (isNaN(parseInt(str)))
- {
- return false; // 숫자가 아니면 fals
- }
- if (str.length != 8)
- {
- return false;
- }
-
- var yy = new Number(str.substr(0, 4));
- var mm = new Number(str.substr(4, 2));
- var dd = new Number(str.substr(6, 2));
- var date = new Date(yy, mm, dd);
-
- if (yy != date.getFullYear() || mm != date.getMonth() || dd != date.getDate())
- {
- return false; // 존재하지 않는 날짜
- }
- return true; // 존재하는 날짜
- }
- function trim(data)
- { // 문자에 대한 TRIM 작업
- return data.replace(/(^\s*)|(\s*$)/g, "");
- }
- function grd_detail_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if (utlf_isNull(ds_send_baseinfo.getColumn(0, "execprcpuniqno")) || utlf_isNull(ds_send_baseinfo.getColumn(0, "prcpdd")))
- {
- sysf_messageBox("해동처리를 위해서는 처방관리화면에서 해동처방이 먼저 선택되어야 합니다.", "E999", "");
- return;
- }
- if (utlf_isNull(ds_send_reqdata.getColumn(0, "infsdd")))
- {
- sysf_messageBox("해동일자를 입력한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
- if (isDate(ds_send_reqdata.getColumn(0, "infsdd")) == false)
- {
- sysf_messageBox("해동일자의 날짜 형식이 잘 못 입력되었습니다.", "E999", "");
- return;
- }
-
- if(e.row > -1)
- {
- scellbcno = ds_main_cellresultinfo_detailinfo.getColumn(ds_main_cellresultinfo_detailinfo.rowposition, "cellbcno");
- var irow1 = ds_main_cellresultinfo_infsinfo.findRow(1, scellbcno);
- var irow3 = ds_main_cellresultinfo_abninfo.findRow(1, scellbcno);
-
- if (irow1 > -1 || irow3 > -1)
- {
- sysf_messageBox("이미 선택된 자료입니다.", "E999", "");
- return;
- }
- else
- {
- var irow2 = ds_main_cellresultinfo_restinfo.findRow(1, scellbcno);
-
- if (irow2 > -1)
- {
- ds_main_cellresultinfo_restinfo.deleteRow(irow2);
- }
- }
- grow = ds_main_cellresultinfo_detailinfo.rowposition;
- detailtoinfs(grow);
- }
- }
- function detailtoinfs(grow)
- {
- ds_main_cellresultinfo_infsinfo.deleteRow(ds_main_cellresultinfo_infsinfo.rowposition);
- var irow = ds_main_cellresultinfo_infsinfo.addRow();
-
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "infsdd", ds_send_reqdata.getColumn(0, "infsdd"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cellprcpdd", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cellprcpdd"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "scs", ds_main_cellresultinfo_detailinfo.getColumn(grow, "scs"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "infsbagqty", "1");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "bdwt", ds_main_cellresultinfo_detailinfo.getColumn(grow, "bdwt"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "tncqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "tncqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "tnckgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "tnckgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "mncqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "mncqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "mnckgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "mnckgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "lympoqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "lympoqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "lympokgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "lympokgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd34per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd34per"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd34qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd34qty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd34kgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd34kgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd3per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd3per"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd3qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd3qty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd3kgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd3kgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd4per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd4per"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd4qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd4qty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd4kgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd4kgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd8per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd8per"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd8qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd8qty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd8kgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd8kgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd19per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd19per"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd19qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd19qty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd19kgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd19kgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nkper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nkper"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nkqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nkqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nkkgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nkkgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nktper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nktper"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nktqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nktqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nktkgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nktkgqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nrbcqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nrbcqty"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "purityper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "purityper"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "yieldper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "yieldper"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "viabper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "viabper"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "prcpdd", ds_send_baseinfo.getColumn(0, "prcpdd"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "execprcpuniqno", ds_send_baseinfo.getColumn(grow, "execprcpuniqno"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cellbcno", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cellbcno"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "abnyn", "N");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cellvol", "0");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "tretvol", ds_main_cellresultinfo_detailinfo.getColumn(grow, "tretvol"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "infsvol", ds_main_cellresultinfo_detailinfo.getColumn(grow, "infsvol"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cellhct", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cellhct"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "tankflag", ds_main_cellresultinfo_detailinfo.getColumn(grow, "tankflag"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "sesnflag", ds_main_cellresultinfo_detailinfo.getColumn(grow, "sesnflag"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "frameflag", ds_main_cellresultinfo_detailinfo.getColumn(grow, "frameflag"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "keeppos", ds_main_cellresultinfo_detailinfo.getColumn(grow, "keeppos"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "keepdd", ds_main_cellresultinfo_detailinfo.getColumn(grow, "keepdd"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "pid", ds_send_baseinfo.getColumn(0, "pid"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "prcphopedd", ds_send_baseinfo.getColumn(0, "prcphopedd"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "addseqno", ds_main_cellresultinfo_detailinfo.getColumn(grow, "addseqno"));
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "fstrgstdt", ds_send_baseinfo.getColumn(grow, "fstrgstdt"));
-
- ds_main_cellresultinfo_infsinfo.updatecontrol = false
- ds_main_cellresultinfo_infsinfo.setRowType(irow, "i");
- ds_main_cellresultinfo_infsinfo.updatecontrol = true;
-
- btn_del.enable = true;
- }
- function infstoabn2(grow)
- {
- var irow = ds_main_cellresultinfo_abninfo.addRow();
-
- ds_main_cellresultinfo_abninfo.setColumn(irow, "abndd", utlf_getCurrentDate());
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellprcpdd", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cellprcpdd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "scs", ds_main_cellresultinfo_detailinfo.getColumn(grow, "scs"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "abnbagqty", "1");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "bdwt", ds_main_cellresultinfo_detailinfo.getColumn(grow, "bdwt"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tncqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "tncqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tnckgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "tnckgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mncqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "mncqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mnckgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "mnckgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympoqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "lympoqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympokgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "lympokgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd34per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd34qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34kgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd34kgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd3per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd3qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3kgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd3kgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd4per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd4qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4kgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd4kgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd8per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd8qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19per", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd19per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19qty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd19qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19kgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cd19kgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nkper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nkqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkkgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nkkgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nktper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nktqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktkgqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nktkgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nrbcqty", ds_main_cellresultinfo_detailinfo.getColumn(grow, "nrbcqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "purityper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "purityper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "yieldper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "yieldper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "viabper", ds_main_cellresultinfo_detailinfo.getColumn(grow, "viabper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "prcpdd", ds_main_cellresultinfo_detailinfo.getColumn(grow, "prcpdd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "execprcpuniqno", ds_main_cellresultinfo_detailinfo.getColumn(grow, "execprcpuniqno"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellbcno", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cellbcno"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "abnresn", ds_send_reqdata.getColumn(grow, "abnresn"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tretvol", ds_main_cellresultinfo_detailinfo.getColumn(grow, "tretvol"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "infsvol", ds_main_cellresultinfo_detailinfo.getColumn(grow, "infsvol"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellhct", ds_main_cellresultinfo_detailinfo.getColumn(grow, "cellhct"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tankflag", ds_main_cellresultinfo_detailinfo.getColumn(grow, "tankflag"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "sesnflag", ds_main_cellresultinfo_detailinfo.getColumn(grow, "sesnflag"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "frameflag", ds_main_cellresultinfo_detailinfo.getColumn(grow, "frameflag"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "keeppos", ds_main_cellresultinfo_detailinfo.getColumn(grow, "keeppos"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "keepdd", ds_main_cellresultinfo_detailinfo.getColumn(grow, "keepdd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "pid", ds_send_baseinfo.getColumn(grow, "pid"));
-
- ds_main_cellresultinfo_abninfo.updatecontrol = false;
- ds_main_cellresultinfo_abninfo.setRowType(irow, "i");
- ds_main_cellresultinfo_abninfo.updatecontrol = true;
-
- btn_del.enable = true;
- }
- function input3_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- infsfunc();
- }
- function button5_onclick(obj:Button, e:ClickEventInfo)
- {
- infsfunc();
- }
- function infsfunc()
- {
- scellbcno = ds_send_reqdata.getColumn(0, "cellbcno");
-
- if (utlf_isNull(scellbcno))
- {
- return;
- }
-
- if(ds_send_baseinfo.getColumn(0, "execprcpuniqno") || utlf_isNull(ds_send_baseinfo.getColumn(0, "prcpdd")))
- {
- sysf_messageBox("해동처리를 위해서는 처방관리화면에서 해동처방이 먼저 선택되어야 합니다.", "E999", "");
- return;
- }
- if (utlf_isNull(ds_send_reqdata.getColumn(0, "infsdd")))
- {
- sysf_messageBox("해동일자를 입력한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
- if (isDate(ds_send_reqdata.getColumn(0, "infsdd")) == false)
- {
- sysf_messageBox("해동일자의 날짜 형식이 잘 못 입력되었습니다.", "E999", "");
- return;
- }
- var irow1 = ds_main_cellresultinfo_infsinfo.findRow(1, scellbcno)
-
- if (irow1 > -1)
- {
- sysf_messageBox("이미 선택된 자료입니다.", "E999", "");
- return;
- }
- else
- {
- var irow3 = ds_main_cellresultinfo_detailinfo.findRow(1, scellbcno);
-
- if (irow3 > -1)
- {
- detailtoinfs(irow3);
-
- var irow4 = ds_main_cellresultinfo_restinfo.findRow(1, scellbcno);
-
- if (irow4 > -1)
- {
- ds_main_cellresultinfo_restinfo.deleteRow(irow4);
- }
- }
- else
- {
- sysf_messageBox("해당 바코드가 존재하지 않습니다.", "E999", "");
- return;
- }
- }
-
- ds_send_reqdata.setColumn(0, "cellbcno", "");
- }
- function cabnfunc()
- {
- scellbcno = ds_send_reqdata.getColumn(0, "cellbcno2");
-
- if (utlf_isNull(scellbcno))
- {
- return;
- }
-
- if (utlf_isNull(ds_send_reqdata.getColumn(0, "abnresn")))
- {
- sysf_messageBox("폐기사유를 선택한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
-
- var irow1 = ds_main_cellresultinfo_abninfo.findRow(1,scellbcno);
- var irow2 = ds_main_cellresultinfo_infsinfo.findRow(1,scellbcno);
-
- if (irow1 > -1 || irow2 > -1)
- {
- sysf_messageBox("이미 선택된 자료입니다.", "E999", "");
- return;
- }
- else
- {
- var irow3 = ds_main_cellresultinfo_detailinfo.findRow(1,scellbcno);
-
- if (irow3 > -1)
- {
- infstoabn2(irow3);
- var irow4 = ds_main_cellresultinfo_restinfo.findRow(1, scellbcno);
-
- if (irow4 > -1)
- {
- ds_main_cellresultinfo_restinfo.deleteRow(irow4);
- }
- }
- else
- {
- sysf_messageBox("해당 바코드가 존재하지 않습니다.", "E999", "");
- return;
- }
- }
- ds_send_reqdata.setColumn(0, "cellbcno2", "");
- }
- function button6_onclick(obj:Button, e:ClickEventInfo)
- {
- if (ds_main_cellresultinfo_infsinfo.rowposition < 0)
- {
- sysf_messageBox("세포주입 Result에서 적용할 행을 선택한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
-
- ds_send_reqdata.setColumn(0, "abnresn", "7");
- if (ds_main_cellresultinfo_infsinfo.rowposition > -1)
- {
- scellbcno = ds_main_cellresultinfo_infsinfo.getColumn(ds_main_cellresultinfo_infsinfo.rowposition, "cellbcno");
- var irow1 = ds_main_cellresultinfo_abninfo.findRow(1, scellbcno);
-
- if (irow1 > -1)
- {
- sysf_messageBox("이미 선택된 자료입니다.", "E999", "");
- return;
- }
- }
- if (utlf_isNull(ds_send_reqdata.getColumn(0, "cellvol")) || ds_send_reqdata.getColumn(0, "cellvol") == "0")
- {
- sysf_messageBox("적용할 세포량을 입력한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
-
- var scd3kgqty = ds_main_cellresultinfo_infsinfo.getColumn(ds_main_cellresultinfo_infsinfo.rowposition, "cd3kgqty");
- if (utlf_isNull(scd3kgqty) || scd3kgqty == "0")
- {
- sysf_messageBox("CD3(10^6)의 양이 Zero여서 처리할 수 없습니다.", "E999", "");
- return;
- }
-
- var scellvol = ds_send_reqdata.getColumn(0, "cellvol");
- if (parseFloat(scellvol) > parseFloat(scd3kgqty))
- {
- sysf_messageBox("적용할 세포량이 CD3(10^6/kg)의 양보다 커서 처리할 수 없습니다.", "E999", "");
- return;
- }
-
- var sper1 = parseFloat(scellvol) / parseFloat(scd3kgqty);
- var sper = Math.round(sper1 * 10000) / 10000;
-
- ds_main_cellresultinfo_abninfo.deleteRow(ds_main_cellresultinfo_abninfo.rowposition);
-
- var irow = ds_main_cellresultinfo_abninfo.addRow();
- var grow = ds_main_cellresultinfo_infsinfo.rowposition;
-
- ds_main_cellresultinfo_infsinfo.setColumn(0, "cellvol", scellvol);
- ds_main_cellresultinfo_abninfo.setColumn(irow, "abndd", utlf_getCurrentDate());
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellprcpdd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cellprcpdd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "scs", ds_main_cellresultinfo_infsinfo.getColumn(grow, "scs"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "abnbagqty", "0");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "bdwt", ds_main_cellresultinfo_infsinfo.getColumn(grow, "bdwt"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "prcpdd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "prcpdd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "execprcpuniqno", ds_main_cellresultinfo_infsinfo.getColumn(grow, "execprcpuniqno"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellbcno", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cellbcno"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "abnresn", ds_send_reqdata.getColumn(0, "abnresn"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tankflag", ds_main_cellresultinfo_infsinfo.getColumn(grow, "tankflag"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "sesnflag", ds_main_cellresultinfo_infsinfo.getColumn(grow, "sesnflag"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "frameflag", ds_main_cellresultinfo_infsinfo.getColumn(grow, "frameflag"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "keeppos", ds_main_cellresultinfo_infsinfo.getColumn(grow, "keeppos"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "keepdd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "keepdd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "prcphopedd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "prcphopedd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellvolcheckyn", "Y");
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "tncqty");
-
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tncqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tncqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "tncqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "tnckgqty");
-
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tnckgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tnckgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "tnckgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "mncqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mncqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mncqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "mncqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "mnckgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mnckgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mnckgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "mnckgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "lympoqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympoqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympoqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "lympoqty", sqty1);
- }
-
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "lympokgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympokgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympokgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "lympokgqty", sqty1);
- }
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd34per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34per", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd34qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd34qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd34kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd34kgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd3per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3per", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd3qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd3qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd3kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd3kgqty", sqty1);
- }
-
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd4per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4per", sqty);
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd4qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd4qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd4kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd4kgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd8per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8per", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd8qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd8qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd8kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd8kgqty", sqty1);
- }
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd19per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19per", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd19qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd19qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd19kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd19kgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nkper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nkqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nkqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nkkgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkkgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkkgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nkkgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nktper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nktqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nktqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nktkgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktkgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktkgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nktkgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nrbcqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nrbcqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nrbcqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nrbcqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "purityper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "purityper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "yieldper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "yieldper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "viabper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "viabper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "tretvol");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tretvol", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tretvol", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "tretvol", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "infsvol");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "infsvol", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "infsvol", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "infsvol", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cellhct");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellhct", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellhct", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cellhct", sqty1);
- }
-
- ds_main_cellresultinfo_abninfo.updatecontrol = false;
- ds_main_cellresultinfo_abninfo.setRowType(irow, "i");
- ds_main_cellresultinfo_abninfo.updatecontrol = true;
- }
- function button7_onclick(obj:Button, e:ClickEventInfo)
- {
- if (ds_main_cellresultinfo_infsinfo.rowposition < 0)
- {
- sysf_messageBox("세포주입 Result에서 적용할 행을 선택한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
-
-
- if (ds_main_cellresultinfo_infsinfo.rowposition > -1)
- {
- scellbcno = ds_main_cellresultinfo_infsinfo.getColumn(ds_main_cellresultinfo_infsinfo.rowposition, "cellbcno");
-
- var irow1 = ds_main_cellresultinfo_abninfo.findRow(1, scellbcno);
- if (irow1 > -1)
- {
- sysf_messageBox("이미 선택된 자료입니다.", "E999", "");
- return;
- }
- }
-
- if (utlf_isNull(ds_send_reqdata.getColumn(0, "cell34vol")) || ds_send_reqdata.getColumn(0, "cell34vol")== "0")
- {
- sysf_messageBox("적용할 세포량을 입력한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
-
- var scd34kgqty = ds_main_cellresultinfo_infsinfo.getColumn(ds_main_cellresultinfo_infsinfo.rowposition, "cd34kgqty");
- if (utlf_isNull(scd34kgqty) || scd34kgqty == "0")
- {
- sysf_messageBox("CD34(10^6)의 양이 Zero여서 처리할 수 없습니다.", "E999", "");
- return;
- }
-
- var scell34vol = ds_send_reqdata.getColumn(0, "cell34vol");
- if (parseFloat(scell34vol) > parseFloat(scd34kgqty))
- {
- sysf_messageBox("적용할 세포량이 CD34(10^6/kg)의 양보다 커서 처리할 수 없습니다.", "E999", "");
- return;
- }
-
- var sper1 = parseFloat(scell34vol) / parseFloat(scd34kgqty);
- var sper = Math.round(sper1 * 10000) / 10000;
- //ds_main_cellresultinfo_abninfo.deleteRow(ds_main_cellresultinfo_abninfo.rowcount-1);
- var irow = ds_main_cellresultinfo_abninfo.addRow();
- var grow = ds_main_cellresultinfo_infsinfo.rowposition;
-
- ds_main_cellresultinfo_abninfo.setColumn(0, "cellvol", scell34vol);
- ds_main_cellresultinfo_abninfo.setColumn(0, "abndd", utlf_getCurrentDate());
- ds_main_cellresultinfo_abninfo.setColumn(0, "cellprcpdd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cellprcpdd"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "scs", ds_main_cellresultinfo_infsinfo.getColumn(grow, "scs"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "abnbagqty", "0");
- ds_main_cellresultinfo_abninfo.setColumn(0, "bdwt", ds_main_cellresultinfo_infsinfo.getColumn(grow, "bdwt"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "prcpdd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "prcpdd"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "execprcpuniqno", ds_main_cellresultinfo_infsinfo.getColumn(grow, "execprcpuniqno"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "cellbcno", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cellbcno"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "abnresn", ds_send_reqdata.getColumn(0, "abnresn"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "tankflag", ds_main_cellresultinfo_infsinfo.getColumn(grow, "tankflag"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "sesnflag", ds_main_cellresultinfo_infsinfo.getColumn(grow, "sesnflag"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "frameflag", ds_main_cellresultinfo_infsinfo.getColumn(grow, "frameflag"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "keeppos", ds_main_cellresultinfo_infsinfo.getColumn(grow, "keeppos"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "keepdd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "keepdd"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "prcphopedd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "prcphopedd"));
- ds_main_cellresultinfo_abninfo.setColumn(0, "cellvolcheckyn", "Y");
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "tncqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tncqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tncqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "tncqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "tnckgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tnckgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tnckgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "tnckgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "mncqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mncqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mncqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "mncqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "mnckgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mnckgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mnckgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "mnckgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "lympoqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympoqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympoqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "lympoqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "lympokgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympokgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympokgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "lympokgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd34per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34per", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd34qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd34qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd34kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd34kgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd3per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3per", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd3qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd3qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd3kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd3kgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd4per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4per", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd4qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd4qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd4kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd4kgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd8per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8per", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd8qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd8qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd8kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd8kgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd19per");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19per", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd19qty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19qty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19qty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd19qty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd19kgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19kgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19kgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cd19kgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nkper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nkqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nkqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nkkgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkkgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkkgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nkkgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nktper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nktqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nktqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nktkgqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktkgqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktkgqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nktkgqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "nrbcqty");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nrbcqty", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nrbcqty", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "nrbcqty", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "purityper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "purityper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "yieldper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "yieldper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "viabper");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "viabper", sqty);
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "tretvol");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tretvol", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tretvol", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "tretvol", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "infsvol");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "infsvol", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "infsvol", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "infsvol", sqty1);
- }
-
- var sqty = ds_main_cellresultinfo_infsinfo.getColumn(grow, "cellhct");
- if(utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellhct", "");
- }
- else
- {
- var sqty1 = Math.round((sqty * sper) * 10000) / 10000;
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellhct", parseFloat(sqty) - parseFloat(sqty1));
- ds_main_cellresultinfo_infsinfo.setColumn(grow, "cellhct", sqty1);
- }
-
- ds_main_cellresultinfo_abninfo.updatecontrol = false;
- ds_main_cellresultinfo_abninfo.setRowType(irow, "i");
- ds_main_cellresultinfo_abninfo.updatecontrol = true;
- }
- function btn_del_onclick(obj:Button, e:ClickEventInfo)
- {
- if (ds_main_cellresultinfo_infsinfo.rowposition < 0)
- {
- sysf_messageBox("세포주입 Result에서 삭제할 행을 선택한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
-
- if(ds_main_cellresultinfo_abninfo.findRow(1, ds_main_cellresultinfo_infsinfo.getColumn(ds_main_cellresultinfo_infsinfo.rowposition, "cellbcno")) > 0)
- {
- sysf_messageBox("DLI폐기된 셀 입니다. 폐기Result를 먼저 삭제하여 주세요.", "E999", "");
- return;
- }
-
- if(!utlf_isNull(ds_main_cellresultinfo_infsinfo.getColumn(ds_main_cellresultinfo_infsinfo.rowposition, "keepflag")))
- {
- if( sysf_messageBox("탱크 보관내역을 자동으로 복원할 수 없습니다. 수동으로 복원 하셔야 됩니다." , "Q003" ) != 6 )
- {
- return;
- }
- }
-
- ds_send_baseinfo.setColumn(0, "cellbcno", ds_main_cellresultinfo_infsinfo.getColumn(ds_main_cellresultinfo_infsinfo.rowposition, "cellbcno"));
- ds_main_cellresultinfo_infsinfo.deleteRow(ds_main_cellresultinfo_infsinfo.rowposition);
- fExecSave();
- }
- function grd_infs_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if((e.col != obj.getBindCellIndex("Body", "bdwt")) && (e.col != obj.getBindCellIndex("Body", "viabper")))
- {
- if (utlf_isNull(ds_send_reqdata.getColumn(0, "abnresn")))
- {
- sysf_messageBox("폐기사유를 선택한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
-
- if(e.row > -1)
- {
- scellbcno = ds_main_cellresultinfo_infsinfo.getColumn(ds_main_cellresultinfo_infsinfo.rowposition, "cellbcno");
- var irow1 = ds_main_cellresultinfo_abninfo.findRow(1,scellbcno);
-
- if (irow1 > -1)
- {
- sysf_messageBox("이미 선택된 자료입니다.", "E999", "");
- return;
- }
- grow = e.row;
- infstoabn(grow);
- ds_main_cellresultinfo_infsinfo.deleteRow(ds_main_cellresultinfo_infsinfo.rowposition);
- //ds_main_cellresultinfo_infsinfo.deleteRow(ds_main_cellresultinfo_infsinfo.rowcount-1);
- }
- }
- }
- function infstoabn(grow)
- {
- ds_main_cellresultinfo_abninfo.deleteRow(ds_main_cellresultinfo_abninfo.rowcount-1);// grd_abn.deleteRow(grd_abn.rows-1);
- var irow = ds_main_cellresultinfo_abninfo.addRow();
-
- ds_main_cellresultinfo_abninfo.setColumn(irow, "abndd", utlf_getCurrentDate());
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellprcpdd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cellprcpdd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "scs", ds_main_cellresultinfo_infsinfo.getColumn(grow, "scs"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "abnbagqty", "1");
- ds_main_cellresultinfo_abninfo.setColumn(irow, "bdwt", ds_main_cellresultinfo_infsinfo.getColumn(grow, "bdwt"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tncqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "tncqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tnckgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "tnckgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mncqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "mncqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "mnckgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "mnckgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympoqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "lympoqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "lympokgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "lympokgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34per", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd34per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34qty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd34qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd34kgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd34kgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3per", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd3per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3qty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd3qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd3kgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd3kgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4per", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd4per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4qty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd4qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd4kgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd4kgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8per", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd8per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8qty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd8qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd8kgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd8kgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19per", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd19per"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19qty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd19qty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cd19kgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cd19kgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkper", ds_main_cellresultinfo_infsinfo.getColumn(grow, "nkper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "nkqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nkkgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "nkkgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktper", ds_main_cellresultinfo_infsinfo.getColumn(grow, "nktper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "nktqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nktkgqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "nktkgqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "nrbcqty", ds_main_cellresultinfo_infsinfo.getColumn(grow, "nrbcqty"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "purityper", ds_main_cellresultinfo_infsinfo.getColumn(grow, "purityper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "yieldper", ds_main_cellresultinfo_infsinfo.getColumn(grow, "yieldper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "viabper", ds_main_cellresultinfo_infsinfo.getColumn(grow, "viabper"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "prcpdd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "prcpdd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "execprcpuniqno", ds_main_cellresultinfo_infsinfo.getColumn(grow, "execprcpuniqno"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellbcno", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cellbcno"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "abnresn", ds_send_reqdata.getColumn(grow, "abnresn"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tretvol", ds_main_cellresultinfo_infsinfo.getColumn(grow, "tretvol"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "infsvol", ds_main_cellresultinfo_infsinfo.getColumn(grow, "infsvol"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "cellhct", ds_main_cellresultinfo_infsinfo.getColumn(grow, "cellhct"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "tankflag", ds_main_cellresultinfo_infsinfo.getColumn(grow, "tankflag"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "sesnflag", ds_main_cellresultinfo_infsinfo.getColumn(grow, "sesnflag"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "frameflag", ds_main_cellresultinfo_infsinfo.getColumn(grow, "frameflag"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "keeppos", ds_main_cellresultinfo_infsinfo.getColumn(grow, "keeppos"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "keepdd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "keepdd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "prcphopedd", ds_main_cellresultinfo_infsinfo.getColumn(grow, "prcphopedd"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "addseqno", ds_main_cellresultinfo_infsinfo.getColumn(grow, "addseqno"));
- ds_main_cellresultinfo_abninfo.setColumn(irow, "pid", ds_send_baseinfo.getColumn(0, "pid"));
-
- ds_main_cellresultinfo_abninfo.updatecontrol = false
- ds_main_cellresultinfo_abninfo.setRowType(irow, "i");
- ds_main_cellresultinfo_abninfo.updatecontrol = true;
-
- btn_del.enable = true;
- }
- function ds_main_cellresultinfo_infsinfo_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if (e.columnid == "bdwt")
- {
- var vbdwt = obj.getColumn(e.row, "bdwt");
-
- if (utlf_isNull(vbdwt) || vbdwt == "0" )
- {
- return;
- }
- var vtncqty = obj.getColumn(e.row, "tncqty");
- var vmncqty = obj.getColumn(e.row, "mncqty");
- var vcd34per = obj.getColumn(e.row, "cd34per");
- var vnkper = obj.getColumn(e.row, "nkper");
- var vnktper = obj.getColumn(e.row, "nktper");
- if(utlf_isNull(obj.getColumn(e.row, "tncqty")))
- {
- obj.setColumn(e.row, "tnckgqty", "");
- }
- else
- {
- var vtnckgqty = parseFloat(obj.getColumn(e.row, "tncqty")) / vbdwt;
- obj.setColumn(e.row, "tnckgqty", (Math.round(vtnckgqty * 10000) / 10000));
- }
-
- if(utlf_isNull(obj.getColumn(e.row, "mncqty")))
- {
- obj.setColumn(e.row, "mnckgqty", "");
- }
- else
- {
- var vmnckgqty = parseFloat(obj.getColumn(e.row, "mncqty")) / vbdwt;
- obj.setColumn(e.row, "mnckgqty", (Math.round(vmnckgqty * 10000) / 10000));
- }
-
- if(utlf_isNull(obj.getColumn(e.row, "mncqty")) || utlf_isNull(obj.getColumn(e.row, "cd34per")))
- {
- obj.setColumn(e.row, "cd34qty", "");
- obj.setColumn(e.row, "cd34kgqty", "");
- }
- else
- {
- var vcd34qty = parseFloat(obj.getColumn(e.row, "mncqty")) * parseFloat(obj.getColumn(e.row, "cd34per"));
- var vcd34kgqty = vcd34qty / vbdwt;
-
- obj.setColumn(e.row, "cd34qty", (Math.round(vcd34qty * 10000) / 10000));
- obj.setColumn(e.row, "cd34kgqty", (Math.round(vcd34kgqty * 10000) / 10000));
- }
-
- var dLympoQty = obj.getColumn(e.row, "lympoqty");
-
- if(utlf_isNull(dLympoQty) || parseFloat(dLympoQty) == 0)
- {
- obj.setColumn(e.row, "lympokgqty", dLympoQty);
- }
- else
- {
- var dLympoKgQty = parseFloat(dLympoQty) / parseFloat(vbdwt);
- obj.setColumn(e.row, "lympokgqty", (Math.round(dLympoKgQty * 10000) / 10000));
- }
-
- var dCd3Qty = obj.getColumn(e.row, "cd3qty");
- if (utlf_isNull(dCd3Qty)|| parseFloat(dCd3Qty) == 0)
- {
- obj.setColumn(e.row, "cd3kgqty", dCd3Qty);
- }
- else
- {
- var dCd3KgQty = parseFloat(dCd3Qty) / parseFloat(vbdwt);
- obj.setColumn(e.row, "cd3kgqty", (Math.round(dCd3KgQty * 10000) / 10000));
- }
-
- var dcd4Qty = obj.getColumn(e.row, "cd4qty");
- if (utlf_isNull(dcd4Qty) || parseFloat(dcd4Qty) == 0)
- {
- obj.setColumn(e.row, "cd4kgqty", dcd4Qty);
- }
- else
- {
- var dcd4KgQty = parseFloat(dcd4Qty) / parseFloat(vbdwt);
- obj.setColumn(e.row, "cd4kgqty", (Math.round(dcd4KgQty * 10000) / 10000));
- }
-
- var dcd8Qty = obj.getColumn(e.row, "cd8qty");
- if (utlf_isNull(dcd8Qty) || parseFloat(dcd8Qty) == 0)
- {
- obj.setColumn(e.row, "cd8kgqty", dcd8Qty);
- }
- else
- {
- var dcd8KgQty = parseFloat(dcd8Qty) / parseFloat(vbdwt);
- obj.setColumn(e.row, "cd8kgqty", (Math.round(dcd8KgQty * 10000) / 10000));
- }
-
- var dcd19Qty = obj.getColumn(e.row, "cd19qty");
- if (utlf_isNull(dcd19Qty) || parseFloat(dcd19Qty) == 0)
- {
- obj.setColumn(e.row, "cd19kgqty", dcd19Qty);
- }
- else
- {
- var dcd19KgQty = parseFloat(dcd19Qty) / parseFloat(vbdwt);
- obj.setColumn(e.row, "cd19kgqty", (Math.round(dcd19KgQty * 10000) / 10000));
- }
-
- var dnkQty = obj.getColumn(e.row, "nkqty");
- if (utlf_isNull(dnkQty) || parseFloat(dnkQty) == 0)
- {
- obj.setColumn(e.row, "nkkgqty", dnkQty);
- }
- else
- {
- var dnkKgQty = parseFloat(dnkQty) / parseFloat(vbdwt);
- obj.setColumn(e.row, "nkkgqty", (Math.round(dnkKgQty * 10000) / 10000));
- }
-
- var dnktQty = obj.getColumn(e.row, "nktqty");
- if (utlf_isNull(dnktQty) || parseFloat(dnktQty) == 0)
- {
- obj.setColumn(e.row, "nktkgqty", dnktQty);
- }
- else
- {
- var dnktKgQty = parseFloat(dnktQty) / parseFloat(vbdwt);
- obj.setColumn(e.row, "nktkgqty", (Math.round(dnktKgQty * 10000) / 10000));
- }
- }
- }
- function input5_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- cabnfunc();
- }
- }
- function cabnfunc()
- {
- scellbcno = ds_send_reqdata.getColumn(0, "cellbcno2");
-
- if (utlf_isNull(scellbcno))
- {
- return;
- }
-
- if(utlf_isNull(ds_send_reqdata.getColumn(0, "abnresn")))
- {
- sysf_messageBox("폐기사유를 선택한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
-
- var irow1 = ds_main_cellresultinfo_abninfo.findRow(1, scellbcno);
- var irow2 = ds_main_cellresultinfo_infsinfo.findRow(1, scellbcno);
-
- if (irow1 > -1 || irow2 > -1)
- {
- sysf_messageBox("이미 선택된 자료입니다.", "E999", "");
- return;
- }
- else
- {
- var irow3 = ds_main_cellresultinfo_detailinfo.findRow(1, scellbcno);
-
- if (irow3 > -1)
- {
- infstoabn2(irow3);
-
- var irow4 = ds_main_cellresultinfo_restinfo.findRow(1,scellbcno);
- if (irow4 > -1)
- {
- ds_main_cellresultinfo_restinfo.deleteRow(irow4);
- }
- }
- else
- {
- sysf_messageBox("해당 바코드가 존재하지 않습니다.", "E999", "");
- return;
- }
- }
- ds_send_reqdata.setColumn(0, "cellbcno2", "");
- }
- function button3_onclick(obj:Button, e:ClickEventInfo)
- {
- cabnfunc();
- }
- function button4_onclick(obj:Button, e:ClickEventInfo)
- {
- fOpenCellAllAbn();
- }
- function fOpenCellAllAbn()
- {
- frmf_modal("SMABC00700", "SMABC00700", "", "", "", "", "", "", "", "", "", "", "M");
- }
- function btn_del2_onclick(obj:Button, e:ClickEventInfo)
- {
- if (ds_main_cellresultinfo_abninfo.rowposition < 0)
- {
- sysf_messageBox("세포폐기 Result에서 삭제할 행을 선택한 후 처리하시기 바랍니다.", "E999", "");
- return;
- }
- if(!utlf_isNull(ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "keepflag")))
- {
- if( sysf_messageBox("탱크 보관내역을 자동으로 복원할 수 없습니다. 수동으로 복원 하셔야 됩니다." , "Q003" ) != 6 )
- {
- return;
- }
- }
-
- var sbagqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "abnbagqty");
- var sbacno = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cellbcno");
-
- if (sbagqty == "0")
- {
- var irow = ds_main_cellresultinfo_infsinfo.findRow(1,sbacno);
-
- if (irow > -1)
- {
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "tncqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "tncqty");
-
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "tncqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "tnckgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "tnckgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "tnckgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "mncqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "mncqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "mncqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "mnckgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "mnckgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "mnckgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "lympoqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "lympoqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "lympoqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "lympokgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "lympokgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "lympokgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd34per");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd34per", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd34qty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd34qty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd34qty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd34kgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd34kgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd34kgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd3per");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd3per", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd3qty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd3qty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd3qty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd3kgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd3kgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd3kgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd4per");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd4per", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd4qty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd4qty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd4qty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd4kgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd4kgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd4kgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd8per");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd8per", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd8qty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd8qty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd8qty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd8kgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd8kgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd8kgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd19per");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd19per", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd19qty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd19qty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd19qty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cd19kgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cd19kgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cd19kgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "nkper");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nkper", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "nkqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "nkqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nkqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "nkkgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "nkkgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nkkgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "nktper");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nktper", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "nktqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "nktqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nktqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "nktkgqty");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "nktkgqty");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nktkgqty", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "nrbcqty");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "nrbcqty", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "purityper");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "purityper", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "yieldper");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "yieldper", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "viabper");
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "viabper", sqty);
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "tretvol");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "tretvol");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "tretvol", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "infsvol");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "infsvol");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "infsvol", parseFloat(sqty) + parseFloat(sqty1));
- }
-
- var sqty = ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cellhct");
- var sqty1 = ds_main_cellresultinfo_infsinfo.getColumn(irow, "cellhct");
- if(!utlf_isNull(sqty))
- {
- ds_main_cellresultinfo_infsinfo.setColumn(irow, "cellhct", parseFloat(sqty) + parseFloat(sqty1));
- }
-
-
- ds_main_cellresultinfo_infsinfo.updatecontrol = false
- ds_main_cellresultinfo_infsinfo.setRowType(irow, "u");
- ds_main_cellresultinfo_infsinfo.updatecontrol = true;
- }
- ds_main_cellresultinfo_abninfo.deleteRow(ds_main_cellresultinfo_abninfo.rowposition);
- //ds_main_cellresultinfo_abninfo.deleteRow(ds_main_cellresultinfo_abninfo.rowcount-1) //grd_abn.deleteRow(grd_abn.rows-1);
-
- fExecSave();
- }
- else
- {
- ds_send_baseinfo.setColumn(0, "cellbcno", ds_main_cellresultinfo_abninfo.getColumn(ds_main_cellresultinfo_abninfo.rowposition, "cellbcno"));
- ds_main_cellresultinfo_abninfo.deleteRow(ds_main_cellresultinfo_abninfo.rowposition);
- //ds_main_cellresultinfo_abninfo.deleteRow(ds_main_cellresultinfo_abninfo.rowcount-1);
-
- fExecSave();
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|