From 7cb3458118012fbf5e6ef01240cf75e9a677ab9e Mon Sep 17 00:00:00 2001 From: panhf <754998852@qq.com> Date: Fri, 26 Jan 2024 16:50:18 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E7=A7=BB=E4=BA=A4=E7=AE=A1=E7=90=869-12?= =?UTF-8?q?=E6=8A=A5=E8=A1=A8=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../File/Excel/DataIn/HVAC导入模板.xls | Bin 0 -> 22016 bytes .../File/Excel/DataIn/Plumbing导入模板.xls | Bin 0 -> 22016 bytes .../Excel/DataIn/PunchlistFrom导入模板.xls | Bin 0 -> 25088 bytes .../File/Excel/DataIn/Telecom导入模板.xls | Bin 0 -> 22016 bytes SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 64 +++ SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user | 2 +- .../Transfer/CivilStructure.aspx | 3 +- .../Transfer/CivilStructure.aspx.cs | 1 + .../Transfer/CivilStructureDataIn.aspx.cs | 6 +- SGGL/FineUIPro.Web/Transfer/Electrical.aspx | 3 +- .../FineUIPro.Web/Transfer/Electrical.aspx.cs | 3 + .../Transfer/ElectricalDataIn.aspx.cs | 6 +- SGGL/FineUIPro.Web/Transfer/Firefighting.aspx | 3 +- .../Transfer/Firefighting.aspx.cs | 3 + .../Transfer/FirefightingDataIn.aspx.cs | 6 +- SGGL/FineUIPro.Web/Transfer/HVAC.aspx | 117 +++++ SGGL/FineUIPro.Web/Transfer/HVAC.aspx.cs | 201 +++++++++ .../Transfer/HVAC.aspx.designer.cs | 161 +++++++ SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx | 68 +++ .../FineUIPro.Web/Transfer/HVACDataIn.aspx.cs | 420 +++++++++++++++++ .../Transfer/HVACDataIn.aspx.designer.cs | 125 ++++++ .../Transfer/Instrumentation.aspx | 3 +- .../Transfer/Instrumentation.aspx.cs | 3 + .../Transfer/InstrumentationDataIn.aspx.cs | 6 +- SGGL/FineUIPro.Web/Transfer/Plumbing.aspx | 116 +++++ SGGL/FineUIPro.Web/Transfer/Plumbing.aspx.cs | 202 +++++++++ .../Transfer/Plumbing.aspx.designer.cs | 161 +++++++ .../Transfer/PlumbingDataIn.aspx | 68 +++ .../Transfer/PlumbingDataIn.aspx.cs | 421 +++++++++++++++++ .../Transfer/PlumbingDataIn.aspx.designer.cs | 125 ++++++ .../FineUIPro.Web/Transfer/PunchlistFrom.aspx | 144 ++++++ .../Transfer/PunchlistFrom.aspx.cs | 200 +++++++++ .../Transfer/PunchlistFrom.aspx.designer.cs | 161 +++++++ .../Transfer/PunchlistFromDataIn.aspx | 68 +++ .../Transfer/PunchlistFromDataIn.aspx.cs | 425 ++++++++++++++++++ .../PunchlistFromDataIn.aspx.designer.cs | 125 ++++++ SGGL/FineUIPro.Web/Transfer/Telecom.aspx | 116 +++++ SGGL/FineUIPro.Web/Transfer/Telecom.aspx.cs | 203 +++++++++ .../Transfer/Telecom.aspx.designer.cs | 161 +++++++ .../FineUIPro.Web/Transfer/TelecomDataIn.aspx | 68 +++ .../Transfer/TelecomDataIn.aspx.cs | 421 +++++++++++++++++ .../Transfer/TelecomDataIn.aspx.designer.cs | 125 ++++++ SGGL/WebAPI/WebAPI.csproj.user | 2 +- 43 files changed, 4502 insertions(+), 14 deletions(-) create mode 100644 SGGL/FineUIPro.Web/File/Excel/DataIn/HVAC导入模板.xls create mode 100644 SGGL/FineUIPro.Web/File/Excel/DataIn/Plumbing导入模板.xls create mode 100644 SGGL/FineUIPro.Web/File/Excel/DataIn/PunchlistFrom导入模板.xls create mode 100644 SGGL/FineUIPro.Web/File/Excel/DataIn/Telecom导入模板.xls create mode 100644 SGGL/FineUIPro.Web/Transfer/HVAC.aspx create mode 100644 SGGL/FineUIPro.Web/Transfer/HVAC.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/HVAC.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx create mode 100644 SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/Plumbing.aspx create mode 100644 SGGL/FineUIPro.Web/Transfer/Plumbing.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/Plumbing.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx create mode 100644 SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx create mode 100644 SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx create mode 100644 SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/Telecom.aspx create mode 100644 SGGL/FineUIPro.Web/Transfer/Telecom.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/Telecom.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx create mode 100644 SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx.cs create mode 100644 SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx.designer.cs diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/HVAC导入模板.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/HVAC导入模板.xls new file mode 100644 index 0000000000000000000000000000000000000000..6c1eb7b0bd92549c7f261f00b5afd4014181f0d7 GIT binary patch literal 22016 zcmeHP2Ut|c_Mf{fuqeoafC36jQ4o-hVxx+pAcBI%Cw3N5!Grz_QDSq zQH>#+hmHoJJJdds3?cn#J%%vEk2qQq3B}fr zX-z~?!_V6?oKYkZTAmFpZ%g{Yv0qI9I6PKRKLvRlKQ*l%#fum-f%UqQ(If+Y{b<{F zfL=(YZGx0hWDuMWMFElEUfq5iyEUyJ$8vc!o{0=bv5_I!XLio`NFGIuVDMKE3E3t+ z0!Kn_K};sYp?%bFk_M_N{xczh)}bGTIvfTAw}CSXW)sXqpTn^(ecVcO?5B@y=$VL+ zue;rF2?h>aoj#L<(R?%MqceT114oK{Ps?1RDSj|_-2i?WnS-54rhrvv^z7Q1rK@uP zRk|IGugcwzszWrS!lAzhK_90RKbRql{T(rK5K z2)&ko9nwIDW{ieB90|9!a3k&DpliqNb3RE_T-^@JIrE}@*sU6nH|ie3<1h%aeH7)ml}%Aq<)gJ7|)FT~!H zbRkNTLVAe^His47R#(s)>JqDsDRYp9gQGf#i|VhL1sOy#nD)3aTqM0 zc(F^!OBG%O6B4EfQ@}!{Ksp6^n*Jx2V9-y8Ia`oljE;yx`2Wpxir#Eg+gZZclYsZr zc6hCAe*!~Nm~J9MZz4kX5TxUlh_yer-*KBHL|6Aqv4w?AZJXLeYDfDCUWN(r<2Fl( zj$1DwI&Q~k`eg!M7zVp8#y+@36QZNXa_F#IWBAo{@LO)XaEnLt&$qBxRC^KV??da4 z+dh_l$nlUPk($tS+zPUEhM%G1h+*idsSJN}njg1}H2pH^3-!WokP4}hgK<3dM_0n~5>Wkn9ir_H*pj$6v zXI*?Tdca5Gi`hX8zl8`sV}D)!8M?0iHX`=%6T!C^p?itoh|wF0;E36u@gH6N864cf zQn1dDY-b#I3f6C72SxHEFq&Q)#?$ob`AS14I`l6jFq*P0o%#F>-ARjX4EPM4F!fgB zGdpU~=e4#z96cGF>hXoQcPQL4Wm{Nq^+!5=Q|GmXT${d);h(^#v;1;3{{)#8nZN+i zXoSR)cMryN&yh7HIa+iqmcVT#D|!o!YbP7(z@@MxM`p_tz-fwtdr*RfI9G`l;)Eqy zh_jYxAx>TDLVgQy{$g5yD>iP!=>!hdO7aD8V$%rZkvzUY4zI~L;~BvQ5N?P53^6_eAv?Y%Z_;jv!#H_6e@R zSfAk1SfAk1SfAk1)IL%ArMd&qp6GX>p;>BLbuaRjQfMg^8XBq=V3p$1Sf#i$Rw*ux zRqDly7iv6>QkptMlycHiirZRNDK3pwic4da;?ndf^)^RmfbcEltfdsUwX9NH8mknS z#wx|7u}ZC7yH>|i+`EI-mf{Zwya~^EGWNGBkJ14VXju}^F2gNE7kivjJ$pxU{N77o?aN{S}CtHpru5wE*ju#mc|b z#9a*{W)omg2a)FBBNC=L21J?qiH7yyfRx65B8Vpk#6Lg?MBNrR5owMW2ZVVR#R{>L zI-AE-1f(exX>7t=6)|EgNDZ9Ln*&lB`-vbv91#BiArM9{<|xt}Uk(WKY>pLTo5SWY z6#?;sB8^S(N|X&ONDXY_4>BxBY3wJ01aLt71B5_W%`g>dP9O(_c~;2^vCU!gn2LY| zK@r;=Wh!1(vw;PvflZo$3=2{k`-vdUIUxQ4LLjVWn2Izfm;=H*yJdyg=CFB8ML=3W z5!)PPD)&O21*w5eT5>>2V?Pn36$ivWKnMgF)Ip>MV+q4*4!0!?33YqgnYnI# z8GHo~KS*UrH07*P_NWx%DB!_@j#374P>L;OMH*;C`~^fT)FQZipmojQB@lHj0RkeH zY7ty47!e1JNT7g7U9|`<4Jcv)ub4nz%$u!D(6N@p3ao`CEUSWHeJj9fO|!mLvpON` z${CBs>!R8KE0!>*=ENEM;BeaAfk|B>6I!Pg$@qOx5Bfk;&WgF9Sk?Ts1H{DYgP5kA zZG$T+);_&eUme8^Y(X(BVOWjf#Vv|ZIX#MG^}&=#WCBImsVI`u19S5v#-uT_J?W*( zW)EyndNFJ!#0@K!%xM~@Q!&*5D#j9q)fyfY!LyW>eGCcDRdZ%Wax&-&IC&8psEAU8pS1$Z=S>no=5_8pdLnD zXh(q7C&5B{B6PElf>r>uJ_!ce8Xk7&*c1)Gx2cnkP1*721ZLE0Q-tH&)LE}hHPGJr zZ7KxqqSvMxXdnGH6@qrvYf~258v04crZ`dYZQ4l3rtE~}1k)8CI@oUA>y5XE+>87so&6k1C=Aavoq4o zN;}m$rjUnK^}Pq#^-u4dS@+itr!o_AT*~H5{$|%r#ZS9D z%bcEi-R!-`b#R**?YrOqv9igns7IcSYe|AXP}o3?+WBwanZAabM+f043>r^IZ9i1_ zagTGe?SrfixjYXoy!Xo!*K;LVW$C-#Jd7A~J!#%|4=;8oF0}t4JEhgWb7s5RySlaw zPoA@TL|E9`ZnwHrEt%}>-bH1&?D6U2aSc}4$s(e4!v%8~fVDO1# z`NC#LFP(5V9o{m;_>H|M~BvzO}k{V%In0;;j^N$N2@+mZduXB_O{emv3z=) z%d!DYb{tsR&@aEAtM_)(_0KX&vnRUle{uT!)YSnOzPhk(Fu~lPnZ39 z^uy%ybqr5zv>MzudTi%G$2|{U+_@%X#-6kUhhpbzvhd2OOJ6=Wur;zWF>$o(w1`$4d|FT24Q+D=w&gy*YlX3wmcC z==#uMXXa~5!*urzYuDA^kvMMJ!WHid$5d>NNO0|7cWUgEk~G=Q45yAp#nSdEmN7xb z*N&ZfJ9NsF{u$Ao>P>ZW`!YS>F;!Np-^Q0^e?0BoCf9ENxT-tvD|Y-*5V|aM+^DK& z#;ea-v~K(0xXpw&=ho*=c$x6*-H%)QgjC&_U9VZyqNkx%Z`S|tKFod9+9;oc*)JaL zaPv9%{?7Nq9LJX%H!w@jUhevtwE43h!)G)q|Ef;mkQNTluFSh%GBw!J-RP!6Swq`a zhwU@l=Im~qHEB#ir0N;9_1u$I-@WP|GVgf6A1{MP41m% z&+V3UnEyKQRYJt$JVz(ncZI*7dvoFB==}WH&c4dUxxb}K9@EqFXP@Vjpvr#6YVGIWc5TV7K7jr?Vuv0)ERj{4Q< z=MI&x+6}jFxjy4kk>cUm!to==ngtXbI?$q_%h&r%M~znsXZ)?#l=ev{SKK_(DcB>WvGbKci|~`u z2Ij|RZn|vTGG^$kl6%=bHg#W}=J!QN(b4>Id#8nL^iEt@IxTZ`?*XfdsF>Q5`nt#u zzglUr@KHO5IOD0e=KA|B+V)}F@;*PV&z@3yx%d3d!>v@acdt$RwrKd0YY)~B8g4Yk z$|ItmZ`&R&4UTM+mrmh0tI!;2=#156t=ADdJ6U`q0-W|rTc-n*`-M?*_zKXdmE zb`@Jr&+TB^DJba|kK0vo7lWmn(>`w+oP7EBL-EZUb-uYjVdxi&yv?6y7ZzMfT^F=! zci-NBbUT(B_EqoJEo&Q%IyuZ~#o#6$WmX04+a7*?$c|cixps2*B+s!geWo=S-uS7d zZDs%YM;07gIBRm6jZ0*&#r-3d^%_42{OqTRn|pWPxpm005v|wBWxHGCdmc5oJ9UZt ziFx~HBb(&5PRQsse%G__zb;OG*}c@hV)Fjc_mW!YW&XVB>AG9L{Cw-^bEWsDmtA&6 zM?Dys(z~~t^{cX_(@F692<1S@#Dw{IUpzWh?_T=ZNnb50{%q2;f7HsbYx$^m!jLIu z_E$cEgc&Kut8 z)}wah?Gvv$?}$=;(^qA9*r;;l*_{<q*+c0d>E0t7yF~kM4&q!r@CcR*4)|0hA zt^aK=lr@8UfA|g>!{d#dlV|@h_?WM0!PChHCSA-)xOA+3qb#4bb0U3K=a35b+%#wV z>-LYXcP=riwNIA6=4s`|HdR|@ys4P~o5E(vCZl7wB16xnRb;g}lsobCu!{EX!H58gYNWSxxwdl*8_7lC^ubp zxUg&Yo1d5^Q~0{UlDA|EnZ)ekoaI}A&mK&I5BIoBEW^*gKBzWVr&>pSt@0};j*$%; z_Tygp+{QPjUijv+LH?Z}vu2^L3BNx!+u|kjF6ejg%R&1VEj?X#fd4OkX`Ae1Egvix zvE)d`?%!vHb+L(?cC}T?w!RZ*4Qu|`df?m`_fCynySRJ%Ego6Nt>e7n3)2(dBeo0Um#B7p2)3Ix(8tlHS5-oI=GDoD z?yF9gmb-klDOP%>=ia@?f7QOMP<-ur={2;q0X*xi3u({DVM9kLhmPu#ICi))vlm`d zd^7iK+%aEyRAu!0Nq3ueEZ!a_YxH1Z$*hu96AqvH($(hl&)e50y{nA9lo+u=VUzB4 z_4c0MvXi$|-d>Saf8HO750ZMPO-{+Vyp!V^y{{~)clVy$ zx5&w79mU8HYn;=Su&&U=1cOUYYvkr%$n>c7`4Czibf!A|FVRTKV9ib4u zv?}E7c4o>_$V?6m-vls%+rOs781#goGJ;K+F+8=va|+(7;O1mnITNj%DV_7j+bjM4?d2D8_g6}R$YOFb51LP)dGMmD79ZQ6E>}UWer4?HG-!VjFhX6ltfGFWBGh^ z@X&1PrYKWUWu__2`Apd-h;-Je1^ZM_E!TqZc1YPgZu7Yhq8yy%N zLwfpB8)lX)o6O=2{2~yxg_?V>4=v&N5K3XdzA1#B?FPRi zlnf#vGXo`L3kA=P2_@Y^?V)NBZ(P76@Vv&Kzz2hU4ZDtA{3NSD`6|wUM8H7l3Ll_v z&#>uwYS5tXfF4*qhBKiu9NGA3_h`Vw zN0EXIF8B>L{@X(pT%F*rJ~R(|9i5j6R3d2Dmew_zw4#8h zf~z4Jc~4eR=yK?i;0n>;AK{?369KpCL2Dfa`YM1J2jW;aHW1qqPcz2Au|3eRBQ)k@ zECpXUCW2pLKO;M%az9X5NwW{2{Wb-93g>0$D{hS@m>mtXcP7l+h@gaz`c1_FEyasa zHSEAHaDa9IX?W3DYS0xiUVsZVID;)>~t^K0t1U zV7iUL0{r+F6pE+0!U4b+)+8Xcg8?xVVrI38RNygn$U%7R38x&Ku9$xskZb+ZKy3+L zvoirF_(m|lMMvUP1g{i;qy#>?G^fukXn&Do|8IPLsZ;;>&^|QXgQk1Z$B8s04|v$n z2wveKL_vK4B}eF6>ei5-M04lU$Hr>z`=M@}b9_^Q3C}{CaL!l4TOB5#72~xyNwJ|E z-_C+i9!im7c&u5>0x)E)qh^bh1X{>Q4s9huHd$e7rF0%^D5;~#! zR+E>4TmuJ9-Vm2QdrjU59CntR$rA~V9%fOk{;wAaPStoGh#f(~V2sItM$t3{CNQHj zG#t6cU{#j(f$m?Bp$SZm0#8APgLIh$Cb~ zKd25)gV=3#*FRem(fLCTjH zP%u{EoEx!`4RBcpB>bT(VTvwrkO~l#!PVauKw<$Z&zYK!($!)pS_3f&PYfM&psXH5 z8jC)FF0}G(nK?mI@V~SF8w;S@pu30vg^r7(2m1|23XTu_PbM4-=q5OKU>;`- zys*UEK6nQa=W?81vFv~0?_mL4l_?`)zC==nT~7D;JM&bD-JuKqvG|Wd;2?*qKX3U@ zr>GA-uhk?49*%y?enXk+z@gI=$ji~!1yZ)0mWOh&l$EcKV+HZc|0~n?^tY^s(Us}; zu_;UEr()$CI_*zvzS11$6cchJoREC)PgxVHKrv=j2Ov(sd98f%@)vJ9r^z?Zl@U+3 z9anvUwhbaWI+jO6gpd~x2lR)}AmW^t1`+kjgNXB8Aw-CXe-m0|o!*DV<2LdJ=|*`Ty7IPK(#QQDSum^~(3|S;mkI*| z?%pER8>%f2m0r^H@28P)LI3QL&M7$2UT%AW6jw!s+(G5~8!|@gaBcwBo6TGp4 zn{m7y69FlXvJ~J{LJ0;T{ak?_0Hd-6>^TBSb2!6XApBZD3NV@tpmORR}vW&d+#nBCdgnGO2=&-eWKpYQH-=gvL%ocEr4?zwm7&Yjr{ zKU!3*`qr+J@IojtAk``pV#J|SaE_46mVlT-hDSmU(?`;tNtmO&Z^{(j?=G{=7W*p{A& z2>H6l4c8Fhz^l_|l5m=D7JYP~kM-b4k?(1lYc$0l=B^vSFC%lYGs#r2>dfBVyRvju z-oHz?qw!UF`%!g>hExRf_h9Jb4B`(nq!j9v5wX$=C^cbp6OcvCYc$j;W!hy*%ThY+ zvJ#=!5wJr#=+KZZ9>3UP>k&5V`bZu(qSL zC3vQtu!zP-#DrUeciQuXS*3+*WlEX4qoHPnK5=~-aDlAJc5ruU81aR{sGnQ;?_We_;s*{dAbK1^LD3h$w{r|CvtFi;WsPOBj0+ z@P673ueI$@U`PtnO+@HTMd+S_bX*d#_UHCHE|Y}l>V7G)u&}9XQt*b$i!VkG{78H;JBZ=86v1cgud6>p*VW%f#6JEa`1T@nZxI|ZdLt1WG5a(AqpLrI zgDY4Ht}`UZ1;?F&^;=j$k$ee^rq_n?G`(iN($I+x{R;_BJt*sA7PX?!EeBt9A3YSbd78YFnkxoCn_-cp@6()T+@Kxc^Q7=Uh#%;=>U(h}3|COjAQ%ULL=O z2%b&wfuaH2nlXNZk3ZPJ`jSAcd=Lka`L{vvktPeG3ah0ie4oH)qIwNBkJo-D5HMEz z1lM4!PjG3hPjG3hPjG2!pD6oM-2rG%^t-UIY&ET>7x_vlw3G@93sVcQN^xndQd}CV z6qm*-_2R_~HJ(N(O&uaiIcq7!Z7r)5m&Pi^rLjtJY5J6Uo2xTG_?B|fQi|JJRw*ux zRf``@rMIGgl9Y%`&*Sy>3|5dEQ#lsZXhZJ*VG-Ds4)&o zp&=qL@$7_82owTQw*^i_n&Zs@VfLa} zA$C${^O%Z&G=n0IO_;kPMvMiig|qo^K+0l25yY1R5)dc^!sx{uMVjNs0b%y$SRuAK zY#vh)5PvAr*aYuH*}#I-!X^PA!-AB>ej-R92P7a+2!z!PQ<3HbaX^^8N>+$%4x7hR z1SA-W*ybqH@UEH-EJ!VE(i~)1kh0iM1Zlwm2?!JdVKu{4q&XoR5N7X|6=Ivi<}nok zX$eJabChY^8+8_>7B*?c0V#|9M3B}TkbpoT5MWRTk><1k2DUlOUN$SiHiyk)Dgx3L zidYb38b1AD0}E0Mn}mW43sM&Qi6CJdkbpoT5LPoxYnsEq)5OO@nmbJa)jfC@^av23 z1XpOeGCptQNAN~{1aG^K;EmSeg^W7Pm%w!?pQwsucBGi&Qm})ol8}(T$EPDJa>?@z zRG3=iOX<`y-;hr0=Nr+fRlYHuTIb8?)F$5qQWJPc4qJ=&GtSJ@sX|f*s=yMa3Nv^( zE+tgj%ub1gO7B6%GDmHVBz09%!j>{3CiM0vWt_fbi4MAfIiO<+!)gwXB@795d-|Dq z?)@2j1rI-1Wk@vTtWx%<6yhjgV?jqL134(gma-xa8j%125eu~lUOv#eX7Cb-x|Toz z5lgiQUMv_9M~z63fJl9{2woac!~|Y3fxehON132wEr}Ia3rkp51;hGQfYq92eXC}5 zM%Gm`7f;YdwE`rBy$JqC#cQ-X%*iCoyi;L|YAM zBbAKsxflp%*jcJar~ufcY)lle-KWrDES8}gB0Cc(siUeM>@|u@Am4n6GwetLbdVlK zU1%qO)+fP2dm(i5kAhYJv_1(2+8Q=HbZm+S;M>$$$ENIfbOtl(wJE~!ZR(=erW$A; z{WcYXcGYWB4YaR*n+id@>9r{fZ4LdTV^f@{_%>~^LeO4%ZK{E8q2H!L(B67&%0gR{5M7%F3)r-oj!kjx!%TWD_1hHT_%`*?Yf}w$ zEB!VVg7(#GQw?-${WcYX_S0)q7TTJ$(Y0xF0h{{k*c6w7j7{6>w<*H$Z5p80rW)u_ z{WcYX4%BN?4Rn}(n+ib(>9r{XJy2#t26C>)Hnf@Wut@gMbP=ZnY4M#6q_~kzNMYQq za7@{Nj|xVoD~Bn4#d&b+oZ-=MS^-T)qYWLm$R-zZGa%xVe=a9|-eth>0fUs8J~_iO z%*wjdIi`?@SLUu7JNIgff%`n7Q+Ax)y6+W>imI-B+K zE-^Nnp*-g^?fYjFy*JozycXkd!aJj~)cW3ooQ9`&&8q)f$5UAexvu4Nr+l;frsC(_ zUggeDy>Is2>o%nA%nm*8|5VlVR`esUCUqnsA1G{~M(u*P?@V9A!=r<+3xmefQQIFC ze%$Na9Q$CaL$1%mithdT#O+*Zc6r9`HxDDnUQe3;-NTC=ON#7&%t>v%@0{804sLGk zB9iCs85JJBuE(uz)k~+icyv=4E`NObc$~v(n}U@?;sTfdHsN!pLsjqRdG&O13ko@r zEML_8=%o`LrXyRWx)#UTRX+Z_>ge!>vgwyBR(qeAHF9=z&KT8)s;w*A+TNBLD^|>C zds#NH>COYo8u=FtaP!$=y5ZTdvYbh7`(KqM zp08fmXxHMp340@cE`Ic|pU>jDMeCJq-B*~-=;*a@$hz$K`&WqPl~K#aZ}@qW_1hp~ zR#>tA+Y=Y}_TIK@Y0IA_Uv`-D2&FVU8@;qcE<&GXfW4*O<~`h z1Kl4w?#g;?X_(=$aozfcI}^uGU$pXF(b&o@kqK@c?M{uGTAD7~HO#q_QHiues%7V3 z<7>xGy&XPvYRa&fE)AwRyMLKc;FKn-Ghoxp@;{&UZJTGee|+_w_mw;UEDT#7Hhy&V zGvhU9E!wnuaNK6%n{ylTCcaE~_U@-`{X(m6%xTcPdhye+>NgvHd>`(ydR?^d!JHS5 zcDnl>e1GTr5l#~-j2+A}a#px~CT;Po*T|WTE552%G_VSl-CC z^?pQLgyb3{PShVsQl8Ri%o9-N|JkK^|E;K(PbK_k+XM z|9Lz*v*Y^EWgVvZ+h0xlsYg+9S>fY(LEnArG_7g8m7#m=+ltb%Z{#oQjSGKpa`bP` zzjUm6)qbRXs|~|06)PT|Et-%y&MdI-(1DhXT)*CDI(p28e(r8JukAl)`t(}1YnzJW zz1tLeof}{ON!~B3uct3s-hbnamyI9xDg6A(s$<_Dj2f}|Zr(v(-`@VC2k*8Gx<2f{ zo4EHAp8Bua<^H>slgWV(HrwA8{ouE;;ID}K4UE6_p4uVlR^6s*5=E`tvU~%U3xF4*XEvU(*3^(Ek0T>{)g$In|u-%l}*oD(|6$NVybi9$^BjB zhhMF-SoEm9W1R7{Tk`_^7jOTteMP^YHsnmLyTWI|mXTJfIeXTne_K3q>9q$N29Gov zYvma^z^`2|SBGO?m^#ikz2$Z}&G4d0@<7wZEym^6KbV?)s=4L2r+-*q+^dnLi@&)? zN4v_cr{{Gv?Gl{ytLN?NxQijuE$N>(3rW8G$D#NZjl165pD_H3#XjcGbBYQtrL7NM zy{CWQKYJWY3;(Kbn^tv=MxPwvymClW&vL864($#rm%h^-MmBkB zXo2#CK3Do|e%Wnz zO!R}y)V_V)tzVTdn?XW0L@EbKCM7J$|Kic92KO?~PX20f$!C+N|Etb0yH=0-CJdcw zW`CvhapW2MJypf+FDe(N{bXTST$+(Owe$F!XNGQF(!2G&vhDZ1y*4#_u*CXoWs3jJ zquFOSM^78@^80TBN~G5g=M=RMsfq|5dE3DId1oh=@^AKs?isrO;^u`u*^=x9Jtg0j zl=*k*wO_VYc`fsD@UTk7$RlRkhF<&bacL*FA$50qje7TJ81+m1+ReZ0wK_2L&+~?N zdi1Irb^FAtt~;Yu-}F}*9yY34b#_F^c{Vh7(zS+&vkcJ~8wH!3$@ zcD%5A&zql_OQ!IBgC*~hDP$6}i*r|O13r5&32yFjFR=_i|NfxHTwUrM^|LCdnlx56 zV#H5B$mcb=IqkwXmkkQ;1e-Mvb4&Q+vDsE{nNQ(>gI^Bbw|Lp<`U3-g^-teyCu{X! z;i#oYhVA)dc6c|Nxan70r*7{*Y4(T~kF5vI>+I2`iCZ@hAO9tp_1rtnFS#%y@lF2L zkTr99+;Lg6KH}8A3o%t=a#ue8ikf)B?LdlrLOHQr6u(rp^FxT;^g+H(HhroSBC@Vd zG4xn{vaG`OtIe^}GrfQK;rMUbw-t)7-7dX`wmQIGZ+%F6M~xUhS~+}lzr=APm05l8 zp5mK%XXB3f$)l@c-cP>UtW(L3a9QIAlS*fouAX@K)R%5Hr+?Y8A?aOJ?4`uWjS8C# z@2j`>{+^S(wd(fD?1uCIOni{kH+@QK?(L0R{(5(>>ArGL|9FGR?qB~!&F_0Bbs_80xU=N#Ym$Wzt!QPI~UdJp>cd3NhFiWea~aJ*-D+SIQrz zz+6*ll3IrL!rE7c5R7Zp+}d*`g`3GAdMMA>HeFC& za3C^DX*!I5%d7!4gb~hFiaw`rp!pd5)q(~CA7|=daMlj-oek+uHi6f3!eDewp&g+J zzO*Xht#)R~Qpqe14c`PXg2%t6#2EC1pfZ9*nKA5I;5h|vRd91Mt(=Kg&Xmpt;NusN znsfF8XOh2*KXB*f@2NJh>YYE9X0t+cz!6!8H z6GXywnjzKdPkk=SnxeKo;jL4bw(n@$VHWJ7@jaB%(ruP3N{2&hAn1CJb`@*`+UmgI z7}C?1+Ay9 zi*oov0ly62&c!m+sXv9SodWk$nc;9kjHvGLC9#tBXMeI3d}t}hhfoRw_DvD=Y!CPy zp=1yVnH3}6t<*PUY5(xvPJA8n? zW0+0%VwGJAz(VVooUJj0J>tK+L?fR^`fu^EVt--2XuUOt z>j&iK2&UT@EWnR|L7{k>D*^!g;MxSF_H;K4hKA!1PldN&>p)K(gx8;N>cMG?`Nsjd z);|u^mEgTQ6L6w$4D(!k6i!L-Y5_<}0Lh#_x1jw-j()J|`K2x?@nQXFx+hKdqK}hk zN}PING@$9LN;4rYo&A^YbdR!$-^5JB*|Qp zH-JlHlC35$1vv*tP2LbMf%clb5jgB@Ig=+697W89c#L2^!3*dWKnVx+JwU4z5-PDI z-_gzy4rQqjG0cRO;7pEJqylOq@Na_}OG5MU>`Nfumffu}2j1lvk{y&K-E9q{rFNcclsOwk1nQh|ap*a%wyi3O;97is}Y*NCBLEyN@|F?7&D zvIY=oEcyVt;P(gy?U*@1Q}Exj|EvYjUC>R?jc`oiNJ59jQG@-3BLv3<{wEWT0dxRWVV;_8ih;um3t628m@XxRSUX3XuV!l*Tj$Kao`8)G8iQS7f9K1S{};9QdYhpjuphO_|evdN8de+lxVVE)PVZ-kbnLS!F0g)lA84~G={DF!0m2`567LrjLq z2B9&)b}PG%XHy(-SO*3i2*@`YGcW`u!U3@gAmV+<<(fRwa7^KYjvkO=8IHHkFhaV* zIKc-ixCqC`F_DnsC`$!SC6r(g($5X(fiNmt!dfGUw16|r1;MW+#1OyH A$N&HU literal 0 HcmV?d00001 diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/PunchlistFrom导入模板.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/PunchlistFrom导入模板.xls new file mode 100644 index 0000000000000000000000000000000000000000..6a3c3897dc07a2fa62f61d463ed0971c3db4ef29 GIT binary patch literal 25088 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 I_rEdxKk#+aBme*a literal 0 HcmV?d00001 diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/Telecom导入模板.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/Telecom导入模板.xls new file mode 100644 index 0000000000000000000000000000000000000000..b118a026357e82947168f38d50f0bd933e11790c GIT binary patch literal 22016 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 K2fqK0;eP;Vft7#& literal 0 HcmV?d00001 diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index d94d6880..e0ae1beb 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -1832,11 +1832,19 @@ + + + + + + + + @@ -16351,6 +16359,20 @@ FirefightingDataIn.aspx + + HVAC.aspx + ASPXCodeBehind + + + HVAC.aspx + + + HVACDataIn.aspx + ASPXCodeBehind + + + HVACDataIn.aspx + Instrumentation.aspx ASPXCodeBehind @@ -16372,6 +16394,20 @@ Piping.aspx + + Plumbing.aspx + ASPXCodeBehind + + + Plumbing.aspx + + + PlumbingDataIn.aspx + ASPXCodeBehind + + + PlumbingDataIn.aspx + ProjectSetup.aspx ASPXCodeBehind @@ -16386,6 +16422,34 @@ ProjectSetupDataIn.aspx + + PunchlistFrom.aspx + ASPXCodeBehind + + + PunchlistFrom.aspx + + + PunchlistFromDataIn.aspx + ASPXCodeBehind + + + PunchlistFromDataIn.aspx + + + Telecom.aspx + ASPXCodeBehind + + + Telecom.aspx + + + TelecomDataIn.aspx + ASPXCodeBehind + + + TelecomDataIn.aspx + Video.aspx ASPXCodeBehind diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user index c78536b4..5c318055 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user @@ -1,7 +1,7 @@  - Release|Any CPU + Debug|Any CPU true false diff --git a/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx b/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx index 58aa3589..e31a2e4d 100644 --- a/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx +++ b/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx @@ -15,8 +15,7 @@ diff --git a/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx.cs b/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx.cs index e0eb76d4..b9844950 100644 --- a/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/CivilStructure.aspx.cs @@ -50,6 +50,7 @@ namespace FineUIPro.Web.Transfer strSql += " AND Test_Package_START <= @InspectionDateZ"; listStr.Add(new SqlParameter("@InspectionDateZ", Funs.GetNewDateTime(txtEndTime.Text.Trim()))); } + strSql += " order by Civil_Structure "; SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); Grid1.RecordCount = tb.Rows.Count; diff --git a/SGGL/FineUIPro.Web/Transfer/CivilStructureDataIn.aspx.cs b/SGGL/FineUIPro.Web/Transfer/CivilStructureDataIn.aspx.cs index e8d6a8ab..d7472dc3 100644 --- a/SGGL/FineUIPro.Web/Transfer/CivilStructureDataIn.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/CivilStructureDataIn.aspx.cs @@ -56,6 +56,10 @@ namespace FineUIPro.Web.Transfer { try { + errorInfos.Clear(); + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + if (this.fuAttachUrl.HasFile == false) { ShowNotify("请您选择Excel文件!", MessageBoxIcon.Warning); @@ -162,7 +166,7 @@ namespace FineUIPro.Web.Transfer ir = pds.Rows.Count; if (pds != null && ir > 0) { - for (int i = 0; i < ir; i++) + for (int i = 1; i < ir; i++) { string row4 = pds.Rows[i][4].ToString(); if (!string.IsNullOrEmpty(row4)) diff --git a/SGGL/FineUIPro.Web/Transfer/Electrical.aspx b/SGGL/FineUIPro.Web/Transfer/Electrical.aspx index 0fd67055..66d65ca6 100644 --- a/SGGL/FineUIPro.Web/Transfer/Electrical.aspx +++ b/SGGL/FineUIPro.Web/Transfer/Electrical.aspx @@ -15,8 +15,7 @@ diff --git a/SGGL/FineUIPro.Web/Transfer/Electrical.aspx.cs b/SGGL/FineUIPro.Web/Transfer/Electrical.aspx.cs index f36e3328..0c674ca9 100644 --- a/SGGL/FineUIPro.Web/Transfer/Electrical.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/Electrical.aspx.cs @@ -50,6 +50,9 @@ namespace FineUIPro.Web.Transfer strSql += " AND Test_Package_START <= @InspectionDateZ"; listStr.Add(new SqlParameter("@InspectionDateZ", Funs.GetNewDateTime(txtEndTime.Text.Trim()))); } + + strSql += " order by ELECTRICAL "; + SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); Grid1.RecordCount = tb.Rows.Count; diff --git a/SGGL/FineUIPro.Web/Transfer/ElectricalDataIn.aspx.cs b/SGGL/FineUIPro.Web/Transfer/ElectricalDataIn.aspx.cs index 039faf05..add980dc 100644 --- a/SGGL/FineUIPro.Web/Transfer/ElectricalDataIn.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/ElectricalDataIn.aspx.cs @@ -55,6 +55,10 @@ namespace FineUIPro.Web.Transfer { try { + errorInfos.Clear(); + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + if (this.fuAttachUrl.HasFile == false) { ShowNotify("请您选择Excel文件!", MessageBoxIcon.Warning); @@ -161,7 +165,7 @@ namespace FineUIPro.Web.Transfer ir = pds.Rows.Count; if (pds != null && ir > 0) { - for (int i = 0; i < ir; i++) + for (int i = 1; i < ir; i++) { string row4 = pds.Rows[i][4].ToString(); if (!string.IsNullOrEmpty(row4)) diff --git a/SGGL/FineUIPro.Web/Transfer/Firefighting.aspx b/SGGL/FineUIPro.Web/Transfer/Firefighting.aspx index 86011803..c342ea2e 100644 --- a/SGGL/FineUIPro.Web/Transfer/Firefighting.aspx +++ b/SGGL/FineUIPro.Web/Transfer/Firefighting.aspx @@ -15,8 +15,7 @@ diff --git a/SGGL/FineUIPro.Web/Transfer/Firefighting.aspx.cs b/SGGL/FineUIPro.Web/Transfer/Firefighting.aspx.cs index 1791c87c..e31ff404 100644 --- a/SGGL/FineUIPro.Web/Transfer/Firefighting.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/Firefighting.aspx.cs @@ -50,6 +50,9 @@ namespace FineUIPro.Web.Transfer strSql += " AND Test_Package_START <= @InspectionDateZ"; listStr.Add(new SqlParameter("@InspectionDateZ", Funs.GetNewDateTime(txtEndTime.Text.Trim()))); } + + strSql += " order by Firefighting "; + SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); Grid1.RecordCount = tb.Rows.Count; diff --git a/SGGL/FineUIPro.Web/Transfer/FirefightingDataIn.aspx.cs b/SGGL/FineUIPro.Web/Transfer/FirefightingDataIn.aspx.cs index ca87cd81..25961140 100644 --- a/SGGL/FineUIPro.Web/Transfer/FirefightingDataIn.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/FirefightingDataIn.aspx.cs @@ -56,6 +56,10 @@ namespace FineUIPro.Web.Transfer { try { + errorInfos.Clear(); + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + if (this.fuAttachUrl.HasFile == false) { ShowNotify("请您选择Excel文件!", MessageBoxIcon.Warning); @@ -162,7 +166,7 @@ namespace FineUIPro.Web.Transfer ir = pds.Rows.Count; if (pds != null && ir > 0) { - for (int i = 0; i < ir; i++) + for (int i = 1; i < ir; i++) { string row4 = pds.Rows[i][4].ToString(); if (!string.IsNullOrEmpty(row4)) diff --git a/SGGL/FineUIPro.Web/Transfer/HVAC.aspx b/SGGL/FineUIPro.Web/Transfer/HVAC.aspx new file mode 100644 index 00000000..0705d0af --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/HVAC.aspx @@ -0,0 +1,117 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HVAC.aspx.cs" Inherits="FineUIPro.Web.Transfer.HVAC" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + <%-- --%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%----%> + + + + + + + \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/HVAC.aspx.cs b/SGGL/FineUIPro.Web/Transfer/HVAC.aspx.cs new file mode 100644 index 00000000..2c981fe7 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/HVAC.aspx.cs @@ -0,0 +1,201 @@ +using BLL; +using BLL.CQMS.Comprehensive; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; + +namespace FineUIPro.Web.Transfer +{ + public partial class HVAC : PageBase + { + #region 加载 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + GetButtonPower(); + BindGrid(); + } + } + + /// + /// 数据绑定 + /// + public void BindGrid() + { + string strSql = @"select*from Transfer_HVAC + where ProjectId = @ProjectId"; + List listStr = new List(); + listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId)); + + if (!string.IsNullOrEmpty(this.txtHVAC.Text.Trim())) + { + strSql += " AND Plumbing like @Plumbing"; + listStr.Add(new SqlParameter("@Plumbing", "%" + this.txtHVAC.Text.Trim() + "%")); + } + if (!string.IsNullOrEmpty(txtStarTime.Text.Trim())) + { + strSql += " AND Test_Package_START >= @InspectionDateA"; + listStr.Add(new SqlParameter("@InspectionDateA", Funs.GetNewDateTime(txtStarTime.Text.Trim()))); + } + if (!string.IsNullOrEmpty(txtEndTime.Text.Trim())) + { + strSql += " AND Test_Package_START <= @InspectionDateZ"; + listStr.Add(new SqlParameter("@InspectionDateZ", Funs.GetNewDateTime(txtEndTime.Text.Trim()))); + } + strSql += " order by HVAC "; + + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.RecordCount = tb.Rows.Count; + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + #endregion + + #region 分页、排序 + /// + /// 分页下拉 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + BindGrid(); + } + + /// + /// 分页索引事件 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 排序 + /// + /// + /// + protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) + { + Grid1.SortDirection = e.SortDirection; + Grid1.SortField = e.SortField; + BindGrid(); + } + #endregion + + #region 查询 + /// + /// 查询 + /// + /// + /// + protected void btnSearch_Click(object sender, EventArgs e) + { + BindGrid(); + } + #endregion + + #region 关闭弹出窗口 + /// + /// 关闭弹出窗口 + /// + /// + /// + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + BindGrid(); + } + #endregion + + #region 删除 + /// + /// 右键删除 + /// + /// + /// + protected void btnMenuDel_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + Model.Transfer_HVAC model = Funs.DB.Transfer_HVAC.FirstOrDefault(x => x.Id == rowID); + if (model != null) + { + Funs.DB.Transfer_HVAC.DeleteOnSubmit(model); + Funs.DB.SubmitChanges(); + } + } + BindGrid(); + ShowNotify("删除数据成功!", MessageBoxIcon.Success); + } + } + #endregion + + #region 导入 + /// + /// 导入按钮 + /// + /// + /// + protected void btnImport_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("HVACDataIn.aspx", "导入 - "))); + } + #endregion + + #region 获取按钮权限 + /// + /// 获取按钮权限 + /// + /// + /// + private void GetButtonPower() + { + if (Request.Params["value"] == "0") + { + return; + } + var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.HVACMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(BLL.Const.BtnAdd)) + { + //this.btnNew.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnModify)) + { + //this.btnMenuModify.Hidden = false; + this.Grid1.EnableRowDoubleClickEvent = true; + } + else + { + this.Grid1.EnableRowDoubleClickEvent = false; + } + if (buttonList.Contains(BLL.Const.BtnDelete)) + { + this.btnMenuDel.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnSave)) + { + this.btnImport.Hidden = false; + } + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/HVAC.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/HVAC.aspx.designer.cs new file mode 100644 index 00000000..b796f0e3 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/HVAC.aspx.designer.cs @@ -0,0 +1,161 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Transfer +{ + + + public partial class HVAC + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// ToolSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar ToolSearch; + + /// + /// txtHVAC 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtHVAC; + + /// + /// txtStarTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtStarTime; + + /// + /// Label1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Label Label1; + + /// + /// txtEndTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtEndTime; + + /// + /// btnSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSearch; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// ToolbarText1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + + /// + /// Window2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window2; + + /// + /// Menu1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuDel 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.MenuButton btnMenuDel; + } +} diff --git a/SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx b/SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx new file mode 100644 index 00000000..bdbd0db0 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx @@ -0,0 +1,68 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HVACDataIn.aspx.cs" Inherits="FineUIPro.Web.Transfer.HVACDataIn" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx.cs b/SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx.cs new file mode 100644 index 00000000..3b779322 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx.cs @@ -0,0 +1,420 @@ +using BLL; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.OleDb; +using System.IO; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.Transfer +{ + public partial class HVACDataIn : PageBase + { + #region 定义变量 + /// + /// 上传预设的虚拟路径 + /// + private string initPath = Const.ExcelUrl; + + + /// + /// 错误集合 + /// + public static List errorInfos = new List(); + #endregion + + #region 加载 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.hdCheckResult.Text = string.Empty; + this.hdFileName.Text = string.Empty; + if (errorInfos != null) + { + errorInfos.Clear(); + } + } + } + #endregion + + #region 审核 + /// + /// 审核 + /// + /// + /// + protected void btnAudit_Click(object sender, EventArgs e) + { + try + { + errorInfos.Clear(); + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + if (this.fuAttachUrl.HasFile == false) + { + ShowNotify("请您选择Excel文件!", MessageBoxIcon.Warning); + return; + } + string IsXls = Path.GetExtension(this.fuAttachUrl.FileName).ToString().Trim().ToLower(); + if (IsXls != ".xls") + { + ShowNotify("只可以选择Excel文件!", MessageBoxIcon.Warning); + return; + } + if (errorInfos != null) + { + errorInfos.Clear(); + } + string rootPath = Server.MapPath("~/"); + string initFullPath = rootPath + initPath; + if (!Directory.Exists(initFullPath)) + { + Directory.CreateDirectory(initFullPath); + } + + this.hdFileName.Text = BLL.Funs.GetNewFileName() + IsXls; + string filePath = initFullPath + this.hdFileName.Text; + this.fuAttachUrl.PostedFile.SaveAs(filePath); + ImportXlsToData(rootPath + initPath + this.hdFileName.Text); + } + catch (Exception ex) + { + ShowNotify("'" + ex.Message + "'", MessageBoxIcon.Warning); + } + } + + #region 读Excel提取数据 + /// + /// 从Excel提取数据--》Dataset + /// + /// Excel文件路径名 + private void ImportXlsToData(string fileName) + { + try + { + string oleDBConnString = String.Empty; + oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;"; + oleDBConnString += "Data Source="; + oleDBConnString += fileName; + oleDBConnString += ";Extended Properties=Excel 8.0;"; + OleDbConnection oleDBConn = null; + OleDbDataAdapter oleAdMaster = null; + DataTable m_tableName = new DataTable(); + DataSet ds = new DataSet(); + + oleDBConn = new OleDbConnection(oleDBConnString); + oleDBConn.Open(); + m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); + + if (m_tableName != null && m_tableName.Rows.Count > 0) + { + + m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim(); + + } + string sqlMaster; + sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]"; + oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn); + oleAdMaster.Fill(ds, "m_tableName"); + oleAdMaster.Dispose(); + oleDBConn.Close(); + oleDBConn.Dispose(); + + AddDatasetToSQL(ds.Tables[0], 7); + hdCheckResult.Text = "1"; + } + catch (Exception exc) + { + Response.Write(exc); + //return null; + // return dt; + } + finally + { + } + } + #endregion + + #region 将Dataset的数据导入数据库 + /// + /// 将Dataset的数据导入数据库 + /// + /// 数据集 + /// 数据集行数 + /// + private bool AddDatasetToSQL(DataTable pds, int Cols) + { + string result = string.Empty; + int ic, ir; + ic = pds.Columns.Count; + if (ic < Cols) + { + ShowNotify("导入Excel格式错误!Excel只有" + ic.ToString().Trim() + "列", MessageBoxIcon.Warning); + return false; + } + + ir = pds.Rows.Count; + if (pds != null && ir > 0) + { + for (int i = 1; i < ir; i++) + { + string row4 = pds.Rows[i][4].ToString(); + if (!string.IsNullOrEmpty(row4)) + { + try + { + DateTime date = Convert.ToDateTime(row4.Trim()); + } + catch (Exception) + { + result += (i + 2).ToString() + "," + "Test Package START" + "," + "[" + row4 + "]错误!不是日期格式!" + "|"; + } + } + string row5 = pds.Rows[i][5].ToString(); + if (!string.IsNullOrEmpty(row4)) + { + try + { + DateTime date = Convert.ToDateTime(row5.Trim()); + } + catch (Exception) + { + result += (i + 2).ToString() + "," + "Test Package FINISH" + "," + "[" + row5 + "]错误!不是日期格式!" + "|"; + } + } + } + if (!string.IsNullOrEmpty(result)) + { + result = result.Substring(0, result.LastIndexOf("|")); + } + errorInfos.Clear(); + if (!string.IsNullOrEmpty(result)) + { + string results = result; + List errorInfoList = results.Split('|').ToList(); + foreach (var item in errorInfoList) + { + string[] errors = item.Split(','); + Model.ErrorInfo errorInfo = new Model.ErrorInfo(); + errorInfo.Row = errors[0]; + errorInfo.Column = errors[1]; + errorInfo.Reason = errors[2]; + errorInfos.Add(errorInfo); + } + if (errorInfos.Count > 0) + { + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + } + } + else + { + ShowNotify("审核完成,请点击导入!", MessageBoxIcon.Success); + } + } + + else + { + ShowNotify("导入数据为空!", MessageBoxIcon.Warning); + } + return true; + } + #endregion + #endregion + + #region 导入 + /// + /// 导入 + /// + /// + /// + protected void btnImport_Click(object sender, EventArgs e) + { + if (!string.IsNullOrEmpty(hdCheckResult.Text)) + { + if (errorInfos.Count <= 0) + { + string rootPath = Server.MapPath("~/"); + ImportXlsToData2(rootPath + initPath + this.hdFileName.Text); + hdCheckResult.Text = string.Empty; + ShowNotify("导入成功!", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + else + { + ShowNotify("请先将错误数据修正,再重新导入提交!", MessageBoxIcon.Warning); + } + } + else + { + ShowNotify("请先审核要导入的文件!", MessageBoxIcon.Warning); + } + } + + #region Excel提取数据 + /// + /// 从Excel提取数据--》Dataset + /// + /// Excel文件路径名 + private void ImportXlsToData2(string fileName) + { + try + { + string oleDBConnString = String.Empty; + oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;"; + oleDBConnString += "Data Source="; + oleDBConnString += fileName; + oleDBConnString += ";Extended Properties=Excel 8.0;"; + OleDbConnection oleDBConn = null; + OleDbDataAdapter oleAdMaster = null; + DataTable m_tableName = new DataTable(); + DataSet ds = new DataSet(); + + oleDBConn = new OleDbConnection(oleDBConnString); + oleDBConn.Open(); + m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); + + if (m_tableName != null && m_tableName.Rows.Count > 0) + { + + m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim(); + + } + string sqlMaster; + sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]"; + oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn); + oleAdMaster.Fill(ds, "m_tableName"); + oleAdMaster.Dispose(); + oleDBConn.Close(); + oleDBConn.Dispose(); + + AddDatasetToSQL2(ds.Tables[0], 7); + } + catch (Exception ex) + { + throw ex; + } + } + #endregion + + #region 将Dataset的数据导入数据库 + /// + /// 将Dataset的数据导入数据库 + /// + /// 数据集 + /// 数据集列数 + /// + private bool AddDatasetToSQL2(DataTable pds, int Cols) + { + int ic, ir; + ic = pds.Columns.Count; + if (ic < Cols) + { + ShowNotify("导入Excel格式错误!Excel只有" + ic.ToString().Trim() + "列", MessageBoxIcon.Warning); + } + string result = string.Empty; + ir = pds.Rows.Count; + if (pds != null && ir > 0) + { + List list = new List(); + for (int i = 1; i < ir; i++) + { + //查询第一列,没查到的情况下作导入处理 + var modelOnly = Funs.DB.Transfer_HVAC.FirstOrDefault(x => x.HVAC == pds.Rows[i][0].ToString().Trim() + && x.ProjectId == CurrUser.LoginProjectId); + if (modelOnly == null) + { + Model.Transfer_HVAC model = new Model.Transfer_HVAC(); + model.Id = Guid.NewGuid().ToString(); + model.ProjectId = CurrUser.LoginProjectId; + model.HVAC = pds.Rows[i][0].ToString().Trim(); + model.SystemName = pds.Rows[i][1].ToString().Trim(); + model.Subsystem = pds.Rows[i][2].ToString().Trim(); + model.Test_Package = pds.Rows[i][3].ToString().Trim(); + DateTime t1, t2; + if (DateTime.TryParse(pds.Rows[i][4].ToString(), out t1) && !string.IsNullOrEmpty(pds.Rows[i][4].ToString())) + model.Test_Package_START = t1; + if (DateTime.TryParse(pds.Rows[i][5].ToString(), out t2) && !string.IsNullOrEmpty(pds.Rows[i][5].ToString())) + model.Test_Package_FINISH = t2; + + model.FINAL_Status = pds.Rows[i][6].ToString().Trim(); + list.Add(model); + } + else + { + //修改 + modelOnly.HVAC = pds.Rows[i][0].ToString().Trim(); + modelOnly.SystemName = pds.Rows[i][1].ToString().Trim(); + modelOnly.Subsystem = pds.Rows[i][2].ToString().Trim(); + modelOnly.Test_Package = pds.Rows[i][3].ToString().Trim(); + DateTime t1, t2; + if (DateTime.TryParse(pds.Rows[i][4].ToString(), out t1) && !string.IsNullOrEmpty(pds.Rows[i][4].ToString())) + modelOnly.Test_Package_START = t1; + if (DateTime.TryParse(pds.Rows[i][5].ToString(), out t2) && !string.IsNullOrEmpty(pds.Rows[i][5].ToString())) + modelOnly.Test_Package_FINISH = t2; + modelOnly.FINAL_Status = pds.Rows[i][6].ToString().Trim(); + Funs.DB.SubmitChanges(); + } + } + if (list.Count > 0) + { + Funs.DB.Transfer_HVAC.InsertAllOnSubmit(list); + Funs.DB.SubmitChanges(); + } + } + else + { + ShowNotify("导入数据为空!", MessageBoxIcon.Warning); + } + return true; + } + #endregion + #endregion + + #region 下载模板 + /// + /// 下载模板按钮 + /// + /// + /// + protected void btnDownLoad_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Confirm.GetShowReference("确定下载导入模板吗?", String.Empty, MessageBoxIcon.Question, PageManager1.GetCustomEventReference(false, "Confirm_OK"), PageManager1.GetCustomEventReference("Confirm_Cancel"))); + } + + /// + /// 下载导入模板 + /// + /// + /// + protected void PageManager1_CustomEvent(object sender, CustomEventArgs e) + { + if (e.EventArgument == "Confirm_OK") + { + string rootPath = Server.MapPath("~/"); + string uploadfilepath = rootPath + "File\\Excel\\DataIn\\HVAC导入模板.xls"; + string filePath = "File\\Excel\\DataIn\\HVAC导入模板.xls"; + string fileName = Path.GetFileName(filePath); + FileInfo info = new FileInfo(uploadfilepath); + long fileSize = info.Length; + Response.ClearContent(); + Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)); + Response.ContentType = "excel/plain"; + Response.ContentEncoding = System.Text.Encoding.UTF8; + Response.AddHeader("Content-Length", fileSize.ToString().Trim()); + Response.TransmitFile(uploadfilepath, 0, fileSize); + Response.End(); + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx.designer.cs new file mode 100644 index 00000000..c88dc313 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/HVACDataIn.aspx.designer.cs @@ -0,0 +1,125 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Transfer +{ + + + public partial class HVACDataIn + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// SimpleForm1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// hdFileName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdFileName; + + /// + /// btnAudit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnAudit; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// btnDownLoad 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnDownLoad; + + /// + /// hdCheckResult 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdCheckResult; + + /// + /// fuAttachUrl 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.FileUpload fuAttachUrl; + + /// + /// gvErrorInfo 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid gvErrorInfo; + + /// + /// lblPageIndex 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + } +} diff --git a/SGGL/FineUIPro.Web/Transfer/Instrumentation.aspx b/SGGL/FineUIPro.Web/Transfer/Instrumentation.aspx index e0286ad0..ca15bdec 100644 --- a/SGGL/FineUIPro.Web/Transfer/Instrumentation.aspx +++ b/SGGL/FineUIPro.Web/Transfer/Instrumentation.aspx @@ -15,8 +15,7 @@ diff --git a/SGGL/FineUIPro.Web/Transfer/Instrumentation.aspx.cs b/SGGL/FineUIPro.Web/Transfer/Instrumentation.aspx.cs index f03ed819..00eb6ea4 100644 --- a/SGGL/FineUIPro.Web/Transfer/Instrumentation.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/Instrumentation.aspx.cs @@ -50,6 +50,9 @@ namespace FineUIPro.Web.Transfer strSql += " AND Test_Package_START <= @InspectionDateZ"; listStr.Add(new SqlParameter("@InspectionDateZ", Funs.GetNewDateTime(txtEndTime.Text.Trim()))); } + + strSql += " order by INSTRUMENTATION "; + SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); Grid1.RecordCount = tb.Rows.Count; diff --git a/SGGL/FineUIPro.Web/Transfer/InstrumentationDataIn.aspx.cs b/SGGL/FineUIPro.Web/Transfer/InstrumentationDataIn.aspx.cs index c4c6f558..afe7ca2f 100644 --- a/SGGL/FineUIPro.Web/Transfer/InstrumentationDataIn.aspx.cs +++ b/SGGL/FineUIPro.Web/Transfer/InstrumentationDataIn.aspx.cs @@ -56,6 +56,10 @@ namespace FineUIPro.Web.Transfer { try { + errorInfos.Clear(); + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + if (this.fuAttachUrl.HasFile == false) { ShowNotify("请您选择Excel文件!", MessageBoxIcon.Warning); @@ -162,7 +166,7 @@ namespace FineUIPro.Web.Transfer ir = pds.Rows.Count; if (pds != null && ir > 0) { - for (int i = 0; i < ir; i++) + for (int i = 1; i < ir; i++) { string row4 = pds.Rows[i][4].ToString(); if (!string.IsNullOrEmpty(row4)) diff --git a/SGGL/FineUIPro.Web/Transfer/Plumbing.aspx b/SGGL/FineUIPro.Web/Transfer/Plumbing.aspx new file mode 100644 index 00000000..5a7dcf8c --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/Plumbing.aspx @@ -0,0 +1,116 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Plumbing.aspx.cs" Inherits="FineUIPro.Web.Transfer.Plumbing" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + <%-- --%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%----%> + + + + + + + diff --git a/SGGL/FineUIPro.Web/Transfer/Plumbing.aspx.cs b/SGGL/FineUIPro.Web/Transfer/Plumbing.aspx.cs new file mode 100644 index 00000000..f1873d04 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/Plumbing.aspx.cs @@ -0,0 +1,202 @@ +using BLL; +using BLL.CQMS.Comprehensive; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; + + +namespace FineUIPro.Web.Transfer +{ + public partial class Plumbing : PageBase + { + #region 加载 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + GetButtonPower(); + BindGrid(); + } + } + + /// + /// 数据绑定 + /// + public void BindGrid() + { + string strSql = @"select*from Transfer_Plumbing + where ProjectId = @ProjectId"; + List listStr = new List(); + listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId)); + + if (!string.IsNullOrEmpty(this.txtPlumbing.Text.Trim())) + { + strSql += " AND Plumbing like @Plumbing"; + listStr.Add(new SqlParameter("@Plumbing", "%" + this.txtPlumbing.Text.Trim() + "%")); + } + if (!string.IsNullOrEmpty(txtStarTime.Text.Trim())) + { + strSql += " AND Test_Package_START >= @InspectionDateA"; + listStr.Add(new SqlParameter("@InspectionDateA", Funs.GetNewDateTime(txtStarTime.Text.Trim()))); + } + if (!string.IsNullOrEmpty(txtEndTime.Text.Trim())) + { + strSql += " AND Test_Package_START <= @InspectionDateZ"; + listStr.Add(new SqlParameter("@InspectionDateZ", Funs.GetNewDateTime(txtEndTime.Text.Trim()))); + } + + strSql += " order by Plumbing "; + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.RecordCount = tb.Rows.Count; + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + #endregion + + #region 分页、排序 + /// + /// 分页下拉 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + BindGrid(); + } + + /// + /// 分页索引事件 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 排序 + /// + /// + /// + protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) + { + Grid1.SortDirection = e.SortDirection; + Grid1.SortField = e.SortField; + BindGrid(); + } + #endregion + + #region 查询 + /// + /// 查询 + /// + /// + /// + protected void btnSearch_Click(object sender, EventArgs e) + { + BindGrid(); + } + #endregion + + #region 关闭弹出窗口 + /// + /// 关闭弹出窗口 + /// + /// + /// + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + BindGrid(); + } + #endregion + + #region 删除 + /// + /// 右键删除 + /// + /// + /// + protected void btnMenuDel_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + Model.Transfer_Plumbing model = Funs.DB.Transfer_Plumbing.FirstOrDefault(x => x.Id == rowID); + if (model != null) + { + Funs.DB.Transfer_Plumbing.DeleteOnSubmit(model); + Funs.DB.SubmitChanges(); + } + } + BindGrid(); + ShowNotify("删除数据成功!", MessageBoxIcon.Success); + } + } + #endregion + + #region 导入 + /// + /// 导入按钮 + /// + /// + /// + protected void btnImport_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("PlumbingDataIn.aspx", "导入 - "))); + } + #endregion + + #region 获取按钮权限 + /// + /// 获取按钮权限 + /// + /// + /// + private void GetButtonPower() + { + if (Request.Params["value"] == "0") + { + return; + } + var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.PlumbingMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(BLL.Const.BtnAdd)) + { + //this.btnNew.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnModify)) + { + //this.btnMenuModify.Hidden = false; + this.Grid1.EnableRowDoubleClickEvent = true; + } + else + { + this.Grid1.EnableRowDoubleClickEvent = false; + } + if (buttonList.Contains(BLL.Const.BtnDelete)) + { + this.btnMenuDel.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnSave)) + { + this.btnImport.Hidden = false; + } + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/Plumbing.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/Plumbing.aspx.designer.cs new file mode 100644 index 00000000..d79c6e0c --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/Plumbing.aspx.designer.cs @@ -0,0 +1,161 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Transfer +{ + + + public partial class Plumbing + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// ToolSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar ToolSearch; + + /// + /// txtPlumbing 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtPlumbing; + + /// + /// txtStarTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtStarTime; + + /// + /// Label1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Label Label1; + + /// + /// txtEndTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtEndTime; + + /// + /// btnSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSearch; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// ToolbarText1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + + /// + /// Window2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window2; + + /// + /// Menu1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuDel 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.MenuButton btnMenuDel; + } +} diff --git a/SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx b/SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx new file mode 100644 index 00000000..bef022a6 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx @@ -0,0 +1,68 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PlumbingDataIn.aspx.cs" Inherits="FineUIPro.Web.Transfer.PlumbingDataIn" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx.cs b/SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx.cs new file mode 100644 index 00000000..1a358706 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx.cs @@ -0,0 +1,421 @@ +using BLL; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.OleDb; +using System.IO; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.Transfer +{ + public partial class PlumbingDataIn : PageBase + { + #region 定义变量 + /// + /// 上传预设的虚拟路径 + /// + private string initPath = Const.ExcelUrl; + + + /// + /// 错误集合 + /// + public static List errorInfos = new List(); + #endregion + + #region 加载 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.hdCheckResult.Text = string.Empty; + this.hdFileName.Text = string.Empty; + if (errorInfos != null) + { + errorInfos.Clear(); + } + } + } + #endregion + + #region 审核 + /// + /// 审核 + /// + /// + /// + protected void btnAudit_Click(object sender, EventArgs e) + { + try + { + errorInfos.Clear(); + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + + if (this.fuAttachUrl.HasFile == false) + { + ShowNotify("请您选择Excel文件!", MessageBoxIcon.Warning); + return; + } + string IsXls = Path.GetExtension(this.fuAttachUrl.FileName).ToString().Trim().ToLower(); + if (IsXls != ".xls") + { + ShowNotify("只可以选择Excel文件!", MessageBoxIcon.Warning); + return; + } + if (errorInfos != null) + { + errorInfos.Clear(); + } + string rootPath = Server.MapPath("~/"); + string initFullPath = rootPath + initPath; + if (!Directory.Exists(initFullPath)) + { + Directory.CreateDirectory(initFullPath); + } + + this.hdFileName.Text = BLL.Funs.GetNewFileName() + IsXls; + string filePath = initFullPath + this.hdFileName.Text; + this.fuAttachUrl.PostedFile.SaveAs(filePath); + ImportXlsToData(rootPath + initPath + this.hdFileName.Text); + } + catch (Exception ex) + { + ShowNotify("'" + ex.Message + "'", MessageBoxIcon.Warning); + } + } + + #region 读Excel提取数据 + /// + /// 从Excel提取数据--》Dataset + /// + /// Excel文件路径名 + private void ImportXlsToData(string fileName) + { + try + { + string oleDBConnString = String.Empty; + oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;"; + oleDBConnString += "Data Source="; + oleDBConnString += fileName; + oleDBConnString += ";Extended Properties=Excel 8.0;"; + OleDbConnection oleDBConn = null; + OleDbDataAdapter oleAdMaster = null; + DataTable m_tableName = new DataTable(); + DataSet ds = new DataSet(); + + oleDBConn = new OleDbConnection(oleDBConnString); + oleDBConn.Open(); + m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); + + if (m_tableName != null && m_tableName.Rows.Count > 0) + { + + m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim(); + + } + string sqlMaster; + sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]"; + oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn); + oleAdMaster.Fill(ds, "m_tableName"); + oleAdMaster.Dispose(); + oleDBConn.Close(); + oleDBConn.Dispose(); + + AddDatasetToSQL(ds.Tables[0], 7); + hdCheckResult.Text = "1"; + } + catch (Exception exc) + { + Response.Write(exc); + //return null; + // return dt; + } + finally + { + } + } + #endregion + + #region 将Dataset的数据导入数据库 + /// + /// 将Dataset的数据导入数据库 + /// + /// 数据集 + /// 数据集行数 + /// + private bool AddDatasetToSQL(DataTable pds, int Cols) + { + string result = string.Empty; + int ic, ir; + ic = pds.Columns.Count; + if (ic < Cols) + { + ShowNotify("导入Excel格式错误!Excel只有" + ic.ToString().Trim() + "列", MessageBoxIcon.Warning); + return false; + } + + ir = pds.Rows.Count; + if (pds != null && ir > 0) + { + for (int i = 1; i < ir; i++) + { + string row4 = pds.Rows[i][4].ToString(); + if (!string.IsNullOrEmpty(row4)) + { + try + { + DateTime date = Convert.ToDateTime(row4.Trim()); + } + catch (Exception) + { + result += (i + 2).ToString() + "," + "Test Package START" + "," + "[" + row4 + "]错误!不是日期格式!" + "|"; + } + } + string row5 = pds.Rows[i][5].ToString(); + if (!string.IsNullOrEmpty(row4)) + { + try + { + DateTime date = Convert.ToDateTime(row5.Trim()); + } + catch (Exception) + { + result += (i + 2).ToString() + "," + "Test Package FINISH" + "," + "[" + row5 + "]错误!不是日期格式!" + "|"; + } + } + } + if (!string.IsNullOrEmpty(result)) + { + result = result.Substring(0, result.LastIndexOf("|")); + } + errorInfos.Clear(); + if (!string.IsNullOrEmpty(result)) + { + string results = result; + List errorInfoList = results.Split('|').ToList(); + foreach (var item in errorInfoList) + { + string[] errors = item.Split(','); + Model.ErrorInfo errorInfo = new Model.ErrorInfo(); + errorInfo.Row = errors[0]; + errorInfo.Column = errors[1]; + errorInfo.Reason = errors[2]; + errorInfos.Add(errorInfo); + } + if (errorInfos.Count > 0) + { + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + } + } + else + { + ShowNotify("审核完成,请点击导入!", MessageBoxIcon.Success); + } + } + + else + { + ShowNotify("导入数据为空!", MessageBoxIcon.Warning); + } + return true; + } + #endregion + #endregion + + #region 导入 + /// + /// 导入 + /// + /// + /// + protected void btnImport_Click(object sender, EventArgs e) + { + if (!string.IsNullOrEmpty(hdCheckResult.Text)) + { + if (errorInfos.Count <= 0) + { + string rootPath = Server.MapPath("~/"); + ImportXlsToData2(rootPath + initPath + this.hdFileName.Text); + hdCheckResult.Text = string.Empty; + ShowNotify("导入成功!", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + else + { + ShowNotify("请先将错误数据修正,再重新导入提交!", MessageBoxIcon.Warning); + } + } + else + { + ShowNotify("请先审核要导入的文件!", MessageBoxIcon.Warning); + } + } + + #region Excel提取数据 + /// + /// 从Excel提取数据--》Dataset + /// + /// Excel文件路径名 + private void ImportXlsToData2(string fileName) + { + try + { + string oleDBConnString = String.Empty; + oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;"; + oleDBConnString += "Data Source="; + oleDBConnString += fileName; + oleDBConnString += ";Extended Properties=Excel 8.0;"; + OleDbConnection oleDBConn = null; + OleDbDataAdapter oleAdMaster = null; + DataTable m_tableName = new DataTable(); + DataSet ds = new DataSet(); + + oleDBConn = new OleDbConnection(oleDBConnString); + oleDBConn.Open(); + m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); + + if (m_tableName != null && m_tableName.Rows.Count > 0) + { + + m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim(); + + } + string sqlMaster; + sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]"; + oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn); + oleAdMaster.Fill(ds, "m_tableName"); + oleAdMaster.Dispose(); + oleDBConn.Close(); + oleDBConn.Dispose(); + + AddDatasetToSQL2(ds.Tables[0], 7); + } + catch (Exception ex) + { + throw ex; + } + } + #endregion + + #region 将Dataset的数据导入数据库 + /// + /// 将Dataset的数据导入数据库 + /// + /// 数据集 + /// 数据集列数 + /// + private bool AddDatasetToSQL2(DataTable pds, int Cols) + { + int ic, ir; + ic = pds.Columns.Count; + if (ic < Cols) + { + ShowNotify("导入Excel格式错误!Excel只有" + ic.ToString().Trim() + "列", MessageBoxIcon.Warning); + } + string result = string.Empty; + ir = pds.Rows.Count; + if (pds != null && ir > 0) + { + List list = new List(); + for (int i = 1; i < ir; i++) + { + //查询第一列,没查到的情况下作导入处理 + var modelOnly = Funs.DB.Transfer_Plumbing.FirstOrDefault(x => x.Plumbing == pds.Rows[i][0].ToString().Trim() + && x.ProjectId == CurrUser.LoginProjectId); + if (modelOnly == null) + { + Model.Transfer_Plumbing model = new Model.Transfer_Plumbing(); + model.Id = Guid.NewGuid().ToString(); + model.ProjectId = CurrUser.LoginProjectId; + model.Plumbing = pds.Rows[i][0].ToString().Trim(); + model.SystemName = pds.Rows[i][1].ToString().Trim(); + model.Subsystem = pds.Rows[i][2].ToString().Trim(); + model.Test_Package = pds.Rows[i][3].ToString().Trim(); + DateTime t1, t2; + if (DateTime.TryParse(pds.Rows[i][4].ToString(), out t1) && !string.IsNullOrEmpty(pds.Rows[i][4].ToString())) + model.Test_Package_START = t1; + if (DateTime.TryParse(pds.Rows[i][5].ToString(), out t2) && !string.IsNullOrEmpty(pds.Rows[i][5].ToString())) + model.Test_Package_FINISH = t2; + + model.FINAL_Status = pds.Rows[i][6].ToString().Trim(); + list.Add(model); + } + else + { + //修改 + modelOnly.Plumbing = pds.Rows[i][0].ToString().Trim(); + modelOnly.SystemName = pds.Rows[i][1].ToString().Trim(); + modelOnly.Subsystem = pds.Rows[i][2].ToString().Trim(); + modelOnly.Test_Package = pds.Rows[i][3].ToString().Trim(); + DateTime t1, t2; + if (DateTime.TryParse(pds.Rows[i][4].ToString(), out t1) && !string.IsNullOrEmpty(pds.Rows[i][4].ToString())) + modelOnly.Test_Package_START = t1; + if (DateTime.TryParse(pds.Rows[i][5].ToString(), out t2) && !string.IsNullOrEmpty(pds.Rows[i][5].ToString())) + modelOnly.Test_Package_FINISH = t2; + modelOnly.FINAL_Status = pds.Rows[i][6].ToString().Trim(); + Funs.DB.SubmitChanges(); + } + } + if (list.Count > 0) + { + Funs.DB.Transfer_Plumbing.InsertAllOnSubmit(list); + Funs.DB.SubmitChanges(); + } + } + else + { + ShowNotify("导入数据为空!", MessageBoxIcon.Warning); + } + return true; + } + #endregion + #endregion + + #region 下载模板 + /// + /// 下载模板按钮 + /// + /// + /// + protected void btnDownLoad_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Confirm.GetShowReference("确定下载导入模板吗?", String.Empty, MessageBoxIcon.Question, PageManager1.GetCustomEventReference(false, "Confirm_OK"), PageManager1.GetCustomEventReference("Confirm_Cancel"))); + } + + /// + /// 下载导入模板 + /// + /// + /// + protected void PageManager1_CustomEvent(object sender, CustomEventArgs e) + { + if (e.EventArgument == "Confirm_OK") + { + string rootPath = Server.MapPath("~/"); + string uploadfilepath = rootPath + "File\\Excel\\DataIn\\Plumbing导入模板.xls"; + string filePath = "File\\Excel\\DataIn\\Plumbing导入模板.xls"; + string fileName = Path.GetFileName(filePath); + FileInfo info = new FileInfo(uploadfilepath); + long fileSize = info.Length; + Response.ClearContent(); + Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)); + Response.ContentType = "excel/plain"; + Response.ContentEncoding = System.Text.Encoding.UTF8; + Response.AddHeader("Content-Length", fileSize.ToString().Trim()); + Response.TransmitFile(uploadfilepath, 0, fileSize); + Response.End(); + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx.designer.cs new file mode 100644 index 00000000..bd6ee9f7 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/PlumbingDataIn.aspx.designer.cs @@ -0,0 +1,125 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Transfer +{ + + + public partial class PlumbingDataIn + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// SimpleForm1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// hdFileName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdFileName; + + /// + /// btnAudit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnAudit; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// btnDownLoad 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnDownLoad; + + /// + /// hdCheckResult 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdCheckResult; + + /// + /// fuAttachUrl 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.FileUpload fuAttachUrl; + + /// + /// gvErrorInfo 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid gvErrorInfo; + + /// + /// lblPageIndex 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + } +} diff --git a/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx b/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx new file mode 100644 index 00000000..551cf92d --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx @@ -0,0 +1,144 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PunchlistFrom.aspx.cs" Inherits="FineUIPro.Web.Transfer.PunchlistFrom" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + <%-- --%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%-- + + + + + + + + + + + + + + + --%> + + + + + + + + + + + + + + + + + + + + + + + <%----%> + + + + + + + \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx.cs b/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx.cs new file mode 100644 index 00000000..81f69bd4 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx.cs @@ -0,0 +1,200 @@ +using BLL; +using BLL.CQMS.Comprehensive; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; + +namespace FineUIPro.Web.Transfer +{ + public partial class PunchlistFrom : PageBase + { + #region 加载 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + GetButtonPower(); + BindGrid(); + } + } + + /// + /// 数据绑定 + /// + public void BindGrid() + { + string strSql = @"select*from Transfer_PunchlistFrom + where ProjectId = @ProjectId"; + List listStr = new List(); + listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId)); + + if (!string.IsNullOrEmpty(this.txtPunch_No.Text.Trim())) + { + strSql += " AND Punch_No like @Punch_No"; + listStr.Add(new SqlParameter("@Punch_No", "%" + this.txtPunch_No.Text.Trim() + "%")); + } + if (!string.IsNullOrEmpty(txtStarTime.Text.Trim())) + { + strSql += " AND PUNCH_ITEM_FINISH_DATE >= @InspectionDateA"; + listStr.Add(new SqlParameter("@InspectionDateA", Funs.GetNewDateTime(txtStarTime.Text.Trim()))); + } + if (!string.IsNullOrEmpty(txtEndTime.Text.Trim())) + { + strSql += " AND PUNCH_ITEM_FINISH_DATE <= @InspectionDateZ"; + listStr.Add(new SqlParameter("@InspectionDateZ", Funs.GetNewDateTime(txtEndTime.Text.Trim()))); + } + strSql += " order by Punch_No "; + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.RecordCount = tb.Rows.Count; + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + #endregion + + #region 分页、排序 + /// + /// 分页下拉 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + BindGrid(); + } + + /// + /// 分页索引事件 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 排序 + /// + /// + /// + protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) + { + Grid1.SortDirection = e.SortDirection; + Grid1.SortField = e.SortField; + BindGrid(); + } + #endregion + + #region 查询 + /// + /// 查询 + /// + /// + /// + protected void btnSearch_Click(object sender, EventArgs e) + { + BindGrid(); + } + #endregion + + #region 关闭弹出窗口 + /// + /// 关闭弹出窗口 + /// + /// + /// + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + BindGrid(); + } + #endregion + + #region 删除 + /// + /// 右键删除 + /// + /// + /// + protected void btnMenuDel_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + Model.Transfer_PunchlistFrom model = Funs.DB.Transfer_PunchlistFrom.FirstOrDefault(x => x.Id == rowID); + if (model != null) + { + Funs.DB.Transfer_PunchlistFrom.DeleteOnSubmit(model); + Funs.DB.SubmitChanges(); + } + } + BindGrid(); + ShowNotify("删除数据成功!", MessageBoxIcon.Success); + } + } + #endregion + + #region 导入 + /// + /// 导入按钮 + /// + /// + /// + protected void btnImport_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("PunchlistFromDataIn.aspx", "导入 - "))); + } + #endregion + + #region 获取按钮权限 + /// + /// 获取按钮权限 + /// + /// + /// + private void GetButtonPower() + { + if (Request.Params["value"] == "0") + { + return; + } + var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.PunchlistFromMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(BLL.Const.BtnAdd)) + { + //this.btnNew.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnModify)) + { + //this.btnMenuModify.Hidden = false; + this.Grid1.EnableRowDoubleClickEvent = true; + } + else + { + this.Grid1.EnableRowDoubleClickEvent = false; + } + if (buttonList.Contains(BLL.Const.BtnDelete)) + { + this.btnMenuDel.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnSave)) + { + this.btnImport.Hidden = false; + } + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx.designer.cs new file mode 100644 index 00000000..ac2dc2ef --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx.designer.cs @@ -0,0 +1,161 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Transfer +{ + + + public partial class PunchlistFrom + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// ToolSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar ToolSearch; + + /// + /// txtPunch_No 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtPunch_No; + + /// + /// txtStarTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtStarTime; + + /// + /// Label1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Label Label1; + + /// + /// txtEndTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtEndTime; + + /// + /// btnSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSearch; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// ToolbarText1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + + /// + /// Window2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window2; + + /// + /// Menu1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuDel 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.MenuButton btnMenuDel; + } +} diff --git a/SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx b/SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx new file mode 100644 index 00000000..a48490d0 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx @@ -0,0 +1,68 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PunchlistFromDataIn.aspx.cs" Inherits="FineUIPro.Web.Transfer.PunchlistFromDataIn" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx.cs b/SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx.cs new file mode 100644 index 00000000..6922c30a --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx.cs @@ -0,0 +1,425 @@ +using BLL; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.OleDb; +using System.IO; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.Transfer +{ + public partial class PunchlistFromDataIn : PageBase + { + #region 定义变量 + /// + /// 上传预设的虚拟路径 + /// + private string initPath = Const.ExcelUrl; + + + /// + /// 错误集合 + /// + public static List errorInfos = new List(); + #endregion + + #region 加载 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.hdCheckResult.Text = string.Empty; + this.hdFileName.Text = string.Empty; + if (errorInfos != null) + { + errorInfos.Clear(); + } + } + } + #endregion + + #region 审核 + /// + /// 审核 + /// + /// + /// + protected void btnAudit_Click(object sender, EventArgs e) + { + try + { + errorInfos.Clear(); + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + + if (this.fuAttachUrl.HasFile == false) + { + ShowNotify("请您选择Excel文件!", MessageBoxIcon.Warning); + return; + } + string IsXls = Path.GetExtension(this.fuAttachUrl.FileName).ToString().Trim().ToLower(); + if (IsXls != ".xls") + { + ShowNotify("只可以选择Excel文件!", MessageBoxIcon.Warning); + return; + } + if (errorInfos != null) + { + errorInfos.Clear(); + } + string rootPath = Server.MapPath("~/"); + string initFullPath = rootPath + initPath; + if (!Directory.Exists(initFullPath)) + { + Directory.CreateDirectory(initFullPath); + } + + this.hdFileName.Text = BLL.Funs.GetNewFileName() + IsXls; + string filePath = initFullPath + this.hdFileName.Text; + this.fuAttachUrl.PostedFile.SaveAs(filePath); + ImportXlsToData(rootPath + initPath + this.hdFileName.Text); + } + catch (Exception ex) + { + ShowNotify("'" + ex.Message + "'", MessageBoxIcon.Warning); + } + } + + #region 读Excel提取数据 + /// + /// 从Excel提取数据--》Dataset + /// + /// Excel文件路径名 + private void ImportXlsToData(string fileName) + { + try + { + string oleDBConnString = String.Empty; + oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;"; + oleDBConnString += "Data Source="; + oleDBConnString += fileName; + oleDBConnString += ";Extended Properties=Excel 8.0;"; + OleDbConnection oleDBConn = null; + OleDbDataAdapter oleAdMaster = null; + DataTable m_tableName = new DataTable(); + DataSet ds = new DataSet(); + + oleDBConn = new OleDbConnection(oleDBConnString); + oleDBConn.Open(); + m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); + + if (m_tableName != null && m_tableName.Rows.Count > 0) + { + + m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim(); + + } + string sqlMaster; + sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]"; + oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn); + oleAdMaster.Fill(ds, "m_tableName"); + oleAdMaster.Dispose(); + oleDBConn.Close(); + oleDBConn.Dispose(); + + AddDatasetToSQL(ds.Tables[0], 14); + hdCheckResult.Text = "1"; + } + catch (Exception exc) + { + Response.Write(exc); + //return null; + // return dt; + } + finally + { + } + } + #endregion + + #region 将Dataset的数据导入数据库 + /// + /// 将Dataset的数据导入数据库 + /// + /// 数据集 + /// 数据集行数 + /// + private bool AddDatasetToSQL(DataTable pds, int Cols) + { + string result = string.Empty; + int ic, ir; + ic = pds.Columns.Count; + if (ic < Cols) + { + ShowNotify("导入Excel格式错误!Excel只有" + ic.ToString().Trim() + "列", MessageBoxIcon.Warning); + return false; + } + + ir = pds.Rows.Count; + if (pds != null && ir > 0) + { + for (int i = 1; i < ir; i++) + { + string row4 = pds.Rows[i][9].ToString(); + if (!string.IsNullOrEmpty(row4)) + { + try + { + DateTime date = Convert.ToDateTime(row4.Trim()); + } + catch (Exception) + { + result += (i + 2).ToString() + "," + "PUNCH ITEM FINISH DATE" + "," + "[" + row4 + "]错误!不是日期格式!" + "|"; + } + } + } + if (!string.IsNullOrEmpty(result)) + { + result = result.Substring(0, result.LastIndexOf("|")); + } + errorInfos.Clear(); + if (!string.IsNullOrEmpty(result)) + { + string results = result; + List errorInfoList = results.Split('|').ToList(); + foreach (var item in errorInfoList) + { + string[] errors = item.Split(','); + Model.ErrorInfo errorInfo = new Model.ErrorInfo(); + errorInfo.Row = errors[0]; + errorInfo.Column = errors[1]; + errorInfo.Reason = errors[2]; + errorInfos.Add(errorInfo); + } + if (errorInfos.Count > 0) + { + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + } + } + else + { + ShowNotify("审核完成,请点击导入!", MessageBoxIcon.Success); + } + } + + else + { + ShowNotify("导入数据为空!", MessageBoxIcon.Warning); + } + return true; + } + #endregion + #endregion + + #region 导入 + /// + /// 导入 + /// + /// + /// + protected void btnImport_Click(object sender, EventArgs e) + { + if (!string.IsNullOrEmpty(hdCheckResult.Text)) + { + if (errorInfos.Count <= 0) + { + string rootPath = Server.MapPath("~/"); + ImportXlsToData2(rootPath + initPath + this.hdFileName.Text); + hdCheckResult.Text = string.Empty; + ShowNotify("导入成功!", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + else + { + ShowNotify("请先将错误数据修正,再重新导入提交!", MessageBoxIcon.Warning); + } + } + else + { + ShowNotify("请先审核要导入的文件!", MessageBoxIcon.Warning); + } + } + + #region Excel提取数据 + /// + /// 从Excel提取数据--》Dataset + /// + /// Excel文件路径名 + private void ImportXlsToData2(string fileName) + { + try + { + string oleDBConnString = String.Empty; + oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;"; + oleDBConnString += "Data Source="; + oleDBConnString += fileName; + oleDBConnString += ";Extended Properties=Excel 8.0;"; + OleDbConnection oleDBConn = null; + OleDbDataAdapter oleAdMaster = null; + DataTable m_tableName = new DataTable(); + DataSet ds = new DataSet(); + + oleDBConn = new OleDbConnection(oleDBConnString); + oleDBConn.Open(); + m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); + + if (m_tableName != null && m_tableName.Rows.Count > 0) + { + + m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim(); + + } + string sqlMaster; + sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]"; + oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn); + oleAdMaster.Fill(ds, "m_tableName"); + oleAdMaster.Dispose(); + oleDBConn.Close(); + oleDBConn.Dispose(); + + AddDatasetToSQL2(ds.Tables[0], 14); + } + catch (Exception ex) + { + throw ex; + } + } + #endregion + + #region 将Dataset的数据导入数据库 + /// + /// 将Dataset的数据导入数据库 + /// + /// 数据集 + /// 数据集列数 + /// + private bool AddDatasetToSQL2(DataTable pds, int Cols) + { + int ic, ir; + ic = pds.Columns.Count; + if (ic < Cols) + { + ShowNotify("导入Excel格式错误!Excel只有" + ic.ToString().Trim() + "列", MessageBoxIcon.Warning); + } + string result = string.Empty; + ir = pds.Rows.Count; + if (pds != null && ir > 0) + { + List list = new List(); + for (int i = 1; i < ir; i++) + { + //查询第一列,没查到的情况下作导入处理 + var modelOnly = Funs.DB.Transfer_PunchlistFrom.FirstOrDefault(x => x.Punch_No == pds.Rows[i][0].ToString().Trim() + && x.ProjectId == CurrUser.LoginProjectId); + if (modelOnly == null) + { + Model.Transfer_PunchlistFrom model = new Model.Transfer_PunchlistFrom(); + + model.Id = Guid.NewGuid().ToString(); + model.ProjectId = CurrUser.LoginProjectId; + + model.Item_No = pds.Rows[i][0].ToString().Trim(); + model.Punch_No = pds.Rows[i][1].ToString().Trim(); + model.SystemName = pds.Rows[i][2].ToString().Trim(); + model.Subsystem = pds.Rows[i][3].ToString().Trim(); + + model.Test_Package = pds.Rows[i][4].ToString().Trim(); + model.Discipline = pds.Rows[i][5].ToString().Trim(); + model.DESCRIPTION = pds.Rows[i][6].ToString().Trim(); + model.Identified = pds.Rows[i][7].ToString().Trim(); + model.Category = pds.Rows[i][8].ToString().Trim(); + DateTime t1; + if (DateTime.TryParse(pds.Rows[i][9].ToString(), out t1) && !string.IsNullOrEmpty(pds.Rows[i][9].ToString())) + model.PUNCH_ITEM_FINISH_DATE = t1; + + + model.Action_By = pds.Rows[i][10].ToString().Trim(); + model.Required_By = pds.Rows[i][11].ToString().Trim(); + model.PUNCH_ITEM_STATUS = pds.Rows[i][12].ToString().Trim(); + model.Comments = pds.Rows[i][13].ToString().Trim(); + list.Add(model); + } + else + { + //修改 + modelOnly.Item_No = pds.Rows[i][0].ToString().Trim(); + modelOnly.Punch_No = pds.Rows[i][1].ToString().Trim(); + modelOnly.SystemName = pds.Rows[i][2].ToString().Trim(); + modelOnly.Subsystem = pds.Rows[i][3].ToString().Trim(); + modelOnly.Test_Package = pds.Rows[i][4].ToString().Trim(); + modelOnly.Discipline = pds.Rows[i][5].ToString().Trim(); + modelOnly.DESCRIPTION = pds.Rows[i][6].ToString().Trim(); + modelOnly.Identified = pds.Rows[i][7].ToString().Trim(); + modelOnly.Category = pds.Rows[i][8].ToString().Trim(); + DateTime t1; + if (DateTime.TryParse(pds.Rows[i][9].ToString(), out t1) && !string.IsNullOrEmpty(pds.Rows[i][9].ToString())) + modelOnly.PUNCH_ITEM_FINISH_DATE = t1; + modelOnly.Action_By = pds.Rows[i][10].ToString().Trim(); + modelOnly.Required_By = pds.Rows[i][11].ToString().Trim(); + modelOnly.PUNCH_ITEM_STATUS = pds.Rows[i][12].ToString().Trim(); + modelOnly.Comments = pds.Rows[i][13].ToString().Trim(); + Funs.DB.SubmitChanges(); + } + } + if (list.Count > 0) + { + Funs.DB.Transfer_PunchlistFrom.InsertAllOnSubmit(list); + Funs.DB.SubmitChanges(); + } + } + else + { + ShowNotify("导入数据为空!", MessageBoxIcon.Warning); + } + return true; + } + #endregion + #endregion + + #region 下载模板 + /// + /// 下载模板按钮 + /// + /// + /// + protected void btnDownLoad_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Confirm.GetShowReference("确定下载导入模板吗?", String.Empty, MessageBoxIcon.Question, PageManager1.GetCustomEventReference(false, "Confirm_OK"), PageManager1.GetCustomEventReference("Confirm_Cancel"))); + } + + /// + /// 下载导入模板 + /// + /// + /// + protected void PageManager1_CustomEvent(object sender, CustomEventArgs e) + { + if (e.EventArgument == "Confirm_OK") + { + string rootPath = Server.MapPath("~/"); + string uploadfilepath = rootPath + "File\\Excel\\DataIn\\PunchlistFrom导入模板.xls"; + string filePath = "File\\Excel\\DataIn\\PunchlistFrom导入模板.xls"; + string fileName = Path.GetFileName(filePath); + FileInfo info = new FileInfo(uploadfilepath); + long fileSize = info.Length; + Response.ClearContent(); + Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)); + Response.ContentType = "excel/plain"; + Response.ContentEncoding = System.Text.Encoding.UTF8; + Response.AddHeader("Content-Length", fileSize.ToString().Trim()); + Response.TransmitFile(uploadfilepath, 0, fileSize); + Response.End(); + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx.designer.cs new file mode 100644 index 00000000..2dfc56a5 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/PunchlistFromDataIn.aspx.designer.cs @@ -0,0 +1,125 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Transfer +{ + + + public partial class PunchlistFromDataIn + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// SimpleForm1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// hdFileName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdFileName; + + /// + /// btnAudit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnAudit; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// btnDownLoad 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnDownLoad; + + /// + /// hdCheckResult 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdCheckResult; + + /// + /// fuAttachUrl 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.FileUpload fuAttachUrl; + + /// + /// gvErrorInfo 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid gvErrorInfo; + + /// + /// lblPageIndex 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + } +} diff --git a/SGGL/FineUIPro.Web/Transfer/Telecom.aspx b/SGGL/FineUIPro.Web/Transfer/Telecom.aspx new file mode 100644 index 00000000..91edfec2 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/Telecom.aspx @@ -0,0 +1,116 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Telecom.aspx.cs" Inherits="FineUIPro.Web.Transfer.Telecom" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + <%-- --%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%----%> + + + + + + + diff --git a/SGGL/FineUIPro.Web/Transfer/Telecom.aspx.cs b/SGGL/FineUIPro.Web/Transfer/Telecom.aspx.cs new file mode 100644 index 00000000..767658f8 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/Telecom.aspx.cs @@ -0,0 +1,203 @@ +using BLL; +using BLL.CQMS.Comprehensive; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; + + +namespace FineUIPro.Web.Transfer +{ + public partial class Telecom : PageBase + { + #region 加载 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + GetButtonPower(); + BindGrid(); + } + } + + /// + /// 数据绑定 + /// + public void BindGrid() + { + string strSql = @"select*from Transfer_Telecom + where ProjectId = @ProjectId"; + List listStr = new List(); + listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId)); + + if (!string.IsNullOrEmpty(this.txtTelecom.Text.Trim())) + { + strSql += " AND Telecom like @Telecom"; + listStr.Add(new SqlParameter("@Telecom", "%" + this.txtTelecom.Text.Trim() + "%")); + } + if (!string.IsNullOrEmpty(txtStarTime.Text.Trim())) + { + strSql += " AND Test_Package_START >= @InspectionDateA"; + listStr.Add(new SqlParameter("@InspectionDateA", Funs.GetNewDateTime(txtStarTime.Text.Trim()))); + } + if (!string.IsNullOrEmpty(txtEndTime.Text.Trim())) + { + strSql += " AND Test_Package_START <= @InspectionDateZ"; + listStr.Add(new SqlParameter("@InspectionDateZ", Funs.GetNewDateTime(txtEndTime.Text.Trim()))); + } + + strSql += " order by Telecom "; + + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.RecordCount = tb.Rows.Count; + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + #endregion + + #region 分页、排序 + /// + /// 分页下拉 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + BindGrid(); + } + + /// + /// 分页索引事件 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 排序 + /// + /// + /// + protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) + { + Grid1.SortDirection = e.SortDirection; + Grid1.SortField = e.SortField; + BindGrid(); + } + #endregion + + #region 查询 + /// + /// 查询 + /// + /// + /// + protected void btnSearch_Click(object sender, EventArgs e) + { + BindGrid(); + } + #endregion + + #region 关闭弹出窗口 + /// + /// 关闭弹出窗口 + /// + /// + /// + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + BindGrid(); + } + #endregion + + #region 删除 + /// + /// 右键删除 + /// + /// + /// + protected void btnMenuDel_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + Model.Transfer_Telecom model = Funs.DB.Transfer_Telecom.FirstOrDefault(x => x.Id == rowID); + if (model != null) + { + Funs.DB.Transfer_Telecom.DeleteOnSubmit(model); + Funs.DB.SubmitChanges(); + } + } + BindGrid(); + ShowNotify("删除数据成功!", MessageBoxIcon.Success); + } + } + #endregion + + #region 导入 + /// + /// 导入按钮 + /// + /// + /// + protected void btnImport_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("TelecomDataIn.aspx", "导入 - "))); + } + #endregion + + #region 获取按钮权限 + /// + /// 获取按钮权限 + /// + /// + /// + private void GetButtonPower() + { + if (Request.Params["value"] == "0") + { + return; + } + var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.TelecomMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(BLL.Const.BtnAdd)) + { + //this.btnNew.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnModify)) + { + //this.btnMenuModify.Hidden = false; + this.Grid1.EnableRowDoubleClickEvent = true; + } + else + { + this.Grid1.EnableRowDoubleClickEvent = false; + } + if (buttonList.Contains(BLL.Const.BtnDelete)) + { + this.btnMenuDel.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnSave)) + { + this.btnImport.Hidden = false; + } + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/Telecom.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/Telecom.aspx.designer.cs new file mode 100644 index 00000000..815afe32 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/Telecom.aspx.designer.cs @@ -0,0 +1,161 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Transfer +{ + + + public partial class Telecom + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// ToolSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar ToolSearch; + + /// + /// txtTelecom 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtTelecom; + + /// + /// txtStarTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtStarTime; + + /// + /// Label1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Label Label1; + + /// + /// txtEndTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtEndTime; + + /// + /// btnSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSearch; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// ToolbarText1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + + /// + /// Window2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window2; + + /// + /// Menu1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuDel 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.MenuButton btnMenuDel; + } +} diff --git a/SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx b/SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx new file mode 100644 index 00000000..00275ca6 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx @@ -0,0 +1,68 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TelecomDataIn.aspx.cs" Inherits="FineUIPro.Web.Transfer.TelecomDataIn" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx.cs b/SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx.cs new file mode 100644 index 00000000..bc640cba --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx.cs @@ -0,0 +1,421 @@ +using BLL; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.OleDb; +using System.IO; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.Transfer +{ + public partial class TelecomDataIn : PageBase + { + #region 定义变量 + /// + /// 上传预设的虚拟路径 + /// + private string initPath = Const.ExcelUrl; + + + /// + /// 错误集合 + /// + public static List errorInfos = new List(); + #endregion + + #region 加载 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.hdCheckResult.Text = string.Empty; + this.hdFileName.Text = string.Empty; + if (errorInfos != null) + { + errorInfos.Clear(); + } + } + } + #endregion + + #region 审核 + /// + /// 审核 + /// + /// + /// + protected void btnAudit_Click(object sender, EventArgs e) + { + try + { + errorInfos.Clear(); + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + + if (this.fuAttachUrl.HasFile == false) + { + ShowNotify("请您选择Excel文件!", MessageBoxIcon.Warning); + return; + } + string IsXls = Path.GetExtension(this.fuAttachUrl.FileName).ToString().Trim().ToLower(); + if (IsXls != ".xls") + { + ShowNotify("只可以选择Excel文件!", MessageBoxIcon.Warning); + return; + } + if (errorInfos != null) + { + errorInfos.Clear(); + } + string rootPath = Server.MapPath("~/"); + string initFullPath = rootPath + initPath; + if (!Directory.Exists(initFullPath)) + { + Directory.CreateDirectory(initFullPath); + } + + this.hdFileName.Text = BLL.Funs.GetNewFileName() + IsXls; + string filePath = initFullPath + this.hdFileName.Text; + this.fuAttachUrl.PostedFile.SaveAs(filePath); + ImportXlsToData(rootPath + initPath + this.hdFileName.Text); + } + catch (Exception ex) + { + ShowNotify("'" + ex.Message + "'", MessageBoxIcon.Warning); + } + } + + #region 读Excel提取数据 + /// + /// 从Excel提取数据--》Dataset + /// + /// Excel文件路径名 + private void ImportXlsToData(string fileName) + { + try + { + string oleDBConnString = String.Empty; + oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;"; + oleDBConnString += "Data Source="; + oleDBConnString += fileName; + oleDBConnString += ";Extended Properties=Excel 8.0;"; + OleDbConnection oleDBConn = null; + OleDbDataAdapter oleAdMaster = null; + DataTable m_tableName = new DataTable(); + DataSet ds = new DataSet(); + + oleDBConn = new OleDbConnection(oleDBConnString); + oleDBConn.Open(); + m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); + + if (m_tableName != null && m_tableName.Rows.Count > 0) + { + + m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim(); + + } + string sqlMaster; + sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]"; + oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn); + oleAdMaster.Fill(ds, "m_tableName"); + oleAdMaster.Dispose(); + oleDBConn.Close(); + oleDBConn.Dispose(); + + AddDatasetToSQL(ds.Tables[0], 7); + hdCheckResult.Text = "1"; + } + catch (Exception exc) + { + Response.Write(exc); + //return null; + // return dt; + } + finally + { + } + } + #endregion + + #region 将Dataset的数据导入数据库 + /// + /// 将Dataset的数据导入数据库 + /// + /// 数据集 + /// 数据集行数 + /// + private bool AddDatasetToSQL(DataTable pds, int Cols) + { + string result = string.Empty; + int ic, ir; + ic = pds.Columns.Count; + if (ic < Cols) + { + ShowNotify("导入Excel格式错误!Excel只有" + ic.ToString().Trim() + "列", MessageBoxIcon.Warning); + return false; + } + + ir = pds.Rows.Count; + if (pds != null && ir > 0) + { + for (int i = 1; i < ir; i++) + { + string row4 = pds.Rows[i][4].ToString(); + if (!string.IsNullOrEmpty(row4)) + { + try + { + DateTime date = Convert.ToDateTime(row4.Trim()); + } + catch (Exception) + { + result += (i + 2).ToString() + "," + "Test Package START" + "," + "[" + row4 + "]错误!不是日期格式!" + "|"; + } + } + string row5 = pds.Rows[i][5].ToString(); + if (!string.IsNullOrEmpty(row4)) + { + try + { + DateTime date = Convert.ToDateTime(row5.Trim()); + } + catch (Exception) + { + result += (i + 2).ToString() + "," + "Test Package FINISH" + "," + "[" + row5 + "]错误!不是日期格式!" + "|"; + } + } + } + if (!string.IsNullOrEmpty(result)) + { + result = result.Substring(0, result.LastIndexOf("|")); + } + errorInfos.Clear(); + if (!string.IsNullOrEmpty(result)) + { + string results = result; + List errorInfoList = results.Split('|').ToList(); + foreach (var item in errorInfoList) + { + string[] errors = item.Split(','); + Model.ErrorInfo errorInfo = new Model.ErrorInfo(); + errorInfo.Row = errors[0]; + errorInfo.Column = errors[1]; + errorInfo.Reason = errors[2]; + errorInfos.Add(errorInfo); + } + if (errorInfos.Count > 0) + { + this.gvErrorInfo.DataSource = errorInfos; + this.gvErrorInfo.DataBind(); + } + } + else + { + ShowNotify("审核完成,请点击导入!", MessageBoxIcon.Success); + } + } + + else + { + ShowNotify("导入数据为空!", MessageBoxIcon.Warning); + } + return true; + } + #endregion + #endregion + + #region 导入 + /// + /// 导入 + /// + /// + /// + protected void btnImport_Click(object sender, EventArgs e) + { + if (!string.IsNullOrEmpty(hdCheckResult.Text)) + { + if (errorInfos.Count <= 0) + { + string rootPath = Server.MapPath("~/"); + ImportXlsToData2(rootPath + initPath + this.hdFileName.Text); + hdCheckResult.Text = string.Empty; + ShowNotify("导入成功!", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + else + { + ShowNotify("请先将错误数据修正,再重新导入提交!", MessageBoxIcon.Warning); + } + } + else + { + ShowNotify("请先审核要导入的文件!", MessageBoxIcon.Warning); + } + } + + #region Excel提取数据 + /// + /// 从Excel提取数据--》Dataset + /// + /// Excel文件路径名 + private void ImportXlsToData2(string fileName) + { + try + { + string oleDBConnString = String.Empty; + oleDBConnString = "Provider=Microsoft.Jet.OLEDB.4.0;"; + oleDBConnString += "Data Source="; + oleDBConnString += fileName; + oleDBConnString += ";Extended Properties=Excel 8.0;"; + OleDbConnection oleDBConn = null; + OleDbDataAdapter oleAdMaster = null; + DataTable m_tableName = new DataTable(); + DataSet ds = new DataSet(); + + oleDBConn = new OleDbConnection(oleDBConnString); + oleDBConn.Open(); + m_tableName = oleDBConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null); + + if (m_tableName != null && m_tableName.Rows.Count > 0) + { + + m_tableName.TableName = m_tableName.Rows[0]["TABLE_NAME"].ToString().Trim(); + + } + string sqlMaster; + sqlMaster = " SELECT * FROM [" + m_tableName.TableName + "]"; + oleAdMaster = new OleDbDataAdapter(sqlMaster, oleDBConn); + oleAdMaster.Fill(ds, "m_tableName"); + oleAdMaster.Dispose(); + oleDBConn.Close(); + oleDBConn.Dispose(); + + AddDatasetToSQL2(ds.Tables[0], 7); + } + catch (Exception ex) + { + throw ex; + } + } + #endregion + + #region 将Dataset的数据导入数据库 + /// + /// 将Dataset的数据导入数据库 + /// + /// 数据集 + /// 数据集列数 + /// + private bool AddDatasetToSQL2(DataTable pds, int Cols) + { + int ic, ir; + ic = pds.Columns.Count; + if (ic < Cols) + { + ShowNotify("导入Excel格式错误!Excel只有" + ic.ToString().Trim() + "列", MessageBoxIcon.Warning); + } + string result = string.Empty; + ir = pds.Rows.Count; + if (pds != null && ir > 0) + { + List list = new List(); + for (int i = 1; i < ir; i++) + { + //查询第一列,没查到的情况下作导入处理 + var modelOnly = Funs.DB.Transfer_Telecom.FirstOrDefault(x => x.Telecom == pds.Rows[i][0].ToString().Trim() + && x.ProjectId == CurrUser.LoginProjectId); + if (modelOnly == null) + { + Model.Transfer_Telecom model = new Model.Transfer_Telecom(); + model.Id = Guid.NewGuid().ToString(); + model.ProjectId = CurrUser.LoginProjectId; + model.Telecom = pds.Rows[i][0].ToString().Trim(); + model.SystemName = pds.Rows[i][1].ToString().Trim(); + model.Subsystem = pds.Rows[i][2].ToString().Trim(); + model.Test_Package = pds.Rows[i][3].ToString().Trim(); + DateTime t1, t2; + if (DateTime.TryParse(pds.Rows[i][4].ToString(), out t1) && !string.IsNullOrEmpty(pds.Rows[i][4].ToString())) + model.Test_Package_START = t1; + if (DateTime.TryParse(pds.Rows[i][5].ToString(), out t2) && !string.IsNullOrEmpty(pds.Rows[i][5].ToString())) + model.Test_Package_FINISH = t2; + + model.FINAL_Status = pds.Rows[i][6].ToString().Trim(); + list.Add(model); + } + else + { + //修改 + modelOnly.Telecom = pds.Rows[i][0].ToString().Trim(); + modelOnly.SystemName = pds.Rows[i][1].ToString().Trim(); + modelOnly.Subsystem = pds.Rows[i][2].ToString().Trim(); + modelOnly.Test_Package = pds.Rows[i][3].ToString().Trim(); + DateTime t1, t2; + if (DateTime.TryParse(pds.Rows[i][4].ToString(), out t1) && !string.IsNullOrEmpty(pds.Rows[i][4].ToString())) + modelOnly.Test_Package_START = t1; + if (DateTime.TryParse(pds.Rows[i][5].ToString(), out t2) && !string.IsNullOrEmpty(pds.Rows[i][5].ToString())) + modelOnly.Test_Package_FINISH = t2; + modelOnly.FINAL_Status = pds.Rows[i][6].ToString().Trim(); + Funs.DB.SubmitChanges(); + } + } + if (list.Count > 0) + { + Funs.DB.Transfer_Telecom.InsertAllOnSubmit(list); + Funs.DB.SubmitChanges(); + } + } + else + { + ShowNotify("导入数据为空!", MessageBoxIcon.Warning); + } + return true; + } + #endregion + #endregion + + #region 下载模板 + /// + /// 下载模板按钮 + /// + /// + /// + protected void btnDownLoad_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Confirm.GetShowReference("确定下载导入模板吗?", String.Empty, MessageBoxIcon.Question, PageManager1.GetCustomEventReference(false, "Confirm_OK"), PageManager1.GetCustomEventReference("Confirm_Cancel"))); + } + + /// + /// 下载导入模板 + /// + /// + /// + protected void PageManager1_CustomEvent(object sender, CustomEventArgs e) + { + if (e.EventArgument == "Confirm_OK") + { + string rootPath = Server.MapPath("~/"); + string uploadfilepath = rootPath + "File\\Excel\\DataIn\\Telecom导入模板.xls"; + string filePath = "File\\Excel\\DataIn\\Telecom导入模板.xls"; + string fileName = Path.GetFileName(filePath); + FileInfo info = new FileInfo(uploadfilepath); + long fileSize = info.Length; + Response.ClearContent(); + Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)); + Response.ContentType = "excel/plain"; + Response.ContentEncoding = System.Text.Encoding.UTF8; + Response.AddHeader("Content-Length", fileSize.ToString().Trim()); + Response.TransmitFile(uploadfilepath, 0, fileSize); + Response.End(); + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx.designer.cs b/SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx.designer.cs new file mode 100644 index 00000000..50eacf48 --- /dev/null +++ b/SGGL/FineUIPro.Web/Transfer/TelecomDataIn.aspx.designer.cs @@ -0,0 +1,125 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Transfer +{ + + + public partial class TelecomDataIn + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// SimpleForm1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// hdFileName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdFileName; + + /// + /// btnAudit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnAudit; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// btnDownLoad 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnDownLoad; + + /// + /// hdCheckResult 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdCheckResult; + + /// + /// fuAttachUrl 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.FileUpload fuAttachUrl; + + /// + /// gvErrorInfo 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid gvErrorInfo; + + /// + /// lblPageIndex 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + } +} diff --git a/SGGL/WebAPI/WebAPI.csproj.user b/SGGL/WebAPI/WebAPI.csproj.user index 4edb5e0f..6bc24ada 100644 --- a/SGGL/WebAPI/WebAPI.csproj.user +++ b/SGGL/WebAPI/WebAPI.csproj.user @@ -1,7 +1,7 @@  - Release|Any CPU + Debug|Any CPU true From 2b91cacd97cae96a35196c5dca000e8378320de6 Mon Sep 17 00:00:00 2001 From: fly-l <1420031550@qq.com> Date: Fri, 26 Jan 2024 17:11:59 +0800 Subject: [PATCH 2/4] =?UTF-8?q?2024-01-26=20=E5=BC=80=E8=BD=A6=E5=88=86?= =?UTF-8?q?=E5=8C=85=E7=AE=A1=E7=90=86=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 53ee8024..232d5edb 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,4 @@ /SGGL/BLL/obj /SGGL/FineUIPro.Web/obj /SGGL/Model/obj +/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverSub/DriverSubPlan/2024-01 From de85f779a379527b9ca8c2845795548b0b86f431 Mon Sep 17 00:00:00 2001 From: fly-l <1420031550@qq.com> Date: Fri, 26 Jan 2024 17:12:01 +0800 Subject: [PATCH 3/4] =?UTF-8?q?2024-01-26=20=E5=BC=80=E8=BD=A6=E5=88=86?= =?UTF-8?q?=E5=8C=85=E7=AE=A1=E7=90=86=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../版本日志/SGGLDB_WH_2024-01-26-lpf.sql | 67 + SGGL/BLL/.vs/BLL.csproj.dtbcache.json | 1 + SGGL/BLL/BLL.csproj | 1 + SGGL/BLL/BLL.csproj.user | 6 + SGGL/BLL/Common/Const.cs | 7 + SGGL/BLL/DropListService.cs | 11 + .../DriverSub/DriverSubContactService.cs | 36 +- .../DriverSub/DriverSubContractorsService.cs | 173 ++ .../TestRun/DriverSub/DriverSubPlanService.cs | 91 +- .../.vs/FineUIPro.Web.csproj.dtbcache.json | 1 + .../Controls/DataImportControl.ascx | 75 + .../Controls/DataImportControl.ascx.cs | 141 ++ .../DataImportControl.ascx.designer.cs | 116 ++ .../File/Excel/TestRun/开车合作单位名录.xlsx | Bin 0 -> 11839 bytes SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 24 + SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user | 1 + .../TestRun/DriverSub/DriverSub.aspx | 2 +- .../TestRun/DriverSub/DriverSubContact.aspx | 46 +- .../DriverSub/DriverSubContact.aspx.cs | 72 +- .../DriverSubContact.aspx.designer.cs | 62 +- .../DriverSub/DriverSubContactEdit.aspx | 231 ++- .../DriverSub/DriverSubContactEdit.aspx.cs | 249 ++- .../DriverSubContactEdit.aspx.designer.cs | 112 +- .../TestRun/DriverSub/DriverSubContactIn.aspx | 36 + .../DriverSub/DriverSubContactIn.aspx.cs | 259 +++ .../DriverSubContactIn.aspx.designer.cs | 98 ++ .../DriverSub/DriverSubContactorEdit.aspx | 103 ++ .../DriverSub/DriverSubContactorEdit.aspx.cs | 96 ++ .../DriverSubContactorEdit.aspx.designer.cs | 170 ++ .../DriverSub/DriverSubContactorList.aspx | 147 ++ .../DriverSub/DriverSubContactorList.aspx.cs | 274 +++ .../DriverSubContactorList.aspx.designer.cs | 197 +++ .../TestRun/DriverSub/DriverSubPlan.aspx | 41 +- .../TestRun/DriverSub/DriverSubPlan.aspx.cs | 84 +- .../DriverSub/DriverSubPlan.aspx.designer.cs | 51 +- .../TestRun/DriverSub/DriverSubPlanEdit.aspx | 17 +- .../DriverSub/DriverSubPlanEdit.aspx.cs | 99 +- .../DriverSubPlanEdit.aspx.designer.cs | 100 +- SGGL/Model/.vs/Model.csproj.dtbcache.json | 1 + SGGL/Model/Model.cs | 1497 ++++++++++------- .../.vs/SgManager.AI.csproj.dtbcache.json | 1 + SGGL/WebAPI/.vs/WebAPI.csproj.dtbcache.json | 1 + 42 files changed, 3714 insertions(+), 1083 deletions(-) create mode 100644 DataBase/版本日志/SGGLDB_WH_2024-01-26-lpf.sql create mode 100644 SGGL/BLL/.vs/BLL.csproj.dtbcache.json create mode 100644 SGGL/BLL/BLL.csproj.user create mode 100644 SGGL/BLL/TestRun/DriverSub/DriverSubContractorsService.cs create mode 100644 SGGL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json create mode 100644 SGGL/FineUIPro.Web/Controls/DataImportControl.ascx create mode 100644 SGGL/FineUIPro.Web/Controls/DataImportControl.ascx.cs create mode 100644 SGGL/FineUIPro.Web/Controls/DataImportControl.ascx.designer.cs create mode 100644 SGGL/FineUIPro.Web/File/Excel/TestRun/开车合作单位名录.xlsx create mode 100644 SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContactIn.aspx create mode 100644 SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContactIn.aspx.cs create mode 100644 SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContactIn.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContactorEdit.aspx create mode 100644 SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContactorEdit.aspx.cs create mode 100644 SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContactorEdit.aspx.designer.cs create mode 100644 SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContactorList.aspx create mode 100644 SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContactorList.aspx.cs create mode 100644 SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContactorList.aspx.designer.cs create mode 100644 SGGL/Model/.vs/Model.csproj.dtbcache.json create mode 100644 SGGL/SgManager.AI/.vs/SgManager.AI.csproj.dtbcache.json create mode 100644 SGGL/WebAPI/.vs/WebAPI.csproj.dtbcache.json diff --git a/DataBase/版本日志/SGGLDB_WH_2024-01-26-lpf.sql b/DataBase/版本日志/SGGLDB_WH_2024-01-26-lpf.sql new file mode 100644 index 00000000..3c56725d --- /dev/null +++ b/DataBase/版本日志/SGGLDB_WH_2024-01-26-lpf.sql @@ -0,0 +1,67 @@ +alter table DriverSub_DriverSubPlan add DriverSubNames varchar(100); +go; +alter table DriverSub_DriverSubContact add DriverSubPlanId varchar(100); +go; +alter table DriverSub_DriverSubContact add DriverSubContractorsId varchar(100); +go; +alter table DriverSub_DriverSubContact add SubcontractingType varchar(100); +go; +create table DriverSub_DriverSubContractors +( + DriverSubContractorsId varchar(100) primary key, + SubUnitName varchar(500), + EnterpriseNature varchar(500), + SubcontractingType varchar(500), + CollCropCode varchar(500), + SafetyProductionLicense varchar(500), + QualificationCertificateNumber varchar(500), + QualificationType varchar(500), + QualificationLevel varchar(500), + Province varchar(100), + City varchar(100), + IsUse bit default 1, +); +go; +exec sp_addextendedproperty 'MS_Description', N'企业名称', 'SCHEMA', 'dbo', 'TABLE', 'DriverSub_DriverSubContractors', + 'COLUMN', 'SubUnitName' +go + +exec sp_addextendedproperty 'MS_Description', N'企业性质', 'SCHEMA', 'dbo', 'TABLE', 'DriverSub_DriverSubContractors', + 'COLUMN', 'EnterpriseNature' +go + +exec sp_addextendedproperty 'MS_Description', N'分包类别(催化剂装填:1,烘炉:2,化学:3,清洗开车队:4)', 'SCHEMA', 'dbo', + 'TABLE', 'DriverSub_DriverSubContractors', 'COLUMN', 'SubcontractingType' +go + +exec sp_addextendedproperty 'MS_Description', N'统一社会信用代码', 'SCHEMA', 'dbo', 'TABLE', + 'DriverSub_DriverSubContractors', 'COLUMN', 'CollCropCode' +go + +exec sp_addextendedproperty 'MS_Description', N'安全生产许可证', 'SCHEMA', 'dbo', 'TABLE', + 'DriverSub_DriverSubContractors', 'COLUMN', 'SafetyProductionLicense' +go + +exec sp_addextendedproperty 'MS_Description', N'资质证书编号', 'SCHEMA', 'dbo', 'TABLE', + 'DriverSub_DriverSubContractors', 'COLUMN', 'QualificationCertificateNumber' +go + +exec sp_addextendedproperty 'MS_Description', N'资质类别', 'SCHEMA', 'dbo', 'TABLE', 'DriverSub_DriverSubContractors', + 'COLUMN', 'QualificationType' +go + +exec sp_addextendedproperty 'MS_Description', N'资质等级', 'SCHEMA', 'dbo', 'TABLE', 'DriverSub_DriverSubContractors', + 'COLUMN', 'QualificationLevel' +go + +exec sp_addextendedproperty 'MS_Description', N'省份', 'SCHEMA', 'dbo', 'TABLE', 'DriverSub_DriverSubContractors', + 'COLUMN', 'Province' +go + +exec sp_addextendedproperty 'MS_Description', N'城市', 'SCHEMA', 'dbo', 'TABLE', 'DriverSub_DriverSubContractors', + 'COLUMN', 'City' +go + +exec sp_addextendedproperty 'MS_Description', N'是否使用', 'SCHEMA', 'dbo', 'TABLE', 'DriverSub_DriverSubContractors', + 'COLUMN', 'IsUse' +go diff --git a/SGGL/BLL/.vs/BLL.csproj.dtbcache.json b/SGGL/BLL/.vs/BLL.csproj.dtbcache.json new file mode 100644 index 00000000..75d94521 --- /dev/null +++ b/SGGL/BLL/.vs/BLL.csproj.dtbcache.json @@ -0,0 +1 @@ +{"RootPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL","ProjectFileName":"BLL.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"API\\APIBaseInfoService.cs"},{"SourceFile":"API\\APICommonService.cs"},{"SourceFile":"API\\APIDoorServerService.cs"},{"SourceFile":"API\\APIGetHttpService.cs"},{"SourceFile":"API\\APIIDCardInfoService.cs"},{"SourceFile":"API\\APIPersonService.cs"},{"SourceFile":"API\\APIProjectService.cs"},{"SourceFile":"API\\APIUnitService.cs"},{"SourceFile":"API\\APIUpLoadFileService.cs"},{"SourceFile":"API\\APIUserService.cs"},{"SourceFile":"API\\HJGL\\APIGetHJDataService.cs"},{"SourceFile":"API\\HJGL\\APIHotProcessHardService.cs"},{"SourceFile":"API\\HJGL\\APINDETrustService.cs"},{"SourceFile":"API\\HJGL\\APIPipeJointService.cs"},{"SourceFile":"API\\HJGL\\APIPreWeldingDailyService.cs"},{"SourceFile":"API\\HJGL\\APIReportQueryService.cs"},{"SourceFile":"API\\HJGL\\APITestPackageService.cs"},{"SourceFile":"API\\HSSE\\APIGeneralEquipmentQualityService.cs"},{"SourceFile":"API\\HSSE\\APIPageDataService.cs"},{"SourceFile":"API\\HSSE\\APIChartAnalysisService.cs"},{"SourceFile":"API\\HSSE\\APICheckSpecialService.cs"},{"SourceFile":"API\\HSSE\\APIConstructSolutionService.cs"},{"SourceFile":"API\\HSSE\\APIEmergencyService.cs"},{"SourceFile":"API\\HSSE\\APIEquipmentQualityService.cs"},{"SourceFile":"API\\HSSE\\APIHazardListService.cs"},{"SourceFile":"API\\HSSE\\APIHazardRegisterService.cs"},{"SourceFile":"API\\HSSE\\APIHSEDiaryService.cs"},{"SourceFile":"API\\HSSE\\APIIncentiveNoticeService.cs"},{"SourceFile":"API\\HSSE\\APILicenseDataService.cs"},{"SourceFile":"API\\HSSE\\APILicenseFlowOperateService.cs"},{"SourceFile":"API\\HSSE\\APILicenseItemService.cs"},{"SourceFile":"API\\HSSE\\APIMeetingService.cs"},{"SourceFile":"API\\HSSE\\APIPauseNoticeService.cs"},{"SourceFile":"API\\HSSE\\APIPersonQualityService.cs"},{"SourceFile":"API\\HSSE\\APIPunishNoticeService.cs"},{"SourceFile":"API\\HSSE\\APIReceiveFileManagerService.cs"},{"SourceFile":"API\\HSSE\\APIRectifyNoticesService.cs"},{"SourceFile":"API\\HSSE\\APIResourcesService.cs"},{"SourceFile":"API\\HSSE\\APISeDinMonthReportService.cs"},{"SourceFile":"API\\HSSE\\APIServerTestPlanService.cs"},{"SourceFile":"API\\HSSE\\APIServerTestRecordService.cs"},{"SourceFile":"API\\HSSE\\APITestPlanService.cs"},{"SourceFile":"API\\HSSE\\APITestRecordService.cs"},{"SourceFile":"API\\HSSE\\APITrainingPlanService.cs"},{"SourceFile":"API\\HSSE\\APITrainingTaskService.cs"},{"SourceFile":"API\\HSSE\\APITrainRecordService.cs"},{"SourceFile":"BaseInfo\\AccidentTypeService.cs"},{"SourceFile":"BaseInfo\\BaseFactoryService.cs"},{"SourceFile":"BaseInfo\\CertificateService.cs"},{"SourceFile":"BaseInfo\\CNProfessionalService.cs"},{"SourceFile":"BaseInfo\\CostTypeService.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalService.cs"},{"SourceFile":"BaseInfo\\DocTypeService.cs"},{"SourceFile":"BaseInfo\\EmergencyTypeService.cs"},{"SourceFile":"BaseInfo\\GoodsCategoryService.cs"},{"SourceFile":"BaseInfo\\HSSEStandardListTypeService.cs"},{"SourceFile":"BaseInfo\\HSSE_Hazard_HazardRegisterTypesService.cs"},{"SourceFile":"BaseInfo\\InspectionAreaService.cs"},{"SourceFile":"BaseInfo\\LawsRegulationsTypeService.cs"},{"SourceFile":"BaseInfo\\LicenseTypeService.cs"},{"SourceFile":"BaseInfo\\ManageRuleTypeService.cs"},{"SourceFile":"BaseInfo\\PersonManageService.cs"},{"SourceFile":"BaseInfo\\PictureTypeService.cs"},{"SourceFile":"BaseInfo\\PositionService.cs"},{"SourceFile":"BaseInfo\\PostService.cs"},{"SourceFile":"BaseInfo\\PostTitleService.cs"},{"SourceFile":"BaseInfo\\PracticeCertificateService.cs"},{"SourceFile":"BaseInfo\\ProjectTypeService.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeService.cs"},{"SourceFile":"BaseInfo\\QuestionTypeService.cs"},{"SourceFile":"BaseInfo\\RectificationMeasureService.cs"},{"SourceFile":"BaseInfo\\RiskLevelService.cs"},{"SourceFile":"BaseInfo\\RulesRegulationsTypeService.cs"},{"SourceFile":"BaseInfo\\SafetyMeasuresService.cs"},{"SourceFile":"BaseInfo\\SolutionTempleteTypeService.cs"},{"SourceFile":"BaseInfo\\SpecialEquipmentService.cs"},{"SourceFile":"BaseInfo\\SpecialSchemeTypeService.cs"},{"SourceFile":"BaseInfo\\SteelService.cs"},{"SourceFile":"BaseInfo\\TrainLevelService.cs"},{"SourceFile":"BaseInfo\\TrainTypeService.cs"},{"SourceFile":"BaseInfo\\UnitTypeService.cs"},{"SourceFile":"BaseInfo\\WorkPostService.cs"},{"SourceFile":"BaseInfo\\WorkStageService.cs"},{"SourceFile":"BoSheng\\BOSHENGService.cs"},{"SourceFile":"Common\\AttachFileService.cs"},{"SourceFile":"Common\\CodeRecordsService.cs"},{"SourceFile":"Common\\CommonService.cs"},{"SourceFile":"Common\\CreateQRCodeService.cs"},{"SourceFile":"Common\\IDCardValid.cs"},{"SourceFile":"Common\\NPOIExcel.cs"},{"SourceFile":"Common\\NPOIHelper.cs"},{"SourceFile":"Common\\PrinterDocService.cs"},{"SourceFile":"Common\\ProjectDataFlowSetService.cs"},{"SourceFile":"Common\\UploadFileService.cs"},{"SourceFile":"Common\\UpLoadImageService.cs"},{"SourceFile":"Common\\UserShowColumnsService.cs"},{"SourceFile":"Common\\WeatherService.cs"},{"SourceFile":"Common\\WeekDayService.cs"},{"SourceFile":"CostGoods\\MeasuresPlanService.cs"},{"SourceFile":"CostGoods\\PayRegistrationService.cs"},{"SourceFile":"CostGoods\\SubPayRegistrationService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsService.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalItemService.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonService.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalItemService.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalService.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonSteelService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonWeldMethodService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeService.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentApproveService.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentService.cs"},{"SourceFile":"CQMS\\Check\\CheckControlApproveService.cs"},{"SourceFile":"CQMS\\Check\\CheckControlService.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipmentApproveService.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipmentService.cs"},{"SourceFile":"CQMS\\Check\\CheckMonthService.cs"},{"SourceFile":"CQMS\\Check\\DesignApproveService.cs"},{"SourceFile":"CQMS\\Check\\DesignService.cs"},{"SourceFile":"CQMS\\Check\\DrawApproveService.cs"},{"SourceFile":"CQMS\\Check\\DrawService.cs"},{"SourceFile":"CQMS\\Check\\FileCabinetService.cs"},{"SourceFile":"CQMS\\Check\\JointCheckApproveService.cs"},{"SourceFile":"CQMS\\Check\\JointCheckDetailService.cs"},{"SourceFile":"CQMS\\Check\\JointCheckService.cs"},{"SourceFile":"CQMS\\Check\\MonthSpotCheckDetailService.cs"},{"SourceFile":"CQMS\\Check\\SpecialEquipmentDetailService.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckApproveService.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckDetailService.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckService.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListApproveService.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListService.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProjectService.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListService.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeProjectService.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeService.cs"},{"SourceFile":"CQMS\\DataBase\\FileService.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotService.cs"},{"SourceFile":"CQMS\\DataBase\\PhotoService.cs"},{"SourceFile":"CQMS\\DataBase\\StartWorkReportService.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheckService.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProjectService.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListService.cs"},{"SourceFile":"CQMS\\ManageReport\\ComprehensiveService.cs"},{"SourceFile":"CQMS\\ManageReport\\ConstructionProblemsService.cs"},{"SourceFile":"CQMS\\ManageReport\\NextQualityControlService.cs"},{"SourceFile":"CQMS\\ManageReport\\ProjectQualityWorkSummaryReportService.cs"},{"SourceFile":"CQMS\\ManageReport\\ProjectQuarterlyProjectQualityService.cs"},{"SourceFile":"CQMS\\ManageReport\\RowMaterialProblemService.cs"},{"SourceFile":"CQMS\\ManageReport\\ThisWeekOrMonthContentService.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekAndMonthReportService.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceService.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManageService.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementDetailService.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementService.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestService.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementService.cs"},{"SourceFile":"CQMS\\Solution\\CQMSConstructSolutionApproveService.cs"},{"SourceFile":"CQMS\\Solution\\CQMSConstructSolutionService.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactApproveService.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactService.cs"},{"SourceFile":"CQMS\\WBS\\BreakdownProjectService.cs"},{"SourceFile":"CQMS\\WBS\\BreakdownService.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleService.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitService.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemProjectService.cs"},{"SourceFile":"CQMS\\WBS\\DivisionProjectService.cs"},{"SourceFile":"CQMS\\WBS\\DivisionService.cs"},{"SourceFile":"CQMS\\WBS\\ForeignBreakdownProjectService.cs"},{"SourceFile":"CQMS\\WBS\\ForeignBreakdownService.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessionalService.cs"},{"SourceFile":"CQMS\\WBS\\WBSsearchService.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageInitService.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageProjectService.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageService.cs"},{"SourceFile":"DigData\\HSEDataCollectService.cs"},{"SourceFile":"DocManage\\DocManageApproveService.cs"},{"SourceFile":"DocManage\\DocManageService.cs"},{"SourceFile":"DoorServer\\InOutService.cs"},{"SourceFile":"DoorServer\\DoorServerService.cs"},{"SourceFile":"DropListService.cs"},{"SourceFile":"GlobalSuppressions.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_ComponentsService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_ConsumablesService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DefectService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DetectionRateService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DetectionTypeService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_DNCompareService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_GrooveTypeService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_MaterialService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_MediumService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PipingClassService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PressurePipingClassService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PressureService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_PurgeMethodService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_TestMediumService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_WeldingLocationServie.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_WeldingMethodService.cs"},{"SourceFile":"HJGL\\BaseInfo\\Base_WeldTypeService.cs"},{"SourceFile":"HJGL\\FL\\FLDataService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\Hard_ReportService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\Hard_TrustItemService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\Hard_TrustService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustItemService.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProess_TrustService.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumAuditService.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumEditService.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheckService.cs"},{"SourceFile":"HJGL\\NDT\\Batch_NDEItemService.cs"},{"SourceFile":"HJGL\\NDT\\Batch_NDEService.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerService.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderQualifyService.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderService.cs"},{"SourceFile":"HJGL\\PointTrust\\Batch_BatchTrustItemService.cs"},{"SourceFile":"HJGL\\PointTrust\\Batch_BatchTrustService.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatchDetailService.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatchService.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheckService.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningAuditService.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningEditService.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\RepairRecordService.cs"},{"SourceFile":"HJGL\\TestPackage\\AItemEndCheckService.cs"},{"SourceFile":"HJGL\\TestPackage\\BItemEndCheckService.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageApproveService.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageAuditService.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageEditService.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineService.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingDailyService.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointService.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldTaskService.cs"},{"SourceFile":"HJGL\\WPQ\\WPQListService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherItemService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherService.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportService.cs"},{"SourceFile":"HSSE\\Accident\\NoFourLetoffService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_CompanyManagerRuleService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_ManagerRuleService.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_SubManagerRuleService .cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlan_ProjectManagerRuleService.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerService.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckColligationDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckColligationService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckDayDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckDayService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckHolidayDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckHolidayService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckSpecialDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckSpecialService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckWorkDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_CheckWorkService.cs"},{"SourceFile":"HSSE\\Check\\Check_PauseNoticeService.cs"},{"SourceFile":"HSSE\\Check\\Check_ProjectCheckItemDetailService.cs"},{"SourceFile":"HSSE\\Check\\Check_ProjectCheckItemSetService.cs"},{"SourceFile":"HSSE\\Check\\Check_ProjectLeaderCheckService.cs"},{"SourceFile":"HSSE\\Check\\ContactListService.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateService.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeService.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeService.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesService.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeService.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageItemService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailItemService.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailService.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageService.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseService.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingService.cs"},{"SourceFile":"HSSE\\EduTrain\\EduTrain_TrainRecordDetailService.cs"},{"SourceFile":"HSSE\\EduTrain\\EduTrain_TrainRecordService.cs"},{"SourceFile":"HSSE\\EduTrain\\EduTrain_TrainTestService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlanService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingPlanItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingPlanService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingTaskService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBItemService.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBService.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListService.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListService.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyService.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainService.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportService.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanService.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringService.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListService.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_EnvironmentalRiskItemService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_EnvironmentalRiskListService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_HazardListService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_HazardSelectedItemService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_OtherHazardService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_PatrolPlanService.cs"},{"SourceFile":"HSSE\\Hazard\\Hazard_RoutingInspectionService.cs"},{"SourceFile":"HSSE\\Hazard\\RiskEvaluationRecordService.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HSSE_Hazard_HazardRegisterService.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDutyService.cs"},{"SourceFile":"HSSE\\HSSESystem\\ServerSafetyInstitutionService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutItemService.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutService.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyService.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardSelectedItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAService.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyService.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationSelectedItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectAccidentCauseReportItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectAccidentCauseReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillConductedQuarterlyReportItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillConductedQuarterlyReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillPlanHalfYearReportItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectDrillPlanHalfYearReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectEPSummaryReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectMillionsMonthlyReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectSafetyQuarterlyReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectWorkSummaryReportService.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesService.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardsListService.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleService.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsService.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListService.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalService.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerService.cs"},{"SourceFile":"HSSE\\License\\LicensePublicService.cs"},{"SourceFile":"HSSE\\License\\SecurityLicenseService.cs"},{"SourceFile":"HSSE\\Manager\\AccidentDetailSortBService.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportService.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthService.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\AccidentDesciptionCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\AccidentDesciptionItemCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\AccidentSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ActivitiesCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ActivityDesCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CheckCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CheckDetailSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CheckSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ComplianceObligationsCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\CostInvestmentPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\DrillSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\EmergencyExercisesCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\EmergencyPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\EmergencySortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\FileManageCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\FiveExpenseCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\HazardCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\HazardSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\HseCostCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\IncentiveSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\InjuryAccidentCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ManageDocPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\MeetingCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\MeetingSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\MonthReportCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\NoInjuryAccidentCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherActiveSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherManagementCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherWorkCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\OtherWorkPlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PerformanceIndicatorCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PersonSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PlanCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\PromotionalActiviteSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\ReviewRecordCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\RewardAndPunishSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\SubExpenseCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\TrainActivitySortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\TrainCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC\\TrainSortCService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDinService.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekService.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportBService.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportDService.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportService.cs"},{"SourceFile":"HSSE\\Manager\\ReportRemindService.cs"},{"SourceFile":"HSSE\\Manager\\SafetyDataDService.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthService.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekService.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingService.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingService.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseDetailService.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseService.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionService.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentService.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationService.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordService.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceService.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditDetailService.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnitService.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecordService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQualityService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafetyDataItemService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditDetailService.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityService.cs"},{"SourceFile":"HSSE\\Resources\\SignManageService.cs"},{"SourceFile":"HSSE\\SafetyData\\SafetyDataPlanService.cs"},{"SourceFile":"HSSE\\SafetyData\\SafetyDataService.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganizationService.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListService.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInOutService.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQualityService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_CheckingService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_DayReportDetailService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_DayReportService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_DayReportUnitDetailService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_MonthReportDetailService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_MonthReportService.cs"},{"SourceFile":"HSSE\\SitePerson\\SitePerson_MonthReportUnitDetailService.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionService.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentService.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardService.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateService.cs"},{"SourceFile":"HSSE\\Technique\\EmergencyService.cs"},{"SourceFile":"HSSE\\Technique\\HazardListService.cs"},{"SourceFile":"HSSE\\Technique\\HazardListTypeService.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalService.cs"},{"SourceFile":"HSSE\\Technique\\RectifyItemService.cs"},{"SourceFile":"HSSE\\Technique\\RectifyService.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeService.cs"},{"SourceFile":"HSSE\\Technique\\Technique_CheckItemDetailService.cs"},{"SourceFile":"HSSE\\Technique\\Technique_CheckItemSetService.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionService.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionService.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionService.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionService.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionService.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionService.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionService.cs"},{"SourceFile":"JDGL\\Check\\QuantityListService.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionService.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionService.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSReportService.cs"},{"SourceFile":"JDGL\\WBS\\CnProfessionInitService.cs"},{"SourceFile":"JDGL\\WBS\\CnProfessionService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailHistoryService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlInitService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlParentDetailService.cs"},{"SourceFile":"JDGL\\WBS\\CostControlService.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeService.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeService.cs"},{"SourceFile":"JDGL\\WBS\\MilePostService.cs"},{"SourceFile":"JDGL\\WBS\\UnitProjectInitService.cs"},{"SourceFile":"JDGL\\WBS\\UnitProjectService.cs"},{"SourceFile":"JDGL\\WBS\\WbsDetailHistoryService.cs"},{"SourceFile":"JDGL\\WBS\\WbsDetailService.cs"},{"SourceFile":"JDGL\\WBS\\WBSRectificationMeasureSetService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetInitService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetMatchCostControlInitService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetMatchCostControlService.cs"},{"SourceFile":"JDGL\\WBS\\WbsSetService.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadStatisticsService.cs"},{"SourceFile":"Notice\\NoticeService.cs"},{"SourceFile":"obj\\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs"},{"SourceFile":"obj\\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs"},{"SourceFile":"obj\\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs"},{"SourceFile":"obj\\Release\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs"},{"SourceFile":"obj\\Release\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs"},{"SourceFile":"obj\\Release\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNoticeService.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckReportService.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTable1Service.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTeamService.cs"},{"SourceFile":"OfficeCheck\\Check\\ProjectSupervision_Check1Service.cs"},{"SourceFile":"OfficeCheck\\Check\\ProjectSupervision_RectifyItemService.cs"},{"SourceFile":"OfficeCheck\\Check\\ProjectSupervision_RectifyService.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluationService.cs"},{"SourceFile":"OpenService\\FileInsertService.cs"},{"SourceFile":"OpenService\\FileStructService.cs"},{"SourceFile":"OpenService\\MonitorService.cs"},{"SourceFile":"DynamicTHeaderHepler.cs"},{"SourceFile":"OpenService\\GetDataService.cs"},{"SourceFile":"Opinion\\OpinionCollectionApproveService.cs"},{"SourceFile":"Opinion\\OpinionCollectionService.cs"},{"SourceFile":"Party\\BasicInformationDetailService.cs"},{"SourceFile":"Party\\BasicInformationService.cs"},{"SourceFile":"Party\\CommentPartyerService.cs"},{"SourceFile":"Party\\DoingThingsForMassesService.cs"},{"SourceFile":"Party\\EmployeeConversationRecordService.cs"},{"SourceFile":"Party\\FocusLearnService.cs"},{"SourceFile":"Party\\LastWorkSummaryService.cs"},{"SourceFile":"Party\\NewsPropagandaWorkService.cs"},{"SourceFile":"Party\\OrganizingLifeService.cs"},{"SourceFile":"Party\\PartyCommitteeService.cs"},{"SourceFile":"Party\\PartyCongressService.cs"},{"SourceFile":"Party\\PartyerService.cs"},{"SourceFile":"Party\\PartyHistoryStudyService.cs"},{"SourceFile":"Party\\PartyLectureService.cs"},{"SourceFile":"Party\\PartyMeetingService.cs"},{"SourceFile":"Party\\PartyMoneyUseService.cs"},{"SourceFile":"Party\\PartyPioneerDemonstrationService.cs"},{"SourceFile":"Party\\ThemePartyDayService.cs"},{"SourceFile":"Party\\TwoOneGoodSelectionService.cs"},{"SourceFile":"Party\\WorkPlanService.cs"},{"SourceFile":"Person\\Person_MeetingService.cs"},{"SourceFile":"Person\\PersonTotalService.cs"},{"SourceFile":"Person\\Person_DutyService.cs"},{"SourceFile":"Person\\Person_DutyTemplateService.cs"},{"SourceFile":"Person\\Person_PersonPlanService.cs"},{"SourceFile":"Person\\Person_QuarterCheckApproveService.cs"},{"SourceFile":"Person\\Person_QuarterCheckItemService.cs"},{"SourceFile":"Person\\Person_QuarterCheckService.cs"},{"SourceFile":"Person\\Person_ShuntApproveService.cs"},{"SourceFile":"Person\\Person_ShuntDetailService.cs"},{"SourceFile":"Person\\Person_ShuntService.cs"},{"SourceFile":"Person\\Person_TrainingPlanService.cs"},{"SourceFile":"ProjectData\\MainItemService.cs"},{"SourceFile":"ProjectData\\ProjectData_CodeTemplateRuleService.cs"},{"SourceFile":"ProjectData\\ProjectSateService.cs"},{"SourceFile":"ProjectData\\ProjectService.cs"},{"SourceFile":"ProjectData\\ProjectSetMapService.cs"},{"SourceFile":"ProjectData\\ProjectUnitService.cs"},{"SourceFile":"ProjectData\\ProjectUserService.cs"},{"SourceFile":"Common\\ChartControlService.cs"},{"SourceFile":"Common\\ConstValue.cs"},{"SourceFile":"Common\\UploadAttachmentService.cs"},{"SourceFile":"Common\\CreateMenuXML.cs"},{"SourceFile":"ProjectData\\Project_InstallationService.cs"},{"SourceFile":"ProjectData\\Project_SysSetService.cs"},{"SourceFile":"ProjectData\\TeamGroupService.cs"},{"SourceFile":"ProjectData\\UnitWorkService.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXItemService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXProcessService.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanApproveService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportApproveService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportService.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureService.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerService.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverApproveService.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverDetailService.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverService.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapService.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageDataService.cs"},{"SourceFile":"Service References\\CNCECHSSEService\\Reference.cs"},{"SourceFile":"Service References\\MCSService\\Reference.cs"},{"SourceFile":"SHIYE\\InformationProject_SafetyBriefingService.cs"},{"SourceFile":"SortConditionHelper.cs"},{"SourceFile":"SQLHelper.cs"},{"SourceFile":"Common\\Const.cs"},{"SourceFile":"ErrLogInfo.cs"},{"SourceFile":"FriendlyException.cs"},{"SourceFile":"Common\\Funs.cs"},{"SourceFile":"MethodRefelect.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"SessionName.cs"},{"SourceFile":"SoftRegeditService.cs"},{"SourceFile":"LoginService.cs"},{"SourceFile":"SysManage\\ButtonPowerService.cs"},{"SourceFile":"SysManage\\ButtonToMenuService.cs"},{"SourceFile":"SysManage\\DepartService.cs"},{"SourceFile":"SysManage\\LogService.cs"},{"SourceFile":"SysManage\\MenuFlowOperateService.cs"},{"SourceFile":"SysManage\\RoleItemService.cs"},{"SourceFile":"SysManage\\RolePowerService.cs"},{"SourceFile":"SysManage\\RoleService.cs"},{"SourceFile":"SysManage\\SysConstSetService.cs"},{"SourceFile":"SysManage\\SysHttplogService.cs"},{"SourceFile":"SysManage\\SysMenuService.cs"},{"SourceFile":"SysManage\\UnitService.cs"},{"SourceFile":"SysManage\\UserService.cs"},{"SourceFile":"PersonManage\\Test\\ServerTestPlanService.cs"},{"SourceFile":"PersonManage\\Test\\ServerTestPlanTrainingService.cs"},{"SourceFile":"PersonManage\\Test\\ServerTestRecordService.cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\DataForJTApiService.cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\InterFaceLogService .cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\InterFaceSetService .cs"},{"SourceFile":"TaskScheduling\\InterFaceService\\InterFaceTaskService .cs"},{"SourceFile":"TaskScheduling\\TimerTask\\CustomJobListener.cs"},{"SourceFile":"TaskScheduling\\TimerTask\\TaskJob.cs"},{"SourceFile":"TaskScheduling\\TimerTask\\TimerTaskBase.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRunService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyService.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlanService.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTraceService.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazardService.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicenseService.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasureService.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMapService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverConStudyService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverDataService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverDataTypeService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverPersonPlanService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDriverPlanService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDutyItemService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareDutyService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareSchemePlanItemService.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPrepareSchemePlanService.cs"},{"SourceFile":"TestRun\\DriverProgressService.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverReportService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContactService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlanService.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunService.cs"},{"SourceFile":"TestRun\\DriverSchemeService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlanService.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubService.cs"},{"SourceFile":"TestRun\\DriverSummary\\DriverSummaryService.cs"},{"SourceFile":"TestRun\\FeedingTestRunService.cs"},{"SourceFile":"TestRun\\Meeting\\MeetingService.cs"},{"SourceFile":"TestRun\\PersonTrain\\DriverPrepareTrainPlanService.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlanService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContactService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContentService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContractService.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecordsService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySampService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheckService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheckService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecordService.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReportService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheckService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheckService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecordService.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReportService.cs"},{"SourceFile":"TestRun\\TestRunService.cs"},{"SourceFile":"BoSheng\\BOSHENGMonitorService.cs"},{"SourceFile":"WebService\\MCSWebService.cs"},{"SourceFile":"WebService\\CNCECHSSEWebService.cs"},{"SourceFile":"WebService\\CNCECHSSEMonitorService.cs"},{"SourceFile":"ZHGL\\DataStatistics\\DataStatisticsService.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSDataService.cs"},{"SourceFile":"ZHGL\\DataSync\\Hazard_RealTimeDeviceService.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_DefectService.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGLService.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HiddenDangerDetailService.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSEService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSDataService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_DefectService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGLService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HiddenDangerDetailService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSEService.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSEService.cs"},{"SourceFile":"ZHGL\\DataSync\\ServerService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_DataService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_HiddenDangerCheckService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_RiskControlService.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSEService.cs"},{"SourceFile":"ZHGL\\Emergency\\UnitDrillRecordListService.cs"},{"SourceFile":"ZHGL\\Emergency\\UnitEmergencyListService.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyreportItemService .cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportItemService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportService.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyreportItemService .cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReportService.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageItemService.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageService.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEOrganizeService.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportService.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportService.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingService.cs"},{"SourceFile":"ZHGL\\Information\\UrgeReportService.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseResourceService.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportService.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportService.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportItemService.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportService.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReportService.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReportService.cs"},{"SourceFile":"ZHGL\\InspectionSummary\\InspectionSummaryService.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingService.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingService.cs"},{"SourceFile":"ZHGL\\Person\\CompanyBranchPersonService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisItemService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsService.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\ProjectAccidentReportService.cs"},{"SourceFile":"ZHGL\\RealName\\BasicDataService.cs"},{"SourceFile":"ZHGL\\RealName\\RealName_ProjectService.cs"},{"SourceFile":"ZHGL\\RealName\\OnPostService.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePostService.cs"},{"SourceFile":"ZHGL\\RealName\\CityService.cs"},{"SourceFile":"ZHGL\\RealName\\CountryService.cs"},{"SourceFile":"ZHGL\\RealName\\RealNameMonitorService.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroSetService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyItemService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReportItemService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReportService.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReportService.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyItemService.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyItemService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportItemService.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportService.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\Apache.NMS.ActiveMQ.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\portable.bouncycastle\\1.8.9\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\emitmapper\\1.0.0\\lib\\EmitMapper.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\sharpziplib\\1.3.2\\lib\\net45\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.1.1\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\Microsoft.QualityTools.Testing.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\SQL2012 x86\\110\\SDK\\Assemblies\\Microsoft.SQLServer.ManagedDTS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\Microsoft.Win32.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\netfx.force.conflicts.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\netstandard.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\newtonsoft.json\\12.0.1\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\npoi\\2.5.5\\lib\\net45\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\quartz\\3.5.0\\lib\\netstandard2.0\\Quartz.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\restsharp\\106.15.0\\lib\\net452\\RestSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.AppContext.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.buffers\\4.5.1\\ref\\net45\\System.Buffers.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.Concurrent.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.NonGeneric.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Collections.Specialized.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.EventBasedAsync.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ComponentModel.TypeConverter.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\lib\\net461\\System.Configuration.ConfigurationManager.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Console.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Data.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.OracleClient.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Contracts.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Debug.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\lib\\net46\\System.Diagnostics.DiagnosticSource.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.FileVersionInfo.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Process.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.StackTrace.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.TextWriterTraceListener.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Tools.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.TraceSource.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Diagnostics.Tracing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Drawing.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Dynamic.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.Calendars.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Globalization.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Compression.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Compression.ZipFile.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.DriveInfo.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.FileSystem.Watcher.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.IsolatedStorage.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.MemoryMappedFiles.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.Pipes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.IO.UnmanagedMemoryStream.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Expressions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Parallel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Linq.Queryable.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.memory\\4.5.4\\lib\\net461\\System.Memory.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Http.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.NameResolution.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.NetworkInformation.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Ping.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Requests.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.Sockets.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebHeaderCollection.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebSockets.Client.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Net.WebSockets.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\ref\\net46\\System.Numerics.Vectors.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Reflection.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.Reader.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.ResourceManager.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Resources.Writer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.3\\ref\\net461\\System.Runtime.CompilerServices.Unsafe.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.CompilerServices.VisualC.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Handles.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.InteropServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.InteropServices.RuntimeInformation.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Numerics.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Formatters.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Runtime.Serialization.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\ref\\net461\\System.Security.AccessControl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Claims.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Algorithms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Csp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Encoding.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.Primitives.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Cryptography.X509Certificates.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.security.permissions\\4.7.0\\ref\\net461\\System.Security.Permissions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.Principal.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\lenovo\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\ref\\net461\\System.Security.Principal.Windows.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Security.SecureString.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceProcess.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.Encoding.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.Encoding.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Text.RegularExpressions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Overlapped.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Tasks.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Tasks.Parallel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Thread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.ThreadPool.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Threading.Timer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.ValueTuple.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.ReaderWriter.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XmlDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XmlSerializer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XPath.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Visual Studio 2022\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\net461\\lib\\System.Xml.XPath.XDocument.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.dll","OutputItemRelativePath":"BLL.dll"},{"OutputItemFullPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.pdb","OutputItemRelativePath":"BLL.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj index 1a5fbae2..ce3749aa 100644 --- a/SGGL/BLL/BLL.csproj +++ b/SGGL/BLL/BLL.csproj @@ -746,6 +746,7 @@ + diff --git a/SGGL/BLL/BLL.csproj.user b/SGGL/BLL/BLL.csproj.user new file mode 100644 index 00000000..9b86104e --- /dev/null +++ b/SGGL/BLL/BLL.csproj.user @@ -0,0 +1,6 @@ + + + + ShowAllFiles + + \ No newline at end of file diff --git a/SGGL/BLL/Common/Const.cs b/SGGL/BLL/Common/Const.cs index 73775511..f5ce14c8 100644 --- a/SGGL/BLL/Common/Const.cs +++ b/SGGL/BLL/Common/Const.cs @@ -3202,6 +3202,13 @@ namespace BLL /// 开车方案编制计划模板文件原始虚拟路径 /// public const string SchemePlan2TemplateUrl = "File\\Excel\\TestRun\\开车方案编制计划2.xlsx"; + + + /// + /// 开车分包联络单模板文件原始虚拟路径 + /// + public const string DriverSubContactTemplateUrl = "File\\Excel\\TestRun\\开车合作单位名录.xlsx"; + #endregion #region 绩效考核模板文件路径 diff --git a/SGGL/BLL/DropListService.cs b/SGGL/BLL/DropListService.cs index 8b23e163..9afd3b7b 100644 --- a/SGGL/BLL/DropListService.cs +++ b/SGGL/BLL/DropListService.cs @@ -195,6 +195,17 @@ list[6] = new ListItem("保运人员一览", "07"); return list; } + + //开车分包名称下拉框 + public static ListItem[] drpDriverSubNameList() + { + ListItem[] list = new ListItem[4]; + list[0] = new ListItem("催化剂装填", "1"); + list[1] = new ListItem("烘炉", "2"); + list[2] = new ListItem("化学清洗", "3"); + list[3] = new ListItem("开车队", "4"); + return list; + } #endregion /// diff --git a/SGGL/BLL/TestRun/DriverSub/DriverSubContactService.cs b/SGGL/BLL/TestRun/DriverSub/DriverSubContactService.cs index c660e64d..aff97bd8 100644 --- a/SGGL/BLL/TestRun/DriverSub/DriverSubContactService.cs +++ b/SGGL/BLL/TestRun/DriverSub/DriverSubContactService.cs @@ -1,4 +1,5 @@ -using System.Linq; +using System.Collections.Generic; +using System.Linq; namespace BLL { @@ -17,6 +18,16 @@ namespace BLL return Funs.DB.DriverSub_DriverSubContact.FirstOrDefault(e => e.DriverSubContactId == DriverSubContactId); } + public static List GetDriverSubContactByProjectid(string projectId) + { + return Funs.DB.DriverSub_DriverSubContact.Where(e => e.ProjectId == projectId).ToList(); + } + + public static List GetDriverSubContactByDriverSubPlanId( + string DriverSubPlanId) + { + return Funs.DB.DriverSub_DriverSubContact.Where(e => e.DriverSubPlanId == DriverSubPlanId).ToList(); + } /// /// 添加开车分包联络信息 /// @@ -36,6 +47,9 @@ namespace BLL newDriverSubContact.OutTime = DriverSubContact.OutTime; newDriverSubContact.AttachUrl = DriverSubContact.AttachUrl; newDriverSubContact.Remark = DriverSubContact.Remark; + newDriverSubContact.DriverSubPlanId= DriverSubContact.DriverSubPlanId; + newDriverSubContact.DriverSubContractorsId = DriverSubContact.DriverSubContractorsId; + newDriverSubContact.SubcontractingType = DriverSubContact.SubcontractingType; Funs.DB.DriverSub_DriverSubContact.InsertOnSubmit(newDriverSubContact); Funs.DB.SubmitChanges(); } @@ -59,6 +73,9 @@ namespace BLL newDriverSubContact.OutTime = DriverSubContact.OutTime; newDriverSubContact.AttachUrl = DriverSubContact.AttachUrl; newDriverSubContact.Remark = DriverSubContact.Remark; + newDriverSubContact.DriverSubPlanId = DriverSubContact.DriverSubPlanId; + newDriverSubContact.DriverSubContractorsId = DriverSubContact.DriverSubContractorsId; + newDriverSubContact.SubcontractingType = DriverSubContact.SubcontractingType; Funs.DB.SubmitChanges(); } } @@ -80,5 +97,22 @@ namespace BLL Funs.DB.SubmitChanges(); } } + + public static void DeleteDriverSubContactByDriverSubPlanId(string DriverSubPlanId) + { + List DriverSubContact = Funs.DB.DriverSub_DriverSubContact.Where(e => e.DriverSubPlanId == DriverSubPlanId).ToList(); + if (DriverSubContact != null) + { + foreach (var item in DriverSubContact) + { + if (!string.IsNullOrEmpty(item.AttachUrl)) + { + BLL.UploadAttachmentService.DeleteFile(Funs.RootPath, item.AttachUrl);//删除附件 + } + Funs.DB.DriverSub_DriverSubContact.DeleteOnSubmit(item); + Funs.DB.SubmitChanges(); + } + } + } } } diff --git a/SGGL/BLL/TestRun/DriverSub/DriverSubContractorsService.cs b/SGGL/BLL/TestRun/DriverSub/DriverSubContractorsService.cs new file mode 100644 index 00000000..7e802511 --- /dev/null +++ b/SGGL/BLL/TestRun/DriverSub/DriverSubContractorsService.cs @@ -0,0 +1,173 @@ +using FineUIPro; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Text; + + +namespace BLL +{ + + public static class DriversubcontractorsService + { + + + + #region 获取列表 + /// + /// 记录数 + /// + public static int Count + { + get; + set; + } + public static IQueryable GetDriverSub_DriverSubContractorsByModle(Model.DriverSub_DriverSubContractors table) + { + var q = from x in Funs.DB.DriverSub_DriverSubContractors + where + (string.IsNullOrEmpty(table.DriverSubContractorsId) || x.DriverSubContractorsId.Contains(table.DriverSubContractorsId)) && + (string.IsNullOrEmpty(table.SubUnitName) || x.SubUnitName.Contains(table.SubUnitName)) && + (string.IsNullOrEmpty(table.EnterpriseNature) || x.EnterpriseNature.Contains(table.EnterpriseNature)) && + (string.IsNullOrEmpty(table.SubcontractingType) || x.SubcontractingType.Contains(table.SubcontractingType)) && + (string.IsNullOrEmpty(table.CollCropCode) || x.CollCropCode.Contains(table.CollCropCode)) && + (string.IsNullOrEmpty(table.SafetyProductionLicense) || x.SafetyProductionLicense.Contains(table.SafetyProductionLicense)) && + (string.IsNullOrEmpty(table.QualificationCertificateNumber) || x.QualificationCertificateNumber.Contains(table.QualificationCertificateNumber)) && + (string.IsNullOrEmpty(table.QualificationType) || x.QualificationType.Contains(table.QualificationType)) && + (string.IsNullOrEmpty(table.QualificationLevel) || x.QualificationLevel.Contains(table.QualificationLevel)) && + (string.IsNullOrEmpty(table.Province) || x.Province.Contains(table.Province)) && + (string.IsNullOrEmpty(table.City) || x.City.Contains(table.City)) + select x + ; + + return q; + } + + /// + /// 获取分页列表 + /// + /// + /// + /// + public static IEnumerable GetListData(Model.DriverSub_DriverSubContractors table, Grid grid1) + { + var q = GetDriverSub_DriverSubContractorsByModle(table); + Count = q.Count(); + if (Count == 0) + { + return null; + } + q = q.Skip(grid1.PageSize * grid1.PageIndex).Take(grid1.PageSize) ; + // q = SortConditionHelper.SortingAndPaging(q, Grid1.SortField, Grid1.SortDirection, Grid1.PageIndex, Grid1.PageSize); + return from x in q + select new + { + x.DriverSubContractorsId, + x.SubUnitName, + x.EnterpriseNature, + x.SubcontractingType, + x.CollCropCode, + x.SafetyProductionLicense, + x.QualificationCertificateNumber, + x.QualificationType, + x.QualificationLevel, + x.Province, + x.City, + x.IsUse + + }; + } + #endregion + + + public static Model.DriverSub_DriverSubContractors GetDriverSub_DriverSubContractorsById(string DriverSubContractorsId) + { + return Funs.DB.DriverSub_DriverSubContractors.FirstOrDefault(x => x.DriverSubContractorsId == DriverSubContractorsId); + } + + public static Model.DriverSub_DriverSubContractors GetDriverSubContractorsByCollCropCode( + string CollCropCode) + { + return Funs.DB.DriverSub_DriverSubContractors.FirstOrDefault(e => e.CollCropCode == CollCropCode); + } + public static void AddDriverSub_DriverSubContractors(Model.DriverSub_DriverSubContractors newtable) + { + + Model.DriverSub_DriverSubContractors table = new Model.DriverSub_DriverSubContractors + { + DriverSubContractorsId = newtable.DriverSubContractorsId, + SubUnitName = newtable.SubUnitName, + EnterpriseNature = newtable.EnterpriseNature, + SubcontractingType = newtable.SubcontractingType, + CollCropCode = newtable.CollCropCode, + SafetyProductionLicense = newtable.SafetyProductionLicense, + QualificationCertificateNumber = newtable.QualificationCertificateNumber, + QualificationType = newtable.QualificationType, + QualificationLevel = newtable.QualificationLevel, + Province = newtable.Province, + City = newtable.City, + IsUse = newtable.IsUse + }; + Funs.DB.DriverSub_DriverSubContractors.InsertOnSubmit(table); + Funs.DB.SubmitChanges(); + } + + /// + /// + /// + /// + public static void UpdateDriverSub_DriverSubContractors(Model.DriverSub_DriverSubContractors newtable) + { + + Model.DriverSub_DriverSubContractors table = Funs.DB.DriverSub_DriverSubContractors.FirstOrDefault(x => x.DriverSubContractorsId == newtable.DriverSubContractorsId); + if (table != null) + { + table.DriverSubContractorsId = newtable.DriverSubContractorsId; + table.SubUnitName = newtable.SubUnitName; + table.EnterpriseNature = newtable.EnterpriseNature; + table.SubcontractingType = newtable.SubcontractingType; + table.CollCropCode = newtable.CollCropCode; + table.SafetyProductionLicense = newtable.SafetyProductionLicense; + table.QualificationCertificateNumber = newtable.QualificationCertificateNumber; + table.QualificationType = newtable.QualificationType; + table.QualificationLevel = newtable.QualificationLevel; + table.Province = newtable.Province; + table.City = newtable.City; + table.IsUse = newtable.IsUse; + Funs.DB.SubmitChanges(); + } + + } + /// + /// 将所有的IsUse设置为false + /// + public static void UpdateDriverSub_DriverSubContractorsIsUse() + { + var list = Funs.DB.DriverSub_DriverSubContractors.ToList(); + foreach (var item in list) + { + item.IsUse = false; + } + Funs.DB.SubmitChanges(); + } + + + /// + /// 删除 + /// + /// + public static void DeleteDriverSub_DriverSubContractorsById(string DriverSubContractorsId) + { + + Model.DriverSub_DriverSubContractors table = Funs.DB.DriverSub_DriverSubContractors.FirstOrDefault(x => x.DriverSubContractorsId == DriverSubContractorsId); + if (table != null) + { + Funs.DB.DriverSub_DriverSubContractors.DeleteOnSubmit(table); + Funs.DB.SubmitChanges(); + } + + } + + } +} \ No newline at end of file diff --git a/SGGL/BLL/TestRun/DriverSub/DriverSubPlanService.cs b/SGGL/BLL/TestRun/DriverSub/DriverSubPlanService.cs index 3b1b4166..dd603307 100644 --- a/SGGL/BLL/TestRun/DriverSub/DriverSubPlanService.cs +++ b/SGGL/BLL/TestRun/DriverSub/DriverSubPlanService.cs @@ -1,8 +1,10 @@ using System; +using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using FineUIPro; namespace BLL { @@ -11,6 +13,74 @@ namespace BLL /// public static class DriverSubPlanService { + #region 获取列表 + /// + /// 记录数 + /// + public static int Count + { + get; + set; + } + public static IQueryable GetDriverSub_DriverSubPlanByModle(Model.DriverSub_DriverSubPlan table) + { + var q = from x in Funs.DB.DriverSub_DriverSubPlan + where + (string.IsNullOrEmpty(table.DriverSubPlanId) || x.DriverSubPlanId.Contains(table.DriverSubPlanId)) && + (string.IsNullOrEmpty(table.ProjectId) || x.ProjectId.Contains(table.ProjectId)) && + (string.IsNullOrEmpty(table.Code) || x.Code.Contains(table.Code)) && + (string.IsNullOrEmpty(table.SubUnitId) || x.SubUnitId.Contains(table.SubUnitId)) && + (string.IsNullOrEmpty(table.Introductions) || x.Introductions.Contains(table.Introductions)) && + (string.IsNullOrEmpty(table.Achievement) || x.Achievement.Contains(table.Achievement)) && + (string.IsNullOrEmpty(table.Cooperation) || x.Cooperation.Contains(table.Cooperation)) && + (string.IsNullOrEmpty(table.InstallationIds) || x.InstallationIds.Contains(table.InstallationIds)) && + (string.IsNullOrEmpty(table.InstallationNames) || x.InstallationNames.Contains(table.InstallationNames)) && + (string.IsNullOrEmpty(table.AttachUrl) || x.AttachUrl.Contains(table.AttachUrl)) && + (string.IsNullOrEmpty(table.Remark) || x.Remark.Contains(table.Remark)) && + (string.IsNullOrEmpty(table.DriverSubNames) || x.DriverSubNames.Contains(table.DriverSubNames)) + select x + ; + + return q; + } + + /// + /// 获取分页列表 + /// + /// + /// + /// + public static IQueryable GetListData(Model.DriverSub_DriverSubPlan table, Grid grid1) + { + var q = GetDriverSub_DriverSubPlanByModle(table); + Count = q.Count() ; + if (Count == 0) + { + return null; + } + q = q.Skip(grid1.PageSize * grid1.PageIndex).Take(grid1.PageSize); + // q = SortConditionHelper.SortingAndPaging(q, Grid1.SortField, Grid1.SortDirection, Grid1.PageIndex, Grid1.PageSize); + return from x in q + select new + { + x.DriverSubPlanId, + x.ProjectId, + x.Code, + x.SubUnitId, + x.Introductions, + x.Achievement, + x.Cooperation, + x.InstallationIds, + x.InstallationNames, + x.IsInvited, + x.AttachUrl, + x.Remark, + x.DriverSubNames, + + }; + } + #endregion + /// /// 根据主键获取开车分包计划信息 /// @@ -20,7 +90,10 @@ namespace BLL { return Funs.DB.DriverSub_DriverSubPlan.FirstOrDefault(e => e.DriverSubPlanId == DriverSubPlanId); } - + public static List GetDriverSubPlanByProjectid(string projectId) + { + return Funs.DB.DriverSub_DriverSubPlan.Where(e => e.ProjectId == projectId).ToList(); + } /// /// 添加开车分包计划信息 /// @@ -40,6 +113,7 @@ namespace BLL newDriverSubPlan.IsInvited = DriverSubPlan.IsInvited; newDriverSubPlan.AttachUrl = DriverSubPlan.AttachUrl; newDriverSubPlan.Remark = DriverSubPlan.Remark; + newDriverSubPlan.DriverSubNames= DriverSubPlan.DriverSubNames; Funs.DB.DriverSub_DriverSubPlan.InsertOnSubmit(newDriverSubPlan); Funs.DB.SubmitChanges(); } @@ -63,6 +137,8 @@ namespace BLL newDriverSubPlan.IsInvited = DriverSubPlan.IsInvited; newDriverSubPlan.AttachUrl = DriverSubPlan.AttachUrl; newDriverSubPlan.Remark = DriverSubPlan.Remark; + newDriverSubPlan.DriverSubNames = DriverSubPlan.DriverSubNames; + Funs.DB.SubmitChanges(); } } @@ -84,5 +160,16 @@ namespace BLL Funs.DB.SubmitChanges(); } } - } + public static void InitSubPlanDropDownList(FineUIPro.DropDownList dropName,string projectid, bool isShowPlease) + { + dropName.DataValueField = "DriverSubPlanId"; + dropName.DataTextField = "Code"; + dropName.DataSource = GetDriverSubPlanByProjectid(projectid); + dropName.DataBind(); + if (isShowPlease) + { + Funs.FineUIPleaseSelect(dropName); + } + } + } } diff --git a/SGGL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json b/SGGL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json new file mode 100644 index 00000000..97fc8c4d --- /dev/null +++ b/SGGL/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json @@ -0,0 +1 @@ +{"RootPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web","ProjectFileName":"FineUIPro.Web.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"AttachFile\\fileupload.ashx.cs"},{"SourceFile":"AttachFile\\Look.aspx.cs"},{"SourceFile":"AttachFile\\Look.aspx.designer.cs"},{"SourceFile":"AttachFile\\OnlineEditing.aspx.cs"},{"SourceFile":"AttachFile\\OnlineEditing.aspx.designer.cs"},{"SourceFile":"AttachFile\\player.aspx.cs"},{"SourceFile":"AttachFile\\player.aspx.designer.cs"},{"SourceFile":"AttachFile\\uploader.aspx.cs"},{"SourceFile":"AttachFile\\uploader.aspx.designer.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.designer.cs"},{"SourceFile":"BaseInfo\\AccidentType.aspx.cs"},{"SourceFile":"BaseInfo\\AccidentType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\BaseFactory.aspx.cs"},{"SourceFile":"BaseInfo\\BaseFactory.aspx.designer.cs"},{"SourceFile":"BaseInfo\\BaseFactoryEdit.aspx.cs"},{"SourceFile":"BaseInfo\\BaseFactoryEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Certificate.aspx.cs"},{"SourceFile":"BaseInfo\\Certificate.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CNProfessional.aspx.cs"},{"SourceFile":"BaseInfo\\CNProfessional.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CNProfessionalEdit.aspx.cs"},{"SourceFile":"BaseInfo\\CNProfessionalEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CNProfessionalView.aspx.cs"},{"SourceFile":"BaseInfo\\CNProfessionalView.aspx.designer.cs"},{"SourceFile":"BaseInfo\\CostType.aspx.cs"},{"SourceFile":"BaseInfo\\CostType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DesignProfessional.aspx.cs"},{"SourceFile":"BaseInfo\\DesignProfessional.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalEdit.aspx.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalView.aspx.cs"},{"SourceFile":"BaseInfo\\DesignProfessionalView.aspx.designer.cs"},{"SourceFile":"BaseInfo\\DocType.aspx.cs"},{"SourceFile":"BaseInfo\\DocType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\EmergencyType.aspx.cs"},{"SourceFile":"BaseInfo\\EmergencyType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\GoodsCategory.aspx.cs"},{"SourceFile":"BaseInfo\\GoodsCategory.aspx.designer.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypes.aspx.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypes.aspx.designer.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypesEdit.aspx.cs"},{"SourceFile":"BaseInfo\\HazardRegisterTypesEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\HSSEStandardListType.aspx.cs"},{"SourceFile":"BaseInfo\\HSSEStandardListType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\LawsRegulationsType.aspx.cs"},{"SourceFile":"BaseInfo\\LawsRegulationsType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\LicenseType.aspx.cs"},{"SourceFile":"BaseInfo\\LicenseType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ManageRuleType.aspx.cs"},{"SourceFile":"BaseInfo\\ManageRuleType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PictureType.aspx.cs"},{"SourceFile":"BaseInfo\\PictureType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\Position.aspx.cs"},{"SourceFile":"BaseInfo\\Position.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PostTitle.aspx.cs"},{"SourceFile":"BaseInfo\\PostTitle.aspx.designer.cs"},{"SourceFile":"BaseInfo\\PracticeCertificate.aspx.cs"},{"SourceFile":"BaseInfo\\PracticeCertificate.aspx.designer.cs"},{"SourceFile":"BaseInfo\\ProjectType.aspx.cs"},{"SourceFile":"BaseInfo\\ProjectType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QualityQuestionType.aspx.cs"},{"SourceFile":"BaseInfo\\QualityQuestionType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeEdit.aspx.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeView.aspx.cs"},{"SourceFile":"BaseInfo\\QualityQuestionTypeView.aspx.designer.cs"},{"SourceFile":"BaseInfo\\QuestionType.aspx.cs"},{"SourceFile":"BaseInfo\\QuestionType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RectificationMeasure.aspx.cs"},{"SourceFile":"BaseInfo\\RectificationMeasure.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RectificationMeasureEdit.aspx.cs"},{"SourceFile":"BaseInfo\\RectificationMeasureEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RiskLevel.aspx.cs"},{"SourceFile":"BaseInfo\\RiskLevel.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RiskLevelEdit.aspx.cs"},{"SourceFile":"BaseInfo\\RiskLevelEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\RulesRegulationsType.aspx.cs"},{"SourceFile":"BaseInfo\\RulesRegulationsType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SafetyMeasures.aspx.cs"},{"SourceFile":"BaseInfo\\SafetyMeasures.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SafetyMeasuresEdit.aspx.cs"},{"SourceFile":"BaseInfo\\SafetyMeasuresEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SolutionTempleteType.aspx.cs"},{"SourceFile":"BaseInfo\\SolutionTempleteType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SpecialEquipment.aspx.cs"},{"SourceFile":"BaseInfo\\SpecialEquipment.aspx.designer.cs"},{"SourceFile":"BaseInfo\\SpecialSchemeType.aspx.cs"},{"SourceFile":"BaseInfo\\SpecialSchemeType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TrainLevel.aspx.cs"},{"SourceFile":"BaseInfo\\TrainLevel.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TrainType.aspx.cs"},{"SourceFile":"BaseInfo\\TrainType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\TrainTypeEdit.aspx.cs"},{"SourceFile":"BaseInfo\\TrainTypeEdit.aspx.designer.cs"},{"SourceFile":"BaseInfo\\UnitType.aspx.cs"},{"SourceFile":"BaseInfo\\UnitType.aspx.designer.cs"},{"SourceFile":"BaseInfo\\WorkPost.aspx.cs"},{"SourceFile":"BaseInfo\\WorkPost.aspx.designer.cs"},{"SourceFile":"BaseInfo\\WorkStage.aspx.cs"},{"SourceFile":"BaseInfo\\WorkStage.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoExam.aspx.cs"},{"SourceFile":"BoSheng\\BoExam.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoPersonTrainRecord.aspx.cs"},{"SourceFile":"BoSheng\\BoPersonTrainRecord.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoTrainPerson.aspx.cs"},{"SourceFile":"BoSheng\\BoTrainPerson.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoTrain.aspx.cs"},{"SourceFile":"BoSheng\\BoTrain.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoPerson.aspx.cs"},{"SourceFile":"BoSheng\\BoPerson.aspx.designer.cs"},{"SourceFile":"BoSheng\\BoUnit.aspx.cs"},{"SourceFile":"BoSheng\\BoUnit.aspx.designer.cs"},{"SourceFile":"CLGL\\ArrivalDetailList.aspx.cs"},{"SourceFile":"CLGL\\ArrivalDetailList.aspx.designer.cs"},{"SourceFile":"CLGL\\CheckOutDetailList.aspx.cs"},{"SourceFile":"CLGL\\CheckOutDetailList.aspx.designer.cs"},{"SourceFile":"CLGL\\ContractList.aspx.cs"},{"SourceFile":"CLGL\\ContractList.aspx.designer.cs"},{"SourceFile":"CLGL\\ContractListSum.aspx.cs"},{"SourceFile":"CLGL\\ContractListSum.aspx.designer.cs"},{"SourceFile":"CLGL\\ContractQuantitySheet.aspx.cs"},{"SourceFile":"CLGL\\ContractQuantitySheet.aspx.designer.cs"},{"SourceFile":"CLGL\\GoodsShelves.aspx.cs"},{"SourceFile":"CLGL\\GoodsShelves.aspx.designer.cs"},{"SourceFile":"CLGL\\Material.aspx.cs"},{"SourceFile":"CLGL\\Material.aspx.designer.cs"},{"SourceFile":"CLGL\\MaterialRecord.aspx.cs"},{"SourceFile":"CLGL\\MaterialRecord.aspx.designer.cs"},{"SourceFile":"CLGL\\MTODetail.aspx.cs"},{"SourceFile":"CLGL\\MTODetail.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineMaterialCodeList.aspx.cs"},{"SourceFile":"CLGL\\PipelineMaterialCodeList.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineMaterialList.aspx.cs"},{"SourceFile":"CLGL\\PipelineMaterialList.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineMaterialSumList.aspx.cs"},{"SourceFile":"CLGL\\PipelineMaterialSumList.aspx.designer.cs"},{"SourceFile":"CLGL\\PipelineSupplierList.aspx.cs"},{"SourceFile":"CLGL\\PipelineSupplierList.aspx.designer.cs"},{"SourceFile":"CLGL\\PurchaseRequisition.aspx.cs"},{"SourceFile":"CLGL\\PurchaseRequisition.aspx.designer.cs"},{"SourceFile":"CLGL\\RequestDetailList.aspx.cs"},{"SourceFile":"CLGL\\RequestDetailList.aspx.designer.cs"},{"SourceFile":"CLGL\\SubUnit.aspx.cs"},{"SourceFile":"CLGL\\SubUnit.aspx.designer.cs"},{"SourceFile":"CLGL\\Supplier.aspx.cs"},{"SourceFile":"CLGL\\Supplier.aspx.designer.cs"},{"SourceFile":"common\\main2.aspx.cs"},{"SourceFile":"common\\main2.aspx.designer.cs"},{"SourceFile":"common\\mainI.aspx.cs"},{"SourceFile":"common\\mainI.aspx.designer.cs"},{"SourceFile":"common\\mainIV.aspx.cs"},{"SourceFile":"common\\mainIV.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_DigitalSite.aspx.cs"},{"SourceFile":"common\\mainMenu_DigitalSite.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HJGL.aspx.cs"},{"SourceFile":"common\\mainMenu_HJGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HJGL2.aspx.cs"},{"SourceFile":"common\\mainMenu_HJGL2.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HSSE2.aspx.cs"},{"SourceFile":"common\\mainMenu_HSSE2.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_Party.aspx.cs"},{"SourceFile":"common\\mainMenu_Party.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_PDigData.aspx.cs"},{"SourceFile":"common\\mainMenu_PDigData.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_PZHGL.aspx.cs"},{"SourceFile":"common\\mainMenu_PZHGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_SYHSE.aspx.cs"},{"SourceFile":"common\\mainMenu_SYHSE.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_SYHSEN.aspx.cs"},{"SourceFile":"common\\mainMenu_SYHSEN.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_TestRun.aspx.cs"},{"SourceFile":"common\\mainMenu_TestRun.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_PHTGL.aspx.cs"},{"SourceFile":"common\\mainMenu_PHTGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_JDGL.aspx.cs"},{"SourceFile":"common\\mainMenu_JDGL.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_CQMS.aspx.cs"},{"SourceFile":"common\\mainMenu_CQMS.aspx.designer.cs"},{"SourceFile":"common\\mainMenu_HSSE.aspx.cs"},{"SourceFile":"common\\mainMenu_HSSE.aspx.designer.cs"},{"SourceFile":"common\\mainProject0.aspx.cs"},{"SourceFile":"common\\mainProject0.aspx.designer.cs"},{"SourceFile":"common\\mainIII.aspx.cs"},{"SourceFile":"common\\mainIII.aspx.designer.cs"},{"SourceFile":"common\\mainProject1.aspx.cs"},{"SourceFile":"common\\mainProject1.aspx.designer.cs"},{"SourceFile":"common\\main.aspx.cs"},{"SourceFile":"common\\main.aspx.designer.cs"},{"SourceFile":"common\\mainProject.aspx.cs"},{"SourceFile":"common\\mainProject.aspx.designer.cs"},{"SourceFile":"common\\mainProject2.aspx.cs"},{"SourceFile":"common\\mainProject2.aspx.designer.cs"},{"SourceFile":"common\\main_new.aspx.cs"},{"SourceFile":"common\\main_new.aspx.designer.cs"},{"SourceFile":"common\\main_new0.aspx.cs"},{"SourceFile":"common\\main_new0.aspx.designer.cs"},{"SourceFile":"common\\main_new1.aspx.cs"},{"SourceFile":"common\\main_new1.aspx.designer.cs"},{"SourceFile":"common\\themes.aspx.cs"},{"SourceFile":"common\\themes.aspx.designer.cs"},{"SourceFile":"Controls\\FlowOperateControl.ascx.cs"},{"SourceFile":"Controls\\FlowOperateControl.ascx.designer.cs"},{"SourceFile":"Controls\\QRCodePrint.aspx.cs"},{"SourceFile":"Controls\\QRCodePrint.aspx.designer.cs"},{"SourceFile":"Controls\\SeeQRImage.aspx.cs"},{"SourceFile":"Controls\\SeeQRImage.aspx.designer.cs"},{"SourceFile":"Controls\\ShowQRImage.aspx.cs"},{"SourceFile":"Controls\\ShowQRImage.aspx.designer.cs"},{"SourceFile":"Controls\\UnitProjectTControl.ascx.cs"},{"SourceFile":"Controls\\UnitProjectTControl.ascx.designer.cs"},{"SourceFile":"CQMS\\BaseInfo\\ProjectSysSet.aspx.cs"},{"SourceFile":"CQMS\\BaseInfo\\ProjectSysSet.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipment.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckList.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckList.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\ChecklistEdit.aspx.cs"},{"SourceFile":"CQMS\\Check\\ChecklistEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckListFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckListFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckListView.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckListView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckMonth.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckMonth.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\CheckMonthFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\CheckMonthFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\ConstructSolutionFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\ConstructSolutionFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\Design.aspx.cs"},{"SourceFile":"CQMS\\Check\\Design.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DesignFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\DesignFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DesignView.aspx.cs"},{"SourceFile":"CQMS\\Check\\DesignView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\Draw.aspx.cs"},{"SourceFile":"CQMS\\Check\\Draw.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DrawEdit.aspx.cs"},{"SourceFile":"CQMS\\Check\\DrawEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\DrawView.aspx.cs"},{"SourceFile":"CQMS\\Check\\DrawView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipment.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipmentTwo.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditCheckEquipmentTwo.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditCheckMonth.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditCheckMonth.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditDesign.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditDesign.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheckTwo.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditJointCheckTwo.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditSportDataCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditSportDataCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditSpotCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditSpotCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\EditTechnicalContactList.aspx.cs"},{"SourceFile":"CQMS\\Check\\EditTechnicalContactList.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\FileCabinet.aspx.cs"},{"SourceFile":"CQMS\\Check\\FileCabinet.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\FileCabinetEdit.aspx.cs"},{"SourceFile":"CQMS\\Check\\FileCabinetEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheckFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheckFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheckStatistics.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheckStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\JointCheckView.aspx.cs"},{"SourceFile":"CQMS\\Check\\JointCheckView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\ShowWBS.aspx.cs"},{"SourceFile":"CQMS\\Check\\ShowWBS.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckStatistics.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckView.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotCheckView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheck.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheckView.aspx.cs"},{"SourceFile":"CQMS\\Check\\SpotDataCheckView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactList.aspx.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactList.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactListFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactView.aspx.cs"},{"SourceFile":"CQMS\\Check\\TechnicalContactView.aspx.designer.cs"},{"SourceFile":"CQMS\\Check\\WorkContactFile.aspx.cs"},{"SourceFile":"CQMS\\Check\\WorkContactFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistribution.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistribution.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataDistributionEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceiving.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceiving.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DataReceivingEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrder.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrder.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignChangeOrderEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetails.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetails.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDetailsEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawings.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawings.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\DesignDrawingsEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApproval.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApproval.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\GeneralPlanApprovalEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipment.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionEquipmentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachine.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachine.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionMachineEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPerson.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPerson.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\InspectionPersonEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApproval.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApproval.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\MajorPlanApprovalEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagement.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\NCRManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonItem.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PersonItem.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipe.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipe.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\PressurePipeEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccident.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccident.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\QualityAccidentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagement.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementDataIn.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementDataIn.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SiteVisaManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipment.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipment.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentApprove.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentApprove.aspx.designer.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentEdit.aspx.cs"},{"SourceFile":"CQMS\\Comprehensive\\SpecialEquipmentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardList.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardList.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProject.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProject.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\ConstructionStandardListProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataBase.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataBase.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseProject.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataBaseProject.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\DataTypeProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit2.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\FileEdit2.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotList.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotList.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotListEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\InspectionLotListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\PhotoEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\PhotoEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\StartWorkEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\StartWorkEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\WBS2FileEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\WBS2FileEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\DataBase\\WBSFileEdit.aspx.cs"},{"SourceFile":"CQMS\\DataBase\\WBSFileEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheck.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheck.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheckEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointCheckEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointList.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointList.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointListEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ControlPointListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ForeignWBSOut.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ForeignWBSOut.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPList.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPList.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProject.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProject.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ITPListProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Foreign\\ShoBreakdownProject.aspx.cs"},{"SourceFile":"CQMS\\Foreign\\ShoBreakdownProject.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\CheckStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\CheckStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\DesignChangeStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\DesignChangeStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\HJGLStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\HJGLStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportPrint.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\MonthReportPrint.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\NCRStatisc.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\NCRStatisc.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QualityWorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQuality.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQuality.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQualityEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\QuarterlyProjectQualityEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReport.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReport.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportEdit.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportPrint.aspx.cs"},{"SourceFile":"CQMS\\ManageReport\\WeekReportPrint.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\MonthTargetEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\MonthTargetEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\OutDayEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\OutDayEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\Performance.aspx.cs"},{"SourceFile":"CQMS\\Performance\\Performance.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceAudit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceAudit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceConfig.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceConfig.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceSubmit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\PerformanceSubmit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\ScoreEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\ScoreEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\TaskContentEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\TaskContentEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Performance\\WorkPlanEdit.aspx.cs"},{"SourceFile":"CQMS\\Performance\\WorkPlanEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\CheckManStatistics.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\CheckManStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManage.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManage.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManageEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\HotProessManageEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagement.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementStatistics.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionManagementStatistics.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNotice.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNotice.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNoticeEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\InspectionNoticeEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTest.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\NondestructiveTestEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\ShowUnitWork.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\ShowUnitWork.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagement.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagement.aspx.designer.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementEdit.aspx.cs"},{"SourceFile":"CQMS\\ProcessControl\\TestPackageManagementEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolution.aspx.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolution.aspx.designer.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolutionView.aspx.cs"},{"SourceFile":"CQMS\\Solution\\ConstructSolutionView.aspx.designer.cs"},{"SourceFile":"CQMS\\Solution\\EditConstructSolution.aspx.cs"},{"SourceFile":"CQMS\\Solution\\EditConstructSolution.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\AddWorkContactFinalFile.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\AddWorkContactFinalFile.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\ContactList.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\ContactList.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\EditWorkContact.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\EditWorkContact.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactFinalFileView.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactFinalFileView.aspx.designer.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactView.aspx.cs"},{"SourceFile":"CQMS\\Unqualified\\WorkContactView.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycle.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycle.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSearch.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSearch.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSet.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleSet.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleShow.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemAndCycleShow.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitSet.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemInitSet.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlItemProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ControlPoint.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ControlPoint.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdown.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdown.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdownProject.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditBreakdownProject.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditDivision.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditDivision.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\EditDivisionProject.aspx.cs"},{"SourceFile":"CQMS\\WBS\\EditDivisionProject.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessional.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessional.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessionalEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignCNProfessionalEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPoint.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPoint.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPointEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ForeignControlPointEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlItemInitSet.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlItemInitSet.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPoint.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPoint.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPointFile.aspx.cs"},{"SourceFile":"CQMS\\WBS\\ProjectControlPointFile.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageInitEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageInitEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageProjectEdit.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageProjectEdit.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet1.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet1.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2.aspx.designer.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2In.aspx.cs"},{"SourceFile":"CQMS\\WBS\\WorkPackageSet2In.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatisc.aspx.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatisc.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatiscItem.aspx.cs"},{"SourceFile":"DataShowLocal\\InspectionManagementStatiscItem.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\NCRStatisc.aspx.cs"},{"SourceFile":"DataShowLocal\\NCRStatisc.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\NCRStatiscItem.aspx.cs"},{"SourceFile":"DataShowLocal\\NCRStatiscItem.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\QualityInstruments.aspx.cs"},{"SourceFile":"DataShowLocal\\QualityInstruments.aspx.designer.cs"},{"SourceFile":"DataShowLocal\\QualityInstrumentsItem.aspx.cs"},{"SourceFile":"DataShowLocal\\QualityInstrumentsItem.aspx.designer.cs"},{"SourceFile":"DataShow\\Accident.aspx.cs"},{"SourceFile":"DataShow\\Accident.aspx.designer.cs"},{"SourceFile":"DataShow\\Check.aspx.cs"},{"SourceFile":"DataShow\\Check.aspx.designer.cs"},{"SourceFile":"DataShow\\CompanyPerson.aspx.cs"},{"SourceFile":"DataShow\\CompanyPerson.aspx.designer.cs"},{"SourceFile":"DataShow\\ConstructionEquipment.aspx.cs"},{"SourceFile":"DataShow\\ConstructionEquipment.aspx.designer.cs"},{"SourceFile":"DataShow\\EduTrain.aspx.cs"},{"SourceFile":"DataShow\\EduTrain.aspx.designer.cs"},{"SourceFile":"DataShow\\Emergency.aspx.cs"},{"SourceFile":"DataShow\\Emergency.aspx.designer.cs"},{"SourceFile":"DataShow\\Environmental.aspx.cs"},{"SourceFile":"DataShow\\Environmental.aspx.designer.cs"},{"SourceFile":"DataShow\\HiddenRectification.aspx.cs"},{"SourceFile":"DataShow\\HiddenRectification.aspx.designer.cs"},{"SourceFile":"DataShow\\HiddenRectificationItem.aspx.cs"},{"SourceFile":"DataShow\\HiddenRectificationItem.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLDefect.aspx.cs"},{"SourceFile":"DataShow\\HJGLDefect.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLWelder.aspx.cs"},{"SourceFile":"DataShow\\HJGLWelder.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLWelding.aspx.cs"},{"SourceFile":"DataShow\\HJGLWelding.aspx.designer.cs"},{"SourceFile":"DataShow\\HJGLWeldingItem.aspx.cs"},{"SourceFile":"DataShow\\HJGLWeldingItem.aspx.designer.cs"},{"SourceFile":"DataShow\\LargeEngineering.aspx.cs"},{"SourceFile":"DataShow\\LargeEngineering.aspx.designer.cs"},{"SourceFile":"DataShow\\LargeEngineeringItem.aspx.cs"},{"SourceFile":"DataShow\\LargeEngineeringItem.aspx.designer.cs"},{"SourceFile":"DataShow\\License.aspx.cs"},{"SourceFile":"DataShow\\License.aspx.designer.cs"},{"SourceFile":"DataShow\\Meeting.aspx.cs"},{"SourceFile":"DataShow\\Meeting.aspx.designer.cs"},{"SourceFile":"DataShow\\Project.aspx.cs"},{"SourceFile":"DataShow\\Project.aspx.designer.cs"},{"SourceFile":"DataShow\\ProjectDivision.aspx.cs"},{"SourceFile":"DataShow\\ProjectDivision.aspx.designer.cs"},{"SourceFile":"DataShow\\ProjectPerson.aspx.cs"},{"SourceFile":"DataShow\\ProjectPerson.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityAcceptance.aspx.cs"},{"SourceFile":"DataShow\\QualityAcceptance.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityControlPoint.aspx.cs"},{"SourceFile":"DataShow\\QualityControlPoint.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityInstruments.aspx.cs"},{"SourceFile":"DataShow\\QualityInstruments.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityInstrumentsItem.aspx.cs"},{"SourceFile":"DataShow\\QualityInstrumentsItem.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityPerson.aspx.cs"},{"SourceFile":"DataShow\\QualityPerson.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityProblem.aspx.cs"},{"SourceFile":"DataShow\\QualityProblem.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityProblemItem.aspx.cs"},{"SourceFile":"DataShow\\QualityProblemItem.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityTraining.aspx.cs"},{"SourceFile":"DataShow\\QualityTraining.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityTrainingItem1.aspx.cs"},{"SourceFile":"DataShow\\QualityTrainingItem1.aspx.designer.cs"},{"SourceFile":"DataShow\\QualityTrainingItem2.aspx.cs"},{"SourceFile":"DataShow\\QualityTrainingItem2.aspx.designer.cs"},{"SourceFile":"DataShow\\SecurityCost.aspx.cs"},{"SourceFile":"DataShow\\SecurityCost.aspx.designer.cs"},{"SourceFile":"DataShow\\SecurityRisk.aspx.cs"},{"SourceFile":"DataShow\\SecurityRisk.aspx.designer.cs"},{"SourceFile":"DataShow\\SecurityRiskItem.aspx.cs"},{"SourceFile":"DataShow\\SecurityRiskItem.aspx.designer.cs"},{"SourceFile":"DataShow\\WorkingHours.aspx.cs"},{"SourceFile":"DataShow\\WorkingHours.aspx.designer.cs"},{"SourceFile":"DataShow\\WorkingHoursItem.aspx.cs"},{"SourceFile":"DataShow\\WorkingHoursItem.aspx.designer.cs"},{"SourceFile":"DigData\\HSEDataCollect.aspx.cs"},{"SourceFile":"DigData\\HSEDataCollect.aspx.designer.cs"},{"SourceFile":"DocManage\\DocManage.aspx.cs"},{"SourceFile":"DocManage\\DocManage.aspx.designer.cs"},{"SourceFile":"DocManage\\DocManageEdit.aspx.cs"},{"SourceFile":"DocManage\\DocManageEdit.aspx.designer.cs"},{"SourceFile":"DocManage\\DocManageView.aspx.cs"},{"SourceFile":"DocManage\\DocManageView.aspx.designer.cs"},{"SourceFile":"Door\\AbsenceDuty.aspx.cs"},{"SourceFile":"Door\\AbsenceDuty.aspx.designer.cs"},{"SourceFile":"Door\\InOutManHoursItem.aspx.cs"},{"SourceFile":"Door\\InOutManHoursItem.aspx.designer.cs"},{"SourceFile":"Door\\InOutRecordChart.aspx.cs"},{"SourceFile":"Door\\InOutRecordChart.aspx.designer.cs"},{"SourceFile":"Door\\InOutRecordItem.aspx.cs"},{"SourceFile":"Door\\InOutRecordItem.aspx.designer.cs"},{"SourceFile":"Door\\InOutManHours.aspx.cs"},{"SourceFile":"Door\\InOutManHours.aspx.designer.cs"},{"SourceFile":"Door\\InOutList.aspx.cs"},{"SourceFile":"Door\\InOutList.aspx.designer.cs"},{"SourceFile":"Door\\InOutRecord.aspx.cs"},{"SourceFile":"Door\\InOutRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Components.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Components.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsIn.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsIn.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ComponentsView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Consumables.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Consumables.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ConsumablesView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Control.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Control.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\ControlView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Defect.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Defect.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DefectView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Detection.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Detection.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\DetectionView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Groove.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Groove.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\GrooveView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Material.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Material.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MaterialView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Medium.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Medium.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumIn.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumIn.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\MediumView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClass.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClass.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassIn.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassIn.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PipingClassView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Pressure.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Pressure.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClass.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClass.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressurePipingClassView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PressureView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethod.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethod.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\PurgeMethodView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Testing.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Testing.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestingView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMedium.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMedium.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\TestMediumView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\Weld.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\Weld.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocation.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocation.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingLocationView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethod.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethod.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodEdit.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldingMethodView.aspx.designer.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldView.aspx.cs"},{"SourceFile":"HJGL\\BaseInfo\\WeldView.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\HJGLData.aspx.cs"},{"SourceFile":"HJGL\\FL\\HJGLData.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\HJGLDataEdit.aspx.cs"},{"SourceFile":"HJGL\\FL\\HJGLDataEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\NdtList.aspx.cs"},{"SourceFile":"HJGL\\FL\\NdtList.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\OneOKRate.aspx.cs"},{"SourceFile":"HJGL\\FL\\OneOKRate.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\PressurePackageList.aspx.cs"},{"SourceFile":"HJGL\\FL\\PressurePackageList.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\Quantity.aspx.cs"},{"SourceFile":"HJGL\\FL\\Quantity.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\TailItemList.aspx.cs"},{"SourceFile":"HJGL\\FL\\TailItemList.aspx.designer.cs"},{"SourceFile":"HJGL\\FL\\TotalQuantity.aspx.cs"},{"SourceFile":"HJGL\\FL\\TotalQuantity.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardFeedback.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardFeedback.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReport.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReport.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportItem.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardReportItem.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HardTrustItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessFeedback.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessFeedback.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReport.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReport.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportItem.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessReportItem.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProcessHard\\HotProessTrustItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumAudit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumComplete.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumComplete.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumEdit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumItemEdit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LeakVacuumItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheckEdit.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\LV_ItemEndCheckEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\LeakVacuum\\SelectPipeline.aspx.cs"},{"SourceFile":"HJGL\\LeakVacuum\\SelectPipeline.aspx.designer.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatch.aspx.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatchEdit.aspx.cs"},{"SourceFile":"HJGL\\NDT\\NDTBatchEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\NDT\\RepairNotice.aspx.cs"},{"SourceFile":"HJGL\\NDT\\RepairNotice.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItem.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItem.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItemEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManage.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManage.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageView.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\CheckerManageView.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\SeeQRImage.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\SeeQRImage.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItem.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItem.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItemEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManage.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManage.aspx.designer.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManageEdit.aspx.cs"},{"SourceFile":"HJGL\\PersonManage\\WelderManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\OpenResetPoint.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\OpenResetPoint.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\PointAudit.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\PointAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatch.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\PointBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\PointTrust\\TrustBatch.aspx.cs"},{"SourceFile":"HJGL\\PointTrust\\TrustBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheckEdit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PC_ItemEndCheckEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningAudit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningComplete.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningComplete.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningEdit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningItemEdit.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\PurgingCleaningItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\SelectPipeline.aspx.cs"},{"SourceFile":"HJGL\\PurgingCleaning\\SelectPipeline.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\RepairAndExpand.aspx.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\RepairAndExpand.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\SeeFilm.aspx.cs"},{"SourceFile":"HJGL\\RepairAndExpand\\SeeFilm.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\BItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\BItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheck.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheck.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit2.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckEdit2.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckView.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\ItemEndCheckView.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\SelectPipeline.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\SelectPipeline.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageAudit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageComplete.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageComplete.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageCompleteEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageCompleteEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackage\\TestPackageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\GetWdldingDailyItem.ashx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineList.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineList.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineListIn.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineListIn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportAudit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectDailyWeldJoint.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectDailyWeldJoint.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectTaskWeldJoint.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectTaskWeldJoint.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWPS.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWPS.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointBatchEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointBatchEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointList.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldJointList.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldTask.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldTask.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\DefectStatistics.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\DefectStatistics.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\FirstPassRate.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\FirstPassRate.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTMonthlyReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTMonthlyReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTWeeklyReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\NDTWeeklyReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderAvgPerformance.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderAvgPerformance.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQEdit.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQIn.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQIn.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQList.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQList.aspx.designer.cs"},{"SourceFile":"HJGL\\WPQ\\WPQView.aspx.cs"},{"SourceFile":"HJGL\\WPQ\\WPQView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandle.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandle.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentHandleView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecord.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentPersonRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReport.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReport.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOther.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOther.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportOtherView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportView.aspx.cs"},{"SourceFile":"HSSE\\Accident\\AccidentReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\Accident\\NoFourLetoffEdit.aspx.cs"},{"SourceFile":"HSSE\\Accident\\NoFourLetoffEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanList.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanList.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanListView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummary.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummary.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ActionPlanSummaryView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\CompanyManageRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditCompanyManageRuleTemplate.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditCompanyManageRuleTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditManagerRuleTemplate.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\EditManagerRuleTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleList.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleList.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ManagerRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\ProjectManageRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRule.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleView.aspx.cs"},{"SourceFile":"HSSE\\ActionPlan\\SubManageRuleView.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\CarManager.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\CarManager.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerEdit.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerView.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\CarManagerView.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManager.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManager.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerEdit.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerView.aspx.cs"},{"SourceFile":"HSSE\\Administrative\\DriverManagerView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligation.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligation.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckColligationView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayDetailWHEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayDetailWHEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWH.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWH.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHPrint.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckDayWHView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHoliday.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHoliday.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailIn.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayDetailIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayPrint.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckHolidayView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecial.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecial.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckSpecialView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWork.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWork.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailIn.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkDetailIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkPrint.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkView.aspx.cs"},{"SourceFile":"HSSE\\Check\\CheckWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ContactList.aspx.cs"},{"SourceFile":"HSSE\\Check\\ContactList.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ContactListEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\ContactListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ContactListView.aspx.cs"},{"SourceFile":"HSSE\\Check\\ContactListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\HSECertificate.aspx.cs"},{"SourceFile":"HSSE\\Check\\HSECertificate.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateView.aspx.cs"},{"SourceFile":"HSSE\\Check\\HSECertificateView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeStatistics.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\IncentiveNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\OfficeCheck.aspx.cs"},{"SourceFile":"HSSE\\Check\\OfficeCheck.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\PauseNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheck.aspx.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheck.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckView.aspx.cs"},{"SourceFile":"HSSE\\Check\\ProjectLeaderCheckView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeStatistics.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\PunishNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNotices.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNotices.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRecheck.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRecheck.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRectify.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesRectify.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAudit.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAudit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAdd.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesStatistics.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesView.aspx.cs"},{"SourceFile":"HSSE\\Check\\RectifyNoticesView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ShowCheckItem.aspx.cs"},{"SourceFile":"HSSE\\Check\\ShowCheckItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ShowCompletedDate.aspx.cs"},{"SourceFile":"HSSE\\Check\\ShowCompletedDate.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNotice.aspx.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNotice.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeView.aspx.cs"},{"SourceFile":"HSSE\\Check\\SupervisionNoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ViolationPerson.aspx.cs"},{"SourceFile":"HSSE\\Check\\ViolationPerson.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonEdit.aspx.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonView.aspx.cs"},{"SourceFile":"HSSE\\Check\\ViolationPersonView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostLedger.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostLedger.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManage.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManage.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageItemEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostManageView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetail.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetail.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\CostSmallDetailView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\Expense.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\Expense.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\ExpenseView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManage.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManage.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\GoodsManageView.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlan.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlan.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlanEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\MeasuresPlanEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistration.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistration.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistrationEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\PayRegistrationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistration.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistration.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistrationEdit.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\SubPayRegistrationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\CostGoods\\TotalPayRegistrationView.aspx.cs"},{"SourceFile":"HSSE\\CostGoods\\TotalPayRegistrationView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCase.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCase.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseItemSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\AccidentCaseSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTraining.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTraining.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\CompanyTrainingSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\Plan.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\Plan.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\PlanView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\PlanView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\ShowPerson.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\ShowPerson.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\Task.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\Task.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskRecordView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TaskView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlan.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlan.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlanView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestPlanView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecord.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordItem.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordItem.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordPrint.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordPrint.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestStatistics.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTraining.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTraining.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemIn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemIn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingOut.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingOut.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainingSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainRecord.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TestTrainRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainDB.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainDB.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainFind.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainFind.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingItemSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingItemSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingSave.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainingSave.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecord.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordIn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordIn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTest.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTest.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDB.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDB.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBEdit.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestDBSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestItemEdit.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestView.aspx.cs"},{"SourceFile":"HSSE\\EduTrain\\TrainTestView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordList.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordList.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\DrillRecordListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyList.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyList.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcess.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcess.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcessEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyProcessEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupply.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupply.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencySupplyView.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrain.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrain.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainEdit.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainView.aspx.cs"},{"SourceFile":"HSSE\\Emergency\\EmergencyTeamAndTrainView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReport.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReport.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EIAReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlan.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlan.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalEmergencyPlanView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoring.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoring.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\EnvironmentalMonitoringView.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmental.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmental.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalEdit.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalView.aspx.cs"},{"SourceFile":"HSSE\\Environmental\\UnexpectedEnvironmentalView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileList.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileList.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\FinalFileListView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileList.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileList.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\HSEFinalFileListView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentList.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentList.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OtherDocumentListView.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFile.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFile.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileEdit.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileView.aspx.cs"},{"SourceFile":"HSSE\\FinalFileManage\\OwnerFinalFileView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskList.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\EnvironmentalRiskListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfo.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfo.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfoEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardInfoEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardPrompt.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardPrompt.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardReEvaluator.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardReEvaluator.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\HazardTemplate.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\HazardTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\MajorHazardList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\MajorHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazard.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazard.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\OtherHazardView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectify.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectify.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectifyEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ProjectSuperviseCheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\Response.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\Response.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ResponseItem.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ResponseItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RiskControl.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RiskControl.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspection.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspection.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionEdit.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionView.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\RoutingInspectionView.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\SetToolTipTime.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\SetToolTipTime.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ShowEnvironmentalItem.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ShowEnvironmentalItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Hazard\\ShowHazardList.aspx.cs"},{"SourceFile":"HSSE\\Hazard\\ShowHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationAdd.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationAdd.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationConfirm.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationConfirm.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationList.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationList.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationRectify.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationRectify.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationView.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\HiddenRectificationView.aspx.designer.cs"},{"SourceFile":"HSSE\\HiddenInspection\\RiskAnalysisChart.aspx.cs"},{"SourceFile":"HSSE\\HiddenInspection\\RiskAnalysisChart.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDuty.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDuty.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDutyEdit.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\HSSEMainDutyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitution.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitution.aspx.designer.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitutionEdit.aspx.cs"},{"SourceFile":"HSSE\\HSSESystem\\SafetyInstitutionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentIn.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentIn.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentInView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOut.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOut.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentOutView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityIn.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityIn.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\EquipmentQualityInView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentIn.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentIn.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentInView.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOut.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOut.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutView.aspx.cs"},{"SourceFile":"HSSE\\InApproveManager\\GeneralEquipmentOutView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationAnalysis\\CheckAnalysis.aspx.cs"},{"SourceFile":"HSSE\\InformationAnalysis\\CheckAnalysis.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\AccidentCauseReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentify.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentify.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ConstructionStandardIdentifyView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\CreateLawRegulationIdentify.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\CreateLawRegulationIdentify.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillConductedQuarterlyReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\DrillPlanHalfYearReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\EPSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetA.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetA.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetAItemView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetB.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\FileCabinetB.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentify.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentify.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\LawRegulationIdentifyView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\MillionsMonthlyReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\Notice.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\Notice.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\NoticeView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolder.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolder.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\ProjectFolderItemView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivities.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivities.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\PromotionalActivitiesView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportView.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\SafetyQuarterlyReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReport.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReport.aspx.designer.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReportEdit.aspx.cs"},{"SourceFile":"HSSE\\InformationProject\\WorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardList.aspx.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSave.aspx.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSave.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\HSSEStandardListSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationList.aspx.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationList.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListEdit.aspx.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\LawRegulationListSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\ManageRule.aspx.cs"},{"SourceFile":"HSSE\\Law\\ManageRule.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleEdit.aspx.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\ManageRuleSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulations.aspx.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulations.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsEdit.aspx.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Law\\RulesRegulationsSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\BreakGround.aspx.cs"},{"SourceFile":"HSSE\\License\\BreakGround.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\BreakGroundView.aspx.cs"},{"SourceFile":"HSSE\\License\\BreakGroundView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\Electricity.aspx.cs"},{"SourceFile":"HSSE\\License\\Electricity.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\ElectricityView.aspx.cs"},{"SourceFile":"HSSE\\License\\ElectricityView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyList.aspx.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyList.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListView.aspx.cs"},{"SourceFile":"HSSE\\License\\EquipmentSafetyListView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\FireWork.aspx.cs"},{"SourceFile":"HSSE\\License\\FireWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\FireWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\FireWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HeightWork.aspx.cs"},{"SourceFile":"HSSE\\License\\HeightWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HeightWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\HeightWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HSETechnical.aspx.cs"},{"SourceFile":"HSSE\\License\\HSETechnical.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalView.aspx.cs"},{"SourceFile":"HSSE\\License\\HSETechnicalView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LicenseManager.aspx.cs"},{"SourceFile":"HSSE\\License\\LicenseManager.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerView.aspx.cs"},{"SourceFile":"HSSE\\License\\LicenseManagerView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LiftingWork.aspx.cs"},{"SourceFile":"HSSE\\License\\LiftingWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LiftingWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\LiftingWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LimitedSpace.aspx.cs"},{"SourceFile":"HSSE\\License\\LimitedSpace.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\LimitedSpaceView.aspx.cs"},{"SourceFile":"HSSE\\License\\LimitedSpaceView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\NightWork.aspx.cs"},{"SourceFile":"HSSE\\License\\NightWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\NightWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\NightWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\OpenCircuit.aspx.cs"},{"SourceFile":"HSSE\\License\\OpenCircuit.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\OpenCircuitView.aspx.cs"},{"SourceFile":"HSSE\\License\\OpenCircuitView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\RadialWork.aspx.cs"},{"SourceFile":"HSSE\\License\\RadialWork.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\RadialWorkView.aspx.cs"},{"SourceFile":"HSSE\\License\\RadialWorkView.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\SecurityLicense.aspx.cs"},{"SourceFile":"HSSE\\License\\SecurityLicense.aspx.designer.cs"},{"SourceFile":"HSSE\\License\\SecurityLicenseEdit.aspx.cs"},{"SourceFile":"HSSE\\License\\SecurityLicenseEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReport.aspx.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReport.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\CompletionReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiary.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiary.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiaryView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSEDiaryView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSELogStatistics.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSELogStatistics.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELog.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELog.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonth.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonth.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogMonthView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\HSSELogView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonthC.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDin.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDin.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDinEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerMonth_SeDinEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeek.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeek.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\ManagerWeekView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit1.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit1.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit10.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit10.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit2.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit2.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit3.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit3.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit4.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit4.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit6.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit6.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit5.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit5.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit7.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit7.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit8.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit8.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit9.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCEdit9.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCOut.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCOut.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView1.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView1.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView10.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView10.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView2.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView2.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView3.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView3.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView4.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView4.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView5.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView5.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView6.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView6.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView7.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView7.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView8.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView8.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView9.aspx.cs"},{"SourceFile":"HSSE\\Manager\\MonthReportCView9.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonth.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonth.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerMonthView.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeek.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeek.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekEdit.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekView.aspx.cs"},{"SourceFile":"HSSE\\Manager\\SubManagerWeekView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\AttendMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\ClassMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\MonthMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SafetyLeaderGroupMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\SpecialMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeeting.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeeting.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingEdit.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingView.aspx.cs"},{"SourceFile":"HSSE\\Meeting\\WeekMeetingView.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetection.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetection.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionEdit.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionView.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\HazardDetectionView.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccident.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccident.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExamination.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExamination.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationEdit.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationView.aspx.cs"},{"SourceFile":"HSSE\\OccupationHealth\\PhysicalExaminationView.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecord.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordView.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PerfomanceRecordView.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomance.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomance.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceEdit.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceView.aspx.cs"},{"SourceFile":"HSSE\\Perfomance\\PersonPerfomanceView.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentPersonQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAudit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAudit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditView.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityAuditView.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\EquipmentQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\GeneralEquipmentQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnitEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\InUnitEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\PersonQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecord.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecord.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecordEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\ProjectRecordEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SafePersonQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQuality.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQuality.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAudit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAudit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditView.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityAuditView.aspx.designer.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityEdit.aspx.cs"},{"SourceFile":"HSSE\\QualityAudit\\SubUnitQualityEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Resources\\SignManage.aspx.cs"},{"SourceFile":"HSSE\\Resources\\SignManage.aspx.designer.cs"},{"SourceFile":"HSSE\\Resources\\SignManageEdit.aspx.cs"},{"SourceFile":"HSSE\\Resources\\SignManageEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganization.aspx.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganization.aspx.designer.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganizationEdit.aspx.cs"},{"SourceFile":"HSSE\\SecuritySystem\\SafetyOrganizationEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReport.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReport.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailView.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportImport.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportImport.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\DayReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReport.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReport.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\MonthReportView.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonAutoDetail.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonAutoDetail.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfo.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfo.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoIn.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonInfoIn.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonList.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonList.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonListEdit.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonOut.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonOut.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonBaseData.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonBaseData.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\WorkPostStatistic.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\WorkPostStatistic.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonStatistic.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonStatistic.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonUnitRefresh.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\PersonUnitRefresh.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\ReadWriteCard.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\ReadWriteCard.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCard.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCard.aspx.designer.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCardView.aspx.cs"},{"SourceFile":"HSSE\\SitePerson\\SendCardView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolution.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolution.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ConstructSolutionView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentList.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentList.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEditItem.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListEditItem.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ExpertArgumentListView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardList.aspx.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\LargerHazardView.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\ShowIndexToLaw.aspx.cs"},{"SourceFile":"HSSE\\Solution\\ShowIndexToLaw.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplate.aspx.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplate.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateEdit.aspx.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateView.aspx.cs"},{"SourceFile":"HSSE\\Solution\\SolutionTemplateView.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemDetailEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemDetailEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemSet.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CheckItemSet.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CompanyEnvironmental.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CompanyEnvironmental.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\CompanyHazardList.aspx.cs"},{"SourceFile":"HSSE\\Technique\\CompanyHazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\Emergency.aspx.cs"},{"SourceFile":"HSSE\\Technique\\Emergency.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EmergencyEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EmergencyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EmergencySelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EmergencySelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\Environmental.aspx.cs"},{"SourceFile":"HSSE\\Technique\\Environmental.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalIn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\EnvironmentalSelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardList.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardList.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListIn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListIn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListOut.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListOut.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\HazardListTypeEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\HazardListTypeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\Rectify.aspx.cs"},{"SourceFile":"HSSE\\Technique\\Rectify.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\RectifyEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\RectifyEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\RectifyItemEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\RectifyItemEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\RectifySelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\RectifySelectCloumn.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\SpecialScheme.aspx.cs"},{"SourceFile":"HSSE\\Technique\\SpecialScheme.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeEdit.aspx.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeEdit.aspx.designer.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeSelectCloumn.aspx.cs"},{"SourceFile":"HSSE\\Technique\\SpecialSchemeSelectCloumn.aspx.designer.cs"},{"SourceFile":"indexProject.aspx.cs"},{"SourceFile":"indexProject.aspx.designer.cs"},{"SourceFile":"index.aspx.cs"},{"SourceFile":"index.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\ElectricalCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\EquipmentCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\LowTankCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\MeterCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\PipelineCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionView.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressCompletionView.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressShow.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressShow.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\ProgressStatistics.aspx.cs"},{"SourceFile":"JDGL\\Check\\ProgressStatistics.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityList.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityList.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityListEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityListEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\QuantityListView.aspx.cs"},{"SourceFile":"JDGL\\Check\\QuantityListView.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\SteelStructureCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\TotalCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\TotalCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletion.aspx.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletion.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionEdit.aspx.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionIn.aspx.cs"},{"SourceFile":"JDGL\\Check\\UndergroundPipeCompletionIn.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\EarnedValueCurve.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\EarnedValueCurve.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\JDReport.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\JDReport.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\PlanAdjust.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\PlanAdjust.aspx.designer.cs"},{"SourceFile":"JDGL\\CostAnalysis\\RectificationMeasureSet.aspx.cs"},{"SourceFile":"JDGL\\CostAnalysis\\RectificationMeasureSet.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSCompleteAudit.aspx.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSCompleteAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSReport.aspx.cs"},{"SourceFile":"JDGL\\WBSCompleteAndReal\\WBSReport.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSPlan\\SeeDetailHistory.aspx.cs"},{"SourceFile":"JDGL\\WBSPlan\\SeeDetailHistory.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanAudit.aspx.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanSet.aspx.cs"},{"SourceFile":"JDGL\\WBSPlan\\WBSPlanSet.aspx.designer.cs"},{"SourceFile":"JDGL\\WBSWeights\\WeightsAudit.aspx.cs"},{"SourceFile":"JDGL\\WBSWeights\\WeightsAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailHistoryShow.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlDetailHistoryShow.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlInitEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlInitEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailHistoryShow.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekDetailHistoryShow.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekItemDetailEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\CostControlWeekItemDetailEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigType.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigType.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeView.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialBigTypeView.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialType.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialType.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeView.aspx.cs"},{"SourceFile":"JDGL\\WBS\\EquipmentMaterialTypeView.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\MilePost.aspx.cs"},{"SourceFile":"JDGL\\WBS\\MilePost.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\MilePostEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\MilePostEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSIn.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSIn.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSOut.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSOut.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSet.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSet.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAudit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAudit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAuditEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetAuditEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy2.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetCopy2.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WBSSetEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInput.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInput.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEdit.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEdit.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEditAll.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputEditAll.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputIn.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadInputIn.aspx.designer.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadStatistics.aspx.cs"},{"SourceFile":"JDGL\\WBS\\WorkloadStatistics.aspx.designer.cs"},{"SourceFile":"Login.aspx.cs"},{"SourceFile":"Login.aspx.designer.cs"},{"SourceFile":"Notice\\IssuedNotice.aspx.cs"},{"SourceFile":"Notice\\IssuedNotice.aspx.designer.cs"},{"SourceFile":"Notice\\NoIssuedNotice.aspx.cs"},{"SourceFile":"Notice\\NoIssuedNotice.aspx.designer.cs"},{"SourceFile":"Notice\\NoticeEdit.aspx.cs"},{"SourceFile":"Notice\\NoticeEdit.aspx.designer.cs"},{"SourceFile":"Notice\\NoticeView.aspx.cs"},{"SourceFile":"Notice\\NoticeView.aspx.designer.cs"},{"SourceFile":"Notice\\NoticeView2.aspx.cs"},{"SourceFile":"Notice\\NoticeView2.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckContentEdit1.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckContentEdit1.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckInfo.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckInfo.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNotice.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNotice.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNoticeEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckNoticeEdit.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckReport.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckReport.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTeamEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\CheckTeamEdit.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\Check\\RectifyEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\Check\\RectifyEdit.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluation.aspx.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluation.aspx.designer.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluationEdit.aspx.cs"},{"SourceFile":"OfficeCheck\\ProjectEvaluation\\ProjectEvaluationEdit.aspx.designer.cs"},{"SourceFile":"Opinion\\OpinionCollection.aspx.cs"},{"SourceFile":"Opinion\\OpinionCollection.aspx.designer.cs"},{"SourceFile":"Opinion\\OpinionCollectionEdit.aspx.cs"},{"SourceFile":"Opinion\\OpinionCollectionEdit.aspx.designer.cs"},{"SourceFile":"Party\\BasicInformation.aspx.cs"},{"SourceFile":"Party\\BasicInformation.aspx.designer.cs"},{"SourceFile":"Party\\CommentPartyer.aspx.cs"},{"SourceFile":"Party\\CommentPartyer.aspx.designer.cs"},{"SourceFile":"Party\\CommentPartyerEdit.aspx.cs"},{"SourceFile":"Party\\CommentPartyerEdit.aspx.designer.cs"},{"SourceFile":"Party\\DoingThingsForMasses.aspx.cs"},{"SourceFile":"Party\\DoingThingsForMasses.aspx.designer.cs"},{"SourceFile":"Party\\DoingThingsForMassesEdit.aspx.cs"},{"SourceFile":"Party\\DoingThingsForMassesEdit.aspx.designer.cs"},{"SourceFile":"Party\\EmployeeConversationRecord.aspx.cs"},{"SourceFile":"Party\\EmployeeConversationRecord.aspx.designer.cs"},{"SourceFile":"Party\\EmployeeConversationRecordEdit.aspx.cs"},{"SourceFile":"Party\\EmployeeConversationRecordEdit.aspx.designer.cs"},{"SourceFile":"Party\\FocusLearn.aspx.cs"},{"SourceFile":"Party\\FocusLearn.aspx.designer.cs"},{"SourceFile":"Party\\FocusLearnEdit.aspx.cs"},{"SourceFile":"Party\\FocusLearnEdit.aspx.designer.cs"},{"SourceFile":"Party\\LastWorkSummary.aspx.cs"},{"SourceFile":"Party\\LastWorkSummary.aspx.designer.cs"},{"SourceFile":"Party\\LastWorkSummaryEdit.aspx.cs"},{"SourceFile":"Party\\LastWorkSummaryEdit.aspx.designer.cs"},{"SourceFile":"Party\\NewsPropagandaWork.aspx.cs"},{"SourceFile":"Party\\NewsPropagandaWork.aspx.designer.cs"},{"SourceFile":"Party\\NewsPropagandaWorkEdit.aspx.cs"},{"SourceFile":"Party\\NewsPropagandaWorkEdit.aspx.designer.cs"},{"SourceFile":"Party\\OrganizingLife.aspx.cs"},{"SourceFile":"Party\\OrganizingLife.aspx.designer.cs"},{"SourceFile":"Party\\OrganizingLifeEdit.aspx.cs"},{"SourceFile":"Party\\OrganizingLifeEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyCommittee.aspx.cs"},{"SourceFile":"Party\\PartyCommittee.aspx.designer.cs"},{"SourceFile":"Party\\PartyCommitteeEdit.aspx.cs"},{"SourceFile":"Party\\PartyCommitteeEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyCongress.aspx.cs"},{"SourceFile":"Party\\PartyCongress.aspx.designer.cs"},{"SourceFile":"Party\\PartyCongressEdit.aspx.cs"},{"SourceFile":"Party\\PartyCongressEdit.aspx.designer.cs"},{"SourceFile":"Party\\Partyer.aspx.cs"},{"SourceFile":"Party\\Partyer.aspx.designer.cs"},{"SourceFile":"Party\\PartyerEdit.aspx.cs"},{"SourceFile":"Party\\PartyerEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyHistoryStudy.aspx.cs"},{"SourceFile":"Party\\PartyHistoryStudy.aspx.designer.cs"},{"SourceFile":"Party\\PartyHistoryStudyEdit.aspx.cs"},{"SourceFile":"Party\\PartyHistoryStudyEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyLecture.aspx.cs"},{"SourceFile":"Party\\PartyLecture.aspx.designer.cs"},{"SourceFile":"Party\\PartyLectureEdit.aspx.cs"},{"SourceFile":"Party\\PartyLectureEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyMeeting.aspx.cs"},{"SourceFile":"Party\\PartyMeeting.aspx.designer.cs"},{"SourceFile":"Party\\PartyMeetingEdit.aspx.cs"},{"SourceFile":"Party\\PartyMeetingEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyMoneyUse.aspx.cs"},{"SourceFile":"Party\\PartyMoneyUse.aspx.designer.cs"},{"SourceFile":"Party\\PartyMoneyUseEdit.aspx.cs"},{"SourceFile":"Party\\PartyMoneyUseEdit.aspx.designer.cs"},{"SourceFile":"Party\\PartyPioneerDemonstration.aspx.cs"},{"SourceFile":"Party\\PartyPioneerDemonstration.aspx.designer.cs"},{"SourceFile":"Party\\PartyPioneerDemonstrationEdit.aspx.cs"},{"SourceFile":"Party\\PartyPioneerDemonstrationEdit.aspx.designer.cs"},{"SourceFile":"Party\\ThemePartyDay.aspx.cs"},{"SourceFile":"Party\\ThemePartyDay.aspx.designer.cs"},{"SourceFile":"Party\\ThemePartyDayEdit.aspx.cs"},{"SourceFile":"Party\\ThemePartyDayEdit.aspx.designer.cs"},{"SourceFile":"Party\\TwoOneGoodSelection.aspx.cs"},{"SourceFile":"Party\\TwoOneGoodSelection.aspx.designer.cs"},{"SourceFile":"Party\\TwoOneGoodSelectionEdit.aspx.cs"},{"SourceFile":"Party\\TwoOneGoodSelectionEdit.aspx.designer.cs"},{"SourceFile":"Party\\WorkPlan.aspx.cs"},{"SourceFile":"Party\\WorkPlan.aspx.designer.cs"},{"SourceFile":"Party\\WorkPlanEdit.aspx.cs"},{"SourceFile":"Party\\WorkPlanEdit.aspx.designer.cs"},{"SourceFile":"Personal\\PersonMeeting.aspx.cs"},{"SourceFile":"Personal\\PersonMeeting.aspx.designer.cs"},{"SourceFile":"Personal\\PersonMeetingEdit.aspx.cs"},{"SourceFile":"Personal\\PersonMeetingEdit.aspx.designer.cs"},{"SourceFile":"Personal\\FileSearch.aspx.cs"},{"SourceFile":"Personal\\FileSearch.aspx.designer.cs"},{"SourceFile":"Personal\\PersonCheckInfo.aspx.cs"},{"SourceFile":"Personal\\PersonCheckInfo.aspx.designer.cs"},{"SourceFile":"Personal\\PersonDuty.aspx.cs"},{"SourceFile":"Personal\\PersonDuty.aspx.designer.cs"},{"SourceFile":"Person\\PersonCheck.aspx.cs"},{"SourceFile":"Person\\PersonCheck.aspx.designer.cs"},{"SourceFile":"Person\\PersonChecking.aspx.cs"},{"SourceFile":"Person\\PersonChecking.aspx.designer.cs"},{"SourceFile":"Person\\PersonCheckingView.aspx.cs"},{"SourceFile":"Person\\PersonCheckingView.aspx.designer.cs"},{"SourceFile":"Person\\PersonDuty.aspx.cs"},{"SourceFile":"Person\\PersonDuty.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyAdd.aspx.cs"},{"SourceFile":"Person\\PersonDutyAdd.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyEdit.aspx.cs"},{"SourceFile":"Person\\PersonDutyEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyTemplate.aspx.cs"},{"SourceFile":"Person\\PersonDutyTemplate.aspx.designer.cs"},{"SourceFile":"Person\\PersonDutyView.aspx.cs"},{"SourceFile":"Person\\PersonDutyView.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlan.aspx.cs"},{"SourceFile":"Person\\PersonPlan.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlanChart.aspx.cs"},{"SourceFile":"Person\\PersonPlanChart.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlanEdit.aspx.cs"},{"SourceFile":"Person\\PersonPlanEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonPlanIn.aspx.cs"},{"SourceFile":"Person\\PersonPlanIn.aspx.designer.cs"},{"SourceFile":"Person\\PersonSet.aspx.cs"},{"SourceFile":"Person\\PersonSet.aspx.designer.cs"},{"SourceFile":"Person\\PersonSetEdit.aspx.cs"},{"SourceFile":"Person\\PersonSetEdit.aspx.designer.cs"},{"SourceFile":"Personal\\PersonTotal.aspx.cs"},{"SourceFile":"Personal\\PersonTotal.aspx.designer.cs"},{"SourceFile":"Personal\\PersonTotalEdit.aspx.cs"},{"SourceFile":"Personal\\PersonTotalEdit.aspx.designer.cs"},{"SourceFile":"Personal\\PersonTotalView.aspx.cs"},{"SourceFile":"Personal\\PersonTotalView.aspx.designer.cs"},{"SourceFile":"Person\\PersonTotal.aspx.cs"},{"SourceFile":"Person\\PersonTotal.aspx.designer.cs"},{"SourceFile":"Person\\PersonTotalEdit.aspx.cs"},{"SourceFile":"Person\\PersonTotalEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonTotalView.aspx.cs"},{"SourceFile":"Person\\PersonTotalView.aspx.designer.cs"},{"SourceFile":"Person\\PersonTraining.aspx.cs"},{"SourceFile":"Person\\PersonTraining.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingAdd.aspx.cs"},{"SourceFile":"Person\\PersonTrainingAdd.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingEdit.aspx.cs"},{"SourceFile":"Person\\PersonTrainingEdit.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingTaskItem.aspx.cs"},{"SourceFile":"Person\\PersonTrainingTaskItem.aspx.designer.cs"},{"SourceFile":"Person\\PersonTrainingView.aspx.cs"},{"SourceFile":"Person\\PersonTrainingView.aspx.designer.cs"},{"SourceFile":"Person\\Shunt.aspx.cs"},{"SourceFile":"Person\\Shunt.aspx.designer.cs"},{"SourceFile":"Person\\ShuntDetailEdit.aspx.cs"},{"SourceFile":"Person\\ShuntDetailEdit.aspx.designer.cs"},{"SourceFile":"Person\\ShuntEdit.aspx.cs"},{"SourceFile":"Person\\ShuntEdit.aspx.designer.cs"},{"SourceFile":"Person\\ShuntList.aspx.cs"},{"SourceFile":"Person\\ShuntList.aspx.designer.cs"},{"SourceFile":"Person\\ShuntView.aspx.cs"},{"SourceFile":"Person\\ShuntView.aspx.designer.cs"},{"SourceFile":"Person\\PersonIn.aspx.cs"},{"SourceFile":"Person\\PersonIn.aspx.designer.cs"},{"SourceFile":"ProjectData\\Installation.aspx.cs"},{"SourceFile":"ProjectData\\Installation.aspx.designer.cs"},{"SourceFile":"ProjectData\\InstallationSave.aspx.cs"},{"SourceFile":"ProjectData\\InstallationSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\MainItem.aspx.cs"},{"SourceFile":"ProjectData\\MainItem.aspx.designer.cs"},{"SourceFile":"ProjectData\\MainItemEdit.aspx.cs"},{"SourceFile":"ProjectData\\MainItemEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\MainItemView.aspx.cs"},{"SourceFile":"ProjectData\\MainItemView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectInformation.aspx.cs"},{"SourceFile":"ProjectData\\ProjectInformation.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectList.aspx.cs"},{"SourceFile":"ProjectData\\ProjectList.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectMonitorList.aspx.cs"},{"SourceFile":"ProjectData\\ProjectMonitorList.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSet.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSet.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSetMap.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSetMap.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSetSave.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSetSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSetView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSetView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectShutdown.aspx.cs"},{"SourceFile":"ProjectData\\ProjectShutdown.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectShutdownEdit.aspx.cs"},{"SourceFile":"ProjectData\\ProjectShutdownEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectShutdownView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectShutdownView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectSysSet.aspx.cs"},{"SourceFile":"ProjectData\\ProjectSysSet.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnit.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnit.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnitSave.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnitSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnitSelect.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnitSelect.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUnitView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUnitView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUser.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUser.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUserSave.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUserSave.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUserSelect.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUserSelect.aspx.designer.cs"},{"SourceFile":"ProjectData\\ProjectUserView.aspx.cs"},{"SourceFile":"ProjectData\\ProjectUserView.aspx.designer.cs"},{"SourceFile":"ProjectData\\ShowMainItem.aspx.cs"},{"SourceFile":"ProjectData\\ShowMainItem.aspx.designer.cs"},{"SourceFile":"ProjectData\\TeamGroup.aspx.cs"},{"SourceFile":"ProjectData\\TeamGroup.aspx.designer.cs"},{"SourceFile":"ProjectData\\TeamGroupEdit.aspx.cs"},{"SourceFile":"ProjectData\\TeamGroupEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\TeamGroupView.aspx.cs"},{"SourceFile":"ProjectData\\TeamGroupView.aspx.designer.cs"},{"SourceFile":"ProjectData\\UnitWork.aspx.cs"},{"SourceFile":"ProjectData\\UnitWork.aspx.designer.cs"},{"SourceFile":"ProjectData\\UnitWorkEdit.aspx.cs"},{"SourceFile":"ProjectData\\UnitWorkEdit.aspx.designer.cs"},{"SourceFile":"ProjectData\\UnitWorkView.aspx.cs"},{"SourceFile":"ProjectData\\UnitWorkView.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXFind.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXFind.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXInfoCount.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXInfoCount.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXList.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXList.aspx.designer.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXListEdit.aspx.cs"},{"SourceFile":"PZHGL\\GJSX\\GJSXListEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLog.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLog.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionLogView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlan.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlan.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionPlanView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReport.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReport.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ConstructionReportView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\Picture.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\Picture.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\PictureView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManager.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManager.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\ReceiveFileManagerView.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandover.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandover.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverEdit.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverView.aspx.cs"},{"SourceFile":"PZHGL\\InformationProject\\WorkHandoverView.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMap.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMap.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapEdit.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapEdit.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapView.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectMapView.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageData.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageData.aspx.designer.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageDataSave.aspx.cs"},{"SourceFile":"PZHGL\\ProjectData\\ProjectPageDataSave.aspx.designer.cs"},{"SourceFile":"ReportPrint\\PrintDesigner.aspx.cs"},{"SourceFile":"ReportPrint\\PrintDesigner.aspx.designer.cs"},{"SourceFile":"Personal\\RunLog.aspx.cs"},{"SourceFile":"Personal\\RunLog.aspx.designer.cs"},{"SourceFile":"Personal\\PersonalSet.aspx.cs"},{"SourceFile":"Personal\\PersonalSet.aspx.designer.cs"},{"SourceFile":"Personal\\PersonalInfo.aspx.cs"},{"SourceFile":"Personal\\PersonalInfo.aspx.designer.cs"},{"SourceFile":"Captcha\\captcha.ashx.cs"},{"SourceFile":"Captcha\\CaptchaImage.cs"},{"SourceFile":"common\\loading.aspx.cs"},{"SourceFile":"common\\loading.aspx.designer.cs"},{"SourceFile":"common\\ShowUpFile.aspx.cs"},{"SourceFile":"common\\ShowUpFile.aspx.designer.cs"},{"SourceFile":"common\\main0.aspx.cs"},{"SourceFile":"common\\main0.aspx.designer.cs"},{"SourceFile":"common\\source.aspx.cs"},{"SourceFile":"common\\source.aspx.designer.cs"},{"SourceFile":"common\\source_file.aspx.cs"},{"SourceFile":"common\\source_file.aspx.designer.cs"},{"SourceFile":"config\\ajax.aspx.cs"},{"SourceFile":"config\\ajax.aspx.designer.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.designer.cs"},{"SourceFile":"config\\icons.aspx.cs"},{"SourceFile":"config\\icons.aspx.designer.cs"},{"SourceFile":"config\\icons_font.aspx.cs"},{"SourceFile":"config\\icons_font.aspx.designer.cs"},{"SourceFile":"config\\install_toolbox.aspx.cs"},{"SourceFile":"config\\install_toolbox.aspx.designer.cs"},{"SourceFile":"config\\modify_webconfig.aspx.cs"},{"SourceFile":"config\\modify_webconfig.aspx.designer.cs"},{"SourceFile":"Controls\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.designer.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.designer.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"LogOff.aspx.cs"},{"SourceFile":"LogOff.aspx.designer.cs"},{"SourceFile":"common\\PageBase.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"ReportPrint\\CalculateChinaEx.aspx.cs"},{"SourceFile":"ReportPrint\\CalculateChinaEx.aspx.designer.cs"},{"SourceFile":"ReportPrint\\ExPrintSet.aspx.cs"},{"SourceFile":"ReportPrint\\ExPrintSet.aspx.designer.cs"},{"SourceFile":"ReportPrint\\ExReportPrint.aspx.cs"},{"SourceFile":"ReportPrint\\ExReportPrint.aspx.designer.cs"},{"SourceFile":"ReportPrint\\PrintDesigner2.aspx.cs"},{"SourceFile":"ReportPrint\\PrintDesigner2.aspx.designer.cs"},{"SourceFile":"ReportPrint\\ReadExReportFile.aspx.cs"},{"SourceFile":"ReportPrint\\ReadExReportFile.aspx.designer.cs"},{"SourceFile":"ReportPrint\\SaveTabFile.aspx.cs"},{"SourceFile":"ReportPrint\\SaveTabFile.aspx.designer.cs"},{"SourceFile":"res\\umeditor\\net\\imageUp.ashx.cs"},{"SourceFile":"res\\umeditor\\net\\Uploader.cs"},{"SourceFile":"ServiceProxy.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefing.aspx.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefing.aspx.designer.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefingEdit.aspx.cs"},{"SourceFile":"SHIYE\\InformationProject\\SafetyBriefingEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\CustomQuery.aspx.cs"},{"SourceFile":"SysManage\\CustomQuery.aspx.designer.cs"},{"SourceFile":"SysManage\\Depart.aspx.cs"},{"SourceFile":"SysManage\\Depart.aspx.designer.cs"},{"SourceFile":"SysManage\\HttpLog.aspx.cs"},{"SourceFile":"SysManage\\HttpLog.aspx.designer.cs"},{"SourceFile":"SysManage\\MenuFlowOperateEdit.aspx.cs"},{"SourceFile":"SysManage\\MenuFlowOperateEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\ParticipateProject.aspx.cs"},{"SourceFile":"SysManage\\ParticipateProject.aspx.designer.cs"},{"SourceFile":"SysManage\\ProjectToDo.aspx.cs"},{"SourceFile":"SysManage\\ProjectToDo.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleItem.aspx.cs"},{"SourceFile":"SysManage\\RoleItem.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleItemEdit.aspx.cs"},{"SourceFile":"SysManage\\RoleItemEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleList.aspx.cs"},{"SourceFile":"SysManage\\RoleList.aspx.designer.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.cs"},{"SourceFile":"SysManage\\RoleListEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\RolePower.aspx.cs"},{"SourceFile":"SysManage\\RolePower.aspx.designer.cs"},{"SourceFile":"SysManage\\SysConstSet.aspx.cs"},{"SourceFile":"SysManage\\SysConstSet.aspx.designer.cs"},{"SourceFile":"SysManage\\Unit.aspx.cs"},{"SourceFile":"SysManage\\Unit.aspx.designer.cs"},{"SourceFile":"SysManage\\UnitEdit.aspx.cs"},{"SourceFile":"SysManage\\UnitEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UnitIn.aspx.cs"},{"SourceFile":"SysManage\\UnitIn.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.cs"},{"SourceFile":"SysManage\\UpdatePassword.aspx.designer.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.cs"},{"SourceFile":"SysManage\\UpdatePasswordEdit.aspx.designer.cs"},{"SourceFile":"SysManage\\UserIn.aspx.cs"},{"SourceFile":"SysManage\\UserIn.aspx.designer.cs"},{"SourceFile":"SysManage\\UserList.aspx.cs"},{"SourceFile":"SysManage\\UserList.aspx.designer.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.cs"},{"SourceFile":"SysManage\\UserListEdit.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestPlan.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestPlan.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanEdit.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanEdit.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanView.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestPlanView.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestRanking.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestRanking.aspx.designer.cs"},{"SourceFile":"PersonManage\\Test\\TestRecord.aspx.cs"},{"SourceFile":"PersonManage\\Test\\TestRecord.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\IFLogList.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\IFLogList.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceEdit.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceEdit.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceSet.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceSet.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTask.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTask.aspx.designer.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTaskEdit.aspx.cs"},{"SourceFile":"TaskScheduling\\InterFace\\InterFaceTaskEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRun.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRun.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRunEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\BeforeTestRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRun.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRun.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRunEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\DeviceRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirmEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionOtherConfirmEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirmEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerConfirmEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandle.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandleEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionProposerHandleEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirmEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\FourDecisionResponsibilityConfirmEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplate.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplate.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplateEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectTemplateEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPass.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPass.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPassList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutAllPassList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutConfirm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\InspectWanderAboutList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectInstrument.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectInstrument.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectProperty.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectProperty.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTechnology.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SelectTechnology.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SetWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SetWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementation.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementation.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementationList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SiteImplementationList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubInspectTerm.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubInspectTerm.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubSysWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubSysWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionEdit.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubThreeChecksFourDecisionList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubWorkInspect.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SubWorkInspect.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SysPipingDeviceImport.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\SysPipingDeviceImport.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApprove.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApprove.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApproveList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermApproveList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandle.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandleList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TailTermHandleList.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUpload.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUpload.aspx.designer.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUploadList.aspx.cs"},{"SourceFile":"TestRun\\BeforeTestRun\\TestRunRecordUploadList.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuy.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuy.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsBuyEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\GoodsPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTrace.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTrace.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTraceEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverGoods\\MaterialTraceEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazard.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazard.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazardEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseHazardEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicense.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicense.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicenseEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseLicenseEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasure.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasure.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasureEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\HseMeasureEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMap.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMap.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMapEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverHse\\RoadMapEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudy.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudy.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudyEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\ConStudyEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverData.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverData.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataTypeEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverDataTypeEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPersonPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DriverPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\Duty.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\Duty.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DutyEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\DutyEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlan.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemAdd.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemAdd.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemSelect.aspx.cs"},{"SourceFile":"TestRun\\DriverPrepare\\SchemePlanItemSelect.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverProgress.aspx.cs"},{"SourceFile":"TestRun\\DriverProgress.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverProgressEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverProgressEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunComplete.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunComplete.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunCompleteEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\DriverRunCompleteEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\FeedTestRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\LinkedTestRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\MonthReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\PropertyReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReport.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReport.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReportEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverReport\\WeekReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRun.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRun.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContact.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContact.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContactEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunContactEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverRun\\DriverRunPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverScheme.aspx.cs"},{"SourceFile":"TestRun\\DriverScheme.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSchemeEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSchemeEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSub.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSub.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContact.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContact.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactIn.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactIn.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorList.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubContactorList.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlan.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSub\\DriverSubPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummary.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummary.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummaryEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\CompleteSummaryEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummary.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummary.aspx.designer.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummaryEdit.aspx.cs"},{"SourceFile":"TestRun\\DriverSummary\\MonthSummaryEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\FeedingTestRun.aspx.cs"},{"SourceFile":"TestRun\\FeedingTestRun.aspx.designer.cs"},{"SourceFile":"TestRun\\FeedingTestRunEdit.aspx.cs"},{"SourceFile":"TestRun\\FeedingTestRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeeting.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeeting.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeetingEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\ScheduleMeetingEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeeting.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeeting.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeetingEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\SpecialMeetingEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeeting.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeeting.aspx.designer.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeetingEdit.aspx.cs"},{"SourceFile":"TestRun\\Meeting\\WeekMeetingEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlan.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\PersonTrainPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContact.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContact.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContactEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContactEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContent.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContent.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContentEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContentEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContract.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContract.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContractEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainContractEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlan.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlan.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlanEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainPlanEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecords.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecords.aspx.designer.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecordsEdit.aspx.cs"},{"SourceFile":"TestRun\\PersonTrain\\TrainRecordsEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySamp.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySamp.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySampEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\AnalySampEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunOthersCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunPumpCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecord.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecord.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecordEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunRecordEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReport.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceProperty\\PropertyRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunOthersCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheck.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheck.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheckEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunPumpCheckEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecord.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecord.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecordEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunRecordEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReport.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReport.aspx.designer.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReportEdit.aspx.cs"},{"SourceFile":"TestRun\\ProduceTestRun\\TestRunReportEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRun.aspx.cs"},{"SourceFile":"TestRun\\TestRun.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRun.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRun.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRunEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\DeviceRunEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplate.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplate.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplateEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectTemplateEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPass.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPass.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPassList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutAllPassList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutConfirm.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutConfirm.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\InspectWanderAboutList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SelectTailTermList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SelectTailTermList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SetWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SetWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementation.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementation.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementationList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SiteImplementationList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTerm.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTerm.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTermEdit.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubInspectTermEdit.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubSysWorkPackage.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubSysWorkPackage.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubWorkInspect.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\SubWorkInspect.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApprove.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApprove.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApproveList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermApproveList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandle.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandle.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandleList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TailTermHandleList.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUpload.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUpload.aspx.designer.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUploadList.aspx.cs"},{"SourceFile":"TestRun\\TestRunManage\\TestRunRecordUploadList.aspx.designer.cs"},{"SourceFile":"Video\\Video.aspx.cs"},{"SourceFile":"Video\\Video.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\AccidentCauseReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillConductedQuarterlyReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\DrillPlanHalfYearReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\MillionsMonthlyReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBar.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBar.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBarIn.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportBarIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportImport.aspx.cs"},{"SourceFile":"ZHGL\\DataIn\\SafetyQuarterlyReportImport.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataStatistics\\CheckStatistics.aspx.cs"},{"SourceFile":"ZHGL\\DataStatistics\\CheckStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataStatistics\\MeetStatistics.aspx.cs"},{"SourceFile":"ZHGL\\DataStatistics\\MeetStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataStatistics\\RectifyNoticesStatistics.aspx.cs"},{"SourceFile":"ZHGL\\DataStatistics\\RectifyNoticesStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMS.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMS.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMSEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\CQMSData_CQMSEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGL.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGL.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGLEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HJGLData_HJGLEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\HSSEData_HSSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMS.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMS.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMSEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_CQMSData_CQMSEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGL.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGL.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGLEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HJGLData_HJGLEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_HSSEData_HSSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\ProjectDataSync\\Project_SYHSEData_SYHSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_Data.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_Data.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_DataEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_DataEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSE.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSE.aspx.designer.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSEEdit.aspx.cs"},{"SourceFile":"ZHGL\\DataSync\\SYHSEData_SYHSEEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordList.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordList.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListEdit.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListView.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\DrillRecordListView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyList.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyList.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListEdit.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListView.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\EmergencyListView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Emergency\\ServerEmergencySupply.aspx.cs"},{"SourceFile":"ZHGL\\Emergency\\ServerEmergencySupply.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ArchitectureReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ChemicalReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EIAReportView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnergyReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlan.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlan.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalEmergencyPlanView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoring.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoring.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\EnvironmentalMonitoringView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\OperationReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectArchitectureReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectChemicalReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectEnergyReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReport.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\ProjectOperationReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmental.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmental.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalEdit.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalView.aspx.cs"},{"SourceFile":"ZHGL\\Environmental\\UnexpectedEnvironmentalView.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManage.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManage.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageEdit.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageItemEdit.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEManageItemEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEOrganize.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\HSSEOrganize.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitution.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitution.aspx.designer.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitutionEdit.aspx.cs"},{"SourceFile":"ZHGL\\HSSESystem\\SafetyInstitutionEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetA.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetA.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAEdit.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemEdit.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemView.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetAItemView.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetB.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\FileCabinetB.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\Picture.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\Picture.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureEdit.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureView.aspx.cs"},{"SourceFile":"ZHGL\\InformationProject\\PictureView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AccidentCauseReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseHiddenDanger.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseHiddenDanger.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseResource.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseResource.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseSafeAccident.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseSafeAccident.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseWorkTimeCost.aspx.cs"},{"SourceFile":"ZHGL\\Information\\AnalyseWorkTimeCost.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportAdd.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillConductedQuarterlyReportAdd.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportAdd.aspx.cs"},{"SourceFile":"ZHGL\\Information\\DrillPlanHalfYearReportAdd.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\EPSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportSave.aspx.cs"},{"SourceFile":"ZHGL\\Information\\MillionsMonthlyReportSave.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QualityWorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQuality.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQuality.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\QuarterlyProjectQualityEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\ReportAuditSee.aspx.cs"},{"SourceFile":"ZHGL\\Information\\ReportAuditSee.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\ReportSubmit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\ReportSubmit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefing.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefing.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyBriefingEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\SafetyQuarterlyReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReport.aspx.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Information\\WorkSummaryReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\InspectionSummary\\InspectionSummary.aspx.cs"},{"SourceFile":"ZHGL\\InspectionSummary\\InspectionSummary.aspx.designer.cs"},{"SourceFile":"ZHGL\\ManagementReport\\ReportRemind.aspx.cs"},{"SourceFile":"ZHGL\\ManagementReport\\ReportRemind.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeeting.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeeting.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingEdit.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingView.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySafetyMeetingView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeeting.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeeting.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingEdit.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingView.aspx.cs"},{"SourceFile":"ZHGL\\Meeting\\CompanySpecialMeetingView.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetection.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetection.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionEdit.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionView.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\HazardDetectionView.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccident.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccident.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\OccupationalDiseaseAccidentView.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExamination.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExamination.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationEdit.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationView.aspx.cs"},{"SourceFile":"ZHGL\\OccupationHealth\\PhysicalExaminationView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Performance\\PerformanceAllData.aspx.cs"},{"SourceFile":"ZHGL\\Performance\\PerformanceAllData.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPerson.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPerson.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonEdit.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonIn.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonView.aspx.cs"},{"SourceFile":"ZHGL\\Person\\BranchPersonView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPerson.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPerson.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonEdit.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonIn.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonView.aspx.cs"},{"SourceFile":"ZHGL\\Person\\CompanyPersonView.aspx.designer.cs"},{"SourceFile":"ZHGL\\Person\\ProjectPerson.aspx.cs"},{"SourceFile":"ZHGL\\Person\\ProjectPerson.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysis.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysis.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisEdit.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentAnalysisEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentData.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentData.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReport.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportView.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentReportView.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatistics.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatistics.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsEdit.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsView.aspx.cs"},{"SourceFile":"ZHGL\\ProjectAccident\\AccidentStatisticsView.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\OnPost.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\OnPost.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePost.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePost.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePostIn.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\LeavePostIn.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroRecord.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroRecord.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroSet.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\SynchroSet.aspx.designer.cs"},{"SourceFile":"ZHGL\\RealName\\BasicData.aspx.cs"},{"SourceFile":"ZHGL\\RealName\\BasicData.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReport.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReportView.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoReportView.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoTemplate.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckInfoTemplate.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckNotice.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckNotice.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectify.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectify.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyEdit.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\CheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReport.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\SubUnitReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReport.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\ServerCheck\\UpCheckReportEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowFileUpload.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowFileUpload.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowRectifyItem.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\ShowRectifyItem.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyEdit.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SubUnitCheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectify.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectify.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyEdit.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckRectifyEdit.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReport.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReport.aspx.designer.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportEdit.aspx.cs"},{"SourceFile":"ZHGL\\Supervise\\SuperviseCheckReportEdit.aspx.designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.1.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Apache.NMS.ActiveMQ.1.7.2\\lib\\net40\\Apache.NMS.ActiveMQ.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\Apache.NMS.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\FakesAssemblies\\Apache.NMS.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Aspose.Words.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\AxInterop.SYNCARDOCXLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\BLL\\bin\\Debug\\BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Portable.BouncyCastle.1.8.9\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\SharpZipLib.1.3.2\\lib\\net45\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\Interop.WIA.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\Microsoft.QualityTools.Testing.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\Newtonsoft.Json.12.0.2\\lib\\net45\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\NPOI.2.5.5\\lib\\net45\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\packages\\RestSharp.106.15.0\\lib\\net452\\RestSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\SgManager.AI\\bin\\Debug\\SgManager.AI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.EnterpriseServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.IO.Compression.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.IO.Compression.FileSystem.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Transactions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.DynamicData.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6.1\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro\\Reference BLL\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\FakesAssemblies\\ThoughtWorks.QRCode.Fakes.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\FineUIPro.Web.dll","OutputItemRelativePath":"FineUIPro.Web.dll"},{"OutputItemFullPath":"D:\\数据\\诺必达\\五环\\CNCEC_SUBQHSE_WUHUAN\\SGGL\\FineUIPro.Web\\bin\\FineUIPro.Web.pdb","OutputItemRelativePath":"FineUIPro.Web.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Controls/DataImportControl.ascx b/SGGL/FineUIPro.Web/Controls/DataImportControl.ascx new file mode 100644 index 00000000..8616e01b --- /dev/null +++ b/SGGL/FineUIPro.Web/Controls/DataImportControl.ascx @@ -0,0 +1,75 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="DataImportControl.ascx.cs" Inherits="FineUIPro.Web.Controls.DataImportControl" %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/Controls/DataImportControl.ascx.cs b/SGGL/FineUIPro.Web/Controls/DataImportControl.ascx.cs new file mode 100644 index 00000000..569b5604 --- /dev/null +++ b/SGGL/FineUIPro.Web/Controls/DataImportControl.ascx.cs @@ -0,0 +1,141 @@ +using BLL; +using Model; +using System; +using System.Collections.Generic; +using System.IO; +using System.Web.UI; + +namespace FineUIPro.Web.Controls +{ + public partial class DataImportControl : UserControl + { + public delegate void userEvent(object sender, EventArgs arg); //定义事件委托 + + public event userEvent Audit_Click; //定义审核事件 + public event userEvent Import_Click; //定义导入事件 + /// + /// 模板路径 + /// + public string TemplatePath + { + get + { + return (string)ViewState["Template"]; + } + set + { + ViewState["Template"] = value; + } + } + /// + /// 上传文件Url + /// + public string UpLoadAttachUrl + { + get + { + return (string)ViewState["UpLoadAttachUrl"]; + } + set + { + ViewState["UpLoadAttachUrl"] = value; + } + } + //错误集合 + public List ErrorInfoList + { + get + { + return (List)Session["ErrorInfoList"]; + } + set + { + Session["ErrorInfoList"] = value; + } + } + + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.hdCheckResult.Text = string.Empty; + this.hdFileName.Text = string.Empty; + if (ErrorInfoList != null) + { + ErrorInfoList.Clear(); + } + } + } + //方法用于绑定Grid + public void BindGrid() + { + this.gvErrorInfo.DataSource = ErrorInfoList; + this.gvErrorInfo.DataBind(); + } + protected void btnAudit_Click(object sender, EventArgs e) + { + if (this.Audit_Click != null) + { + if (this.fuAttachUrl.HasFile == false) + { + String.Format("showControlInfo('{0}');", "请您选择Excel文件"); + return; + } + string IsXls = Path.GetExtension(this.fuAttachUrl.FileName).ToString().Trim().ToLower(); + if (IsXls != ".xls") + { + String.Format("showControlInfo('{0}');", "只可以选择Excel文件!"); + return; + } + if (ErrorInfoList != null) + { + ErrorInfoList.Clear(); + } + string rootPath = Server.MapPath("~/"); + string initFullPath = rootPath + Const.ExcelUrl; + if (!Directory.Exists(initFullPath)) + { + Directory.CreateDirectory(initFullPath); + } + + this.hdFileName.Text = BLL.Funs.GetNewFileName() + IsXls; + string filePath = initFullPath + this.hdFileName.Text; + this.fuAttachUrl.PostedFile.SaveAs(filePath); + this.Audit_Click(this, e); + } + } + + protected void btnImport_Click(object sender, EventArgs e) + { + if (this.Import_Click != null) + { + this.Import_Click(this, e); + } + } + + #region 下载模板 + + /// + /// 下载模板按钮 + /// + /// + /// + protected void btnDownLoad_Click(object sender, EventArgs e) + { + string rootPath = Server.MapPath("~/"); + string uploadfilepath = rootPath + TemplatePath; + string filePath = TemplatePath; + string fileName = Path.GetFileName(filePath); + FileInfo info = new FileInfo(uploadfilepath); + long fileSize = info.Length; + Response.ClearContent(); + Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)); + Response.ContentType = "excel/plain"; + Response.ContentEncoding = System.Text.Encoding.UTF8; + Response.AddHeader("Content-Length", fileSize.ToString().Trim()); + Response.TransmitFile(uploadfilepath, 0, fileSize); + Response.End(); + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Controls/DataImportControl.ascx.designer.cs b/SGGL/FineUIPro.Web/Controls/DataImportControl.ascx.designer.cs new file mode 100644 index 00000000..13386a04 --- /dev/null +++ b/SGGL/FineUIPro.Web/Controls/DataImportControl.ascx.designer.cs @@ -0,0 +1,116 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Controls +{ + + + public partial class DataImportControl + { + + /// + /// Panel1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// SimpleForm1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// hdFileName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdFileName; + + /// + /// btnAudit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnAudit; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// btnDownLoad 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnDownLoad; + + /// + /// hdCheckResult 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdCheckResult; + + /// + /// fuAttachUrl 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.FileUpload fuAttachUrl; + + /// + /// gvErrorInfo 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid gvErrorInfo; + + /// + /// lblPageIndex 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + } +} diff --git a/SGGL/FineUIPro.Web/File/Excel/TestRun/开车合作单位名录.xlsx b/SGGL/FineUIPro.Web/File/Excel/TestRun/开车合作单位名录.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..b9c4121174293d86bd4b64a35b6f183f3eae9ee4 GIT binary patch literal 11839 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 MOE3<4>Hp~cKjyghpa1{> literal 0 HcmV?d00001 diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index eeddcae4..7ccfdc88 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -1755,6 +1755,9 @@ + + + @@ -15792,6 +15795,27 @@ DriverSubContactEdit.aspx + + DriverSubContactIn.aspx + ASPXCodeBehind + + + DriverSubContactIn.aspx + + + DriverSubContactorEdit.aspx + ASPXCodeBehind + + + DriverSubContactorEdit.aspx + + + DriverSubContactorList.aspx + ASPXCodeBehind + + + DriverSubContactorList.aspx + DriverSubEdit.aspx ASPXCodeBehind diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user index 5c318055..c4484e3e 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user @@ -9,6 +9,7 @@ + ShowAllFiles diff --git a/SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSub.aspx b/SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSub.aspx index dfb92dad..0a6852d0 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSub.aspx +++ b/SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSub.aspx @@ -9,7 +9,7 @@
- + diff --git a/SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContact.aspx b/SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContact.aspx index dac0e136..3deee3cd 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContact.aspx +++ b/SGGL/FineUIPro.Web/TestRun/DriverSub/DriverSubContact.aspx @@ -9,20 +9,19 @@ - + + EnableRowDoubleClickEvent="true" EnableTextSelection="True" OnRowCommand="Grid1_RowCommand" OnRowDoubleClick="Grid1_RowDoubleClick" ForceFit="True"> - - + + + FieldType="String" HeaderText="分包计划编号" HeaderTextAlign="Center" TextAlign="Center" > - - - - - - - - - - - - - - - - - + + + + + @@ -82,7 +60,7 @@