6ad62118e796172076329160b4af34e2785a4176.svn-base 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <uiObject xmlns="com.kingdee.bos.metadata">
  3. <package>com.kingdee.eas.custom.bill.salary.client</package>
  4. <name>SalaryBagListUI</name>
  5. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].alias</alias>
  6. <description>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].description</description>
  7. <userDefined>true</userDefined>
  8. <releasePackage>com.kingdee.eas.custom.bill.salary.client</releasePackage>
  9. <releaseClass>SalaryBagListUI</releaseClass>
  10. <title>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].title</title>
  11. <uitype />
  12. <defaultbutton />
  13. <bizUnitPK>com.kingdee.eas.custom.bill.salary.SalaryBag</bizUnitPK>
  14. <parent>
  15. <key name="package" value="com.kingdee.eas.hr.base.client" />
  16. <key name="name" value="HRBillListUI" />
  17. </parent>
  18. <components>
  19. <component>
  20. <name>CoreUI</name>
  21. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[CoreUI].alias</alias>
  22. <userDefined>false</userDefined>
  23. <classType>com.kingdee.bos.ctrl.swing.KDPanel</classType>
  24. <isContainer>true</isContainer>
  25. <constraints />
  26. <tabIndex>0</tabIndex>
  27. <herited>false</herited>
  28. <bimUIObjectPK />
  29. <layoutInfo>
  30. <name>kDLayout1</name>
  31. <type>KDLayout</type>
  32. <value />
  33. </layoutInfo>
  34. </component>
  35. <component>
  36. <name>tblMain</name>
  37. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[tblMain].alias</alias>
  38. <userDefined>false</userDefined>
  39. <classType>com.kingdee.bos.ctrl.kdf.table.KDTable</classType>
  40. <isContainer>false</isContainer>
  41. <constraints>10,10,996,580,15</constraints>
  42. <tabIndex>0</tabIndex>
  43. <herited>false</herited>
  44. <bimUIObjectPK />
  45. <layoutInfo>
  46. <name />
  47. <type>XYLayout</type>
  48. <value />
  49. </layoutInfo>
  50. <properties>
  51. <property>
  52. <name>formatXml</name>
  53. <type>java.lang.String</type>
  54. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[tblMain].properties.property[formatXml].value</value>
  55. <isMultiLan>true</isMultiLan>
  56. <userDefined>false</userDefined>
  57. </property>
  58. </properties>
  59. <propertyBindings>
  60. <propertyBinding>
  61. <propertyName>id.text</propertyName>
  62. <propertyType>java.lang.Object</propertyType>
  63. <bindingObject>mainQuery</bindingObject>
  64. <bindingField>id</bindingField>
  65. <fieldType>java.lang.String</fieldType>
  66. <accessType>2</accessType>
  67. <autoMode>false</autoMode>
  68. <herited>false</herited>
  69. <userDefined>true</userDefined>
  70. </propertyBinding>
  71. <propertyBinding>
  72. <propertyName>number.text</propertyName>
  73. <propertyType>java.lang.Object</propertyType>
  74. <bindingObject>mainQuery</bindingObject>
  75. <bindingField>number</bindingField>
  76. <fieldType>java.lang.String</fieldType>
  77. <accessType>2</accessType>
  78. <autoMode>false</autoMode>
  79. <herited>false</herited>
  80. <userDefined>true</userDefined>
  81. </propertyBinding>
  82. <propertyBinding>
  83. <propertyName>bizDate.text</propertyName>
  84. <propertyType>java.lang.Object</propertyType>
  85. <bindingObject>mainQuery</bindingObject>
  86. <bindingField>bizDate</bindingField>
  87. <fieldType>java.lang.String</fieldType>
  88. <accessType>2</accessType>
  89. <autoMode>false</autoMode>
  90. <herited>false</herited>
  91. <userDefined>true</userDefined>
  92. </propertyBinding>
  93. <propertyBinding>
  94. <propertyName>description.text</propertyName>
  95. <propertyType>java.lang.Object</propertyType>
  96. <bindingObject>mainQuery</bindingObject>
  97. <bindingField>description</bindingField>
  98. <fieldType>java.lang.String</fieldType>
  99. <accessType>2</accessType>
  100. <autoMode>false</autoMode>
  101. <herited>false</herited>
  102. <userDefined>true</userDefined>
  103. </propertyBinding>
  104. <propertyBinding>
  105. <propertyName>applier.id.text</propertyName>
  106. <propertyType>java.lang.Object</propertyType>
  107. <bindingObject>mainQuery</bindingObject>
  108. <bindingField>applier.id</bindingField>
  109. <fieldType>java.lang.String</fieldType>
  110. <accessType>2</accessType>
  111. <autoMode>false</autoMode>
  112. <herited>false</herited>
  113. <userDefined>true</userDefined>
  114. </propertyBinding>
  115. <propertyBinding>
  116. <propertyName>applier.name.text</propertyName>
  117. <propertyType>java.lang.Object</propertyType>
  118. <bindingObject>mainQuery</bindingObject>
  119. <bindingField>applier.name</bindingField>
  120. <fieldType>java.lang.String</fieldType>
  121. <accessType>2</accessType>
  122. <autoMode>false</autoMode>
  123. <herited>false</herited>
  124. <userDefined>true</userDefined>
  125. </propertyBinding>
  126. <propertyBinding>
  127. <propertyName>adminOrgUnit.id.text</propertyName>
  128. <propertyType>java.lang.Object</propertyType>
  129. <bindingObject>mainQuery</bindingObject>
  130. <bindingField>adminOrg.id</bindingField>
  131. <fieldType>java.lang.String</fieldType>
  132. <accessType>2</accessType>
  133. <autoMode>false</autoMode>
  134. <herited>false</herited>
  135. <userDefined>true</userDefined>
  136. </propertyBinding>
  137. <propertyBinding>
  138. <propertyName>adminOrgUnit.displayName.text</propertyName>
  139. <propertyType>java.lang.Object</propertyType>
  140. <bindingObject>mainQuery</bindingObject>
  141. <bindingField>adminOrg.displayName</bindingField>
  142. <fieldType>java.lang.String</fieldType>
  143. <accessType>2</accessType>
  144. <autoMode>false</autoMode>
  145. <herited>false</herited>
  146. <userDefined>true</userDefined>
  147. </propertyBinding>
  148. <propertyBinding>
  149. <propertyName>applyDate.text</propertyName>
  150. <propertyType>java.lang.Object</propertyType>
  151. <bindingObject>mainQuery</bindingObject>
  152. <bindingField>applyDate</bindingField>
  153. <fieldType>java.lang.String</fieldType>
  154. <accessType>2</accessType>
  155. <autoMode>false</autoMode>
  156. <herited>false</herited>
  157. <userDefined>true</userDefined>
  158. </propertyBinding>
  159. <propertyBinding>
  160. <propertyName>hrOrgUnit.id.text</propertyName>
  161. <propertyType>java.lang.Object</propertyType>
  162. <bindingObject>mainQuery</bindingObject>
  163. <bindingField>hrOrgUnit.id</bindingField>
  164. <fieldType>java.lang.String</fieldType>
  165. <accessType>2</accessType>
  166. <autoMode>false</autoMode>
  167. <herited>false</herited>
  168. <userDefined>true</userDefined>
  169. </propertyBinding>
  170. <propertyBinding>
  171. <propertyName>hrOrgUnit.name.text</propertyName>
  172. <propertyType>java.lang.Object</propertyType>
  173. <bindingObject>mainQuery</bindingObject>
  174. <bindingField>hrOrgUnit.name</bindingField>
  175. <fieldType>java.lang.String</fieldType>
  176. <accessType>2</accessType>
  177. <autoMode>false</autoMode>
  178. <herited>false</herited>
  179. <userDefined>true</userDefined>
  180. </propertyBinding>
  181. <propertyBinding>
  182. <propertyName>billState.text</propertyName>
  183. <propertyType>java.lang.Object</propertyType>
  184. <bindingObject>mainQuery</bindingObject>
  185. <bindingField>billState</bindingField>
  186. <fieldType>java.lang.String</fieldType>
  187. <accessType>2</accessType>
  188. <autoMode>false</autoMode>
  189. <herited>false</herited>
  190. <userDefined>true</userDefined>
  191. </propertyBinding>
  192. <propertyBinding>
  193. <propertyName>approveType.text</propertyName>
  194. <propertyType>java.lang.Object</propertyType>
  195. <bindingObject>mainQuery</bindingObject>
  196. <bindingField>approveType</bindingField>
  197. <fieldType>java.lang.String</fieldType>
  198. <accessType>2</accessType>
  199. <autoMode>false</autoMode>
  200. <herited>false</herited>
  201. <userDefined>true</userDefined>
  202. </propertyBinding>
  203. <propertyBinding>
  204. <propertyName>adminOrgUnit.name.text</propertyName>
  205. <propertyType>java.lang.Object</propertyType>
  206. <bindingObject>mainQuery</bindingObject>
  207. <bindingField>adminOrgUnit.name</bindingField>
  208. <fieldType>java.lang.String</fieldType>
  209. <accessType>2</accessType>
  210. <autoMode>false</autoMode>
  211. <herited>false</herited>
  212. <userDefined>true</userDefined>
  213. </propertyBinding>
  214. <propertyBinding>
  215. <propertyName>entrys.months.text</propertyName>
  216. <propertyType>java.lang.Object</propertyType>
  217. <bindingObject>mainQuery</bindingObject>
  218. <bindingField>entrys.months</bindingField>
  219. <fieldType>java.lang.String</fieldType>
  220. <accessType>2</accessType>
  221. <autoMode>false</autoMode>
  222. <herited>false</herited>
  223. <userDefined>true</userDefined>
  224. </propertyBinding>
  225. <propertyBinding>
  226. <propertyName>entrys.moneys.text</propertyName>
  227. <propertyType>java.lang.Object</propertyType>
  228. <bindingObject>mainQuery</bindingObject>
  229. <bindingField>entrys.moneys</bindingField>
  230. <fieldType>java.lang.String</fieldType>
  231. <accessType>2</accessType>
  232. <autoMode>false</autoMode>
  233. <herited>false</herited>
  234. <userDefined>true</userDefined>
  235. </propertyBinding>
  236. <propertyBinding>
  237. <propertyName>entrys.beforeAmount.text</propertyName>
  238. <propertyType>java.lang.Object</propertyType>
  239. <bindingObject>mainQuery</bindingObject>
  240. <bindingField>entrys.beforeAmount</bindingField>
  241. <fieldType>java.lang.String</fieldType>
  242. <accessType>2</accessType>
  243. <autoMode>false</autoMode>
  244. <herited>false</herited>
  245. <userDefined>true</userDefined>
  246. </propertyBinding>
  247. <propertyBinding>
  248. <propertyName>entrys.reissueAmount.text</propertyName>
  249. <propertyType>java.lang.Object</propertyType>
  250. <bindingObject>mainQuery</bindingObject>
  251. <bindingField>entrys.reissueAmount</bindingField>
  252. <fieldType>java.lang.String</fieldType>
  253. <accessType>2</accessType>
  254. <autoMode>false</autoMode>
  255. <herited>false</herited>
  256. <userDefined>true</userDefined>
  257. </propertyBinding>
  258. <propertyBinding>
  259. <propertyName>entrys.amountPayable.text</propertyName>
  260. <propertyType>java.lang.Object</propertyType>
  261. <bindingObject>mainQuery</bindingObject>
  262. <bindingField>entrys.amountPayable</bindingField>
  263. <fieldType>java.lang.String</fieldType>
  264. <accessType>2</accessType>
  265. <autoMode>false</autoMode>
  266. <herited>false</herited>
  267. <userDefined>true</userDefined>
  268. </propertyBinding>
  269. <propertyBinding>
  270. <propertyName>person.name.text</propertyName>
  271. <propertyType>java.lang.Object</propertyType>
  272. <bindingObject>mainQuery</bindingObject>
  273. <bindingField>person.name</bindingField>
  274. <fieldType>java.lang.String</fieldType>
  275. <accessType>2</accessType>
  276. <autoMode>false</autoMode>
  277. <herited>false</herited>
  278. <userDefined>true</userDefined>
  279. </propertyBinding>
  280. <propertyBinding>
  281. <propertyName>money.text</propertyName>
  282. <propertyType>java.lang.Object</propertyType>
  283. <bindingObject>mainQuery</bindingObject>
  284. <bindingField>money</bindingField>
  285. <fieldType>java.lang.String</fieldType>
  286. <accessType>2</accessType>
  287. <autoMode>false</autoMode>
  288. <herited>false</herited>
  289. <userDefined>true</userDefined>
  290. </propertyBinding>
  291. <propertyBinding>
  292. <propertyName>startDate.text</propertyName>
  293. <propertyType>java.lang.Object</propertyType>
  294. <bindingObject>mainQuery</bindingObject>
  295. <bindingField>startDate</bindingField>
  296. <fieldType>java.lang.String</fieldType>
  297. <accessType>2</accessType>
  298. <autoMode>false</autoMode>
  299. <herited>false</herited>
  300. <userDefined>true</userDefined>
  301. </propertyBinding>
  302. <propertyBinding>
  303. <propertyName>endDate.text</propertyName>
  304. <propertyType>java.lang.Object</propertyType>
  305. <bindingObject>mainQuery</bindingObject>
  306. <bindingField>endDate</bindingField>
  307. <fieldType>java.lang.String</fieldType>
  308. <accessType>2</accessType>
  309. <autoMode>false</autoMode>
  310. <herited>false</herited>
  311. <userDefined>true</userDefined>
  312. </propertyBinding>
  313. <propertyBinding>
  314. <propertyName>reissueDate.text</propertyName>
  315. <propertyType>java.lang.Object</propertyType>
  316. <bindingObject>mainQuery</bindingObject>
  317. <bindingField>reissueDate</bindingField>
  318. <fieldType>java.lang.String</fieldType>
  319. <accessType>2</accessType>
  320. <autoMode>false</autoMode>
  321. <herited>false</herited>
  322. <userDefined>true</userDefined>
  323. </propertyBinding>
  324. <propertyBinding>
  325. <propertyName>status.text</propertyName>
  326. <propertyType>java.lang.Object</propertyType>
  327. <bindingObject>mainQuery</bindingObject>
  328. <bindingField>status</bindingField>
  329. <fieldType>java.lang.String</fieldType>
  330. <accessType>2</accessType>
  331. <autoMode>false</autoMode>
  332. <herited>false</herited>
  333. <userDefined>true</userDefined>
  334. </propertyBinding>
  335. </propertyBindings>
  336. </component>
  337. <component>
  338. <name>btnAddNew</name>
  339. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAddNew].alias</alias>
  340. <userDefined>false</userDefined>
  341. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  342. <isContainer>false</isContainer>
  343. <constraints>0</constraints>
  344. <tabIndex>0</tabIndex>
  345. <herited>false</herited>
  346. <bimUIObjectPK />
  347. </component>
  348. <component>
  349. <name>btnView</name>
  350. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnView].alias</alias>
  351. <userDefined>false</userDefined>
  352. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  353. <isContainer>false</isContainer>
  354. <constraints>1</constraints>
  355. <tabIndex>0</tabIndex>
  356. <herited>false</herited>
  357. <bimUIObjectPK />
  358. </component>
  359. <component>
  360. <name>btnEdit</name>
  361. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnEdit].alias</alias>
  362. <userDefined>false</userDefined>
  363. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  364. <isContainer>false</isContainer>
  365. <constraints>2</constraints>
  366. <tabIndex>0</tabIndex>
  367. <herited>false</herited>
  368. <bimUIObjectPK />
  369. </component>
  370. <component>
  371. <name>btnRemove</name>
  372. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnRemove].alias</alias>
  373. <userDefined>false</userDefined>
  374. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  375. <isContainer>false</isContainer>
  376. <constraints>3</constraints>
  377. <tabIndex>0</tabIndex>
  378. <herited>false</herited>
  379. <bimUIObjectPK />
  380. </component>
  381. <component>
  382. <name>btnRefresh</name>
  383. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnRefresh].alias</alias>
  384. <userDefined>false</userDefined>
  385. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  386. <isContainer>false</isContainer>
  387. <constraints>4</constraints>
  388. <tabIndex>0</tabIndex>
  389. <herited>false</herited>
  390. <bimUIObjectPK />
  391. </component>
  392. <component>
  393. <name>btnQuery</name>
  394. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnQuery].alias</alias>
  395. <userDefined>false</userDefined>
  396. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  397. <isContainer>false</isContainer>
  398. <constraints>5</constraints>
  399. <tabIndex>0</tabIndex>
  400. <herited>false</herited>
  401. <bimUIObjectPK />
  402. </component>
  403. <component>
  404. <name>btnLocate</name>
  405. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnLocate].alias</alias>
  406. <userDefined>false</userDefined>
  407. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  408. <isContainer>false</isContainer>
  409. <constraints>6</constraints>
  410. <tabIndex>0</tabIndex>
  411. <herited>false</herited>
  412. <bimUIObjectPK />
  413. </component>
  414. <component>
  415. <name>btnAttachment</name>
  416. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAttachment].alias</alias>
  417. <userDefined>false</userDefined>
  418. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  419. <isContainer>false</isContainer>
  420. <constraints>7</constraints>
  421. <tabIndex>0</tabIndex>
  422. <herited>false</herited>
  423. <bimUIObjectPK />
  424. </component>
  425. <component>
  426. <name>separatorFW1</name>
  427. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW1].alias</alias>
  428. <userDefined>false</userDefined>
  429. <classType>javax.swing.JToolBar.Separator</classType>
  430. <isContainer>false</isContainer>
  431. <constraints>8</constraints>
  432. <tabIndex>0</tabIndex>
  433. <herited>false</herited>
  434. <bimUIObjectPK />
  435. </component>
  436. <component>
  437. <name>btnPageSetup</name>
  438. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnPageSetup].alias</alias>
  439. <userDefined>false</userDefined>
  440. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  441. <isContainer>false</isContainer>
  442. <constraints>9</constraints>
  443. <tabIndex>0</tabIndex>
  444. <herited>false</herited>
  445. <bimUIObjectPK />
  446. </component>
  447. <component>
  448. <name>btnPrint</name>
  449. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnPrint].alias</alias>
  450. <userDefined>false</userDefined>
  451. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  452. <isContainer>false</isContainer>
  453. <constraints>10</constraints>
  454. <tabIndex>0</tabIndex>
  455. <herited>false</herited>
  456. <bimUIObjectPK />
  457. </component>
  458. <component>
  459. <name>btnPrintPreview</name>
  460. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnPrintPreview].alias</alias>
  461. <userDefined>false</userDefined>
  462. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  463. <isContainer>false</isContainer>
  464. <constraints>11</constraints>
  465. <tabIndex>0</tabIndex>
  466. <herited>false</herited>
  467. <bimUIObjectPK />
  468. </component>
  469. <component>
  470. <name>btnBatchPrint</name>
  471. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnBatchPrint].alias</alias>
  472. <userDefined>false</userDefined>
  473. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  474. <isContainer>false</isContainer>
  475. <constraints>12</constraints>
  476. <tabIndex>0</tabIndex>
  477. <herited>false</herited>
  478. <bimUIObjectPK />
  479. </component>
  480. <component>
  481. <name>btnBatchPrintPreview</name>
  482. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnBatchPrintPreview].alias</alias>
  483. <userDefined>false</userDefined>
  484. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  485. <isContainer>false</isContainer>
  486. <constraints>13</constraints>
  487. <tabIndex>0</tabIndex>
  488. <herited>false</herited>
  489. <bimUIObjectPK />
  490. </component>
  491. <component>
  492. <name>separatorFW2</name>
  493. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW2].alias</alias>
  494. <userDefined>false</userDefined>
  495. <classType>javax.swing.JToolBar.Separator</classType>
  496. <isContainer>false</isContainer>
  497. <constraints>14</constraints>
  498. <tabIndex>0</tabIndex>
  499. <herited>false</herited>
  500. <bimUIObjectPK />
  501. <properties>
  502. <property>
  503. <name>visible</name>
  504. <type>boolean</type>
  505. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW2].properties.property[visible].value</value>
  506. <isMultiLan>false</isMultiLan>
  507. <userDefined>false</userDefined>
  508. </property>
  509. </properties>
  510. </component>
  511. <component>
  512. <name>btnCreateTo</name>
  513. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCreateTo].alias</alias>
  514. <userDefined>false</userDefined>
  515. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  516. <isContainer>false</isContainer>
  517. <constraints>15</constraints>
  518. <tabIndex>0</tabIndex>
  519. <herited>false</herited>
  520. <bimUIObjectPK />
  521. <properties>
  522. <property>
  523. <name>visible</name>
  524. <type>boolean</type>
  525. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCreateTo].properties.property[visible].value</value>
  526. <isMultiLan>false</isMultiLan>
  527. <userDefined>true</userDefined>
  528. </property>
  529. </properties>
  530. </component>
  531. <component>
  532. <name>btnCopyTo</name>
  533. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCopyTo].alias</alias>
  534. <userDefined>false</userDefined>
  535. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  536. <isContainer>false</isContainer>
  537. <constraints>16</constraints>
  538. <tabIndex>0</tabIndex>
  539. <herited>false</herited>
  540. <bimUIObjectPK />
  541. </component>
  542. <component>
  543. <name>btnQueryScheme</name>
  544. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnQueryScheme].alias</alias>
  545. <userDefined>false</userDefined>
  546. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  547. <isContainer>false</isContainer>
  548. <constraints>17</constraints>
  549. <tabIndex>0</tabIndex>
  550. <herited>false</herited>
  551. <bimUIObjectPK />
  552. </component>
  553. <component>
  554. <name>separatorFW3</name>
  555. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW3].alias</alias>
  556. <userDefined>false</userDefined>
  557. <classType>javax.swing.JToolBar.Separator</classType>
  558. <isContainer>false</isContainer>
  559. <constraints>18</constraints>
  560. <tabIndex>0</tabIndex>
  561. <herited>false</herited>
  562. <bimUIObjectPK />
  563. </component>
  564. <component>
  565. <name>btnTraceUp</name>
  566. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnTraceUp].alias</alias>
  567. <userDefined>false</userDefined>
  568. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  569. <isContainer>false</isContainer>
  570. <constraints>19</constraints>
  571. <tabIndex>0</tabIndex>
  572. <herited>false</herited>
  573. <bimUIObjectPK />
  574. <properties>
  575. <property>
  576. <name>visible</name>
  577. <type>boolean</type>
  578. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnTraceUp].properties.property[visible].value</value>
  579. <isMultiLan>false</isMultiLan>
  580. <userDefined>true</userDefined>
  581. </property>
  582. </properties>
  583. </component>
  584. <component>
  585. <name>btnTraceDown</name>
  586. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnTraceDown].alias</alias>
  587. <userDefined>false</userDefined>
  588. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  589. <isContainer>false</isContainer>
  590. <constraints>20</constraints>
  591. <tabIndex>0</tabIndex>
  592. <herited>false</herited>
  593. <bimUIObjectPK />
  594. <properties>
  595. <property>
  596. <name>visible</name>
  597. <type>boolean</type>
  598. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnTraceDown].properties.property[visible].value</value>
  599. <isMultiLan>false</isMultiLan>
  600. <userDefined>true</userDefined>
  601. </property>
  602. </properties>
  603. </component>
  604. <component>
  605. <name>btnWorkFlowG</name>
  606. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnWorkFlowG].alias</alias>
  607. <userDefined>false</userDefined>
  608. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  609. <isContainer>false</isContainer>
  610. <constraints>21</constraints>
  611. <tabIndex>0</tabIndex>
  612. <herited>false</herited>
  613. <bimUIObjectPK />
  614. </component>
  615. <component>
  616. <name>btnWorkFlowList</name>
  617. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnWorkFlowList].alias</alias>
  618. <userDefined>false</userDefined>
  619. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  620. <isContainer>false</isContainer>
  621. <constraints>22</constraints>
  622. <tabIndex>0</tabIndex>
  623. <herited>false</herited>
  624. <bimUIObjectPK />
  625. </component>
  626. <component>
  627. <name>btnSignature</name>
  628. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnSignature].alias</alias>
  629. <userDefined>false</userDefined>
  630. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  631. <isContainer>false</isContainer>
  632. <constraints>23</constraints>
  633. <tabIndex>0</tabIndex>
  634. <herited>false</herited>
  635. <bimUIObjectPK />
  636. </component>
  637. <component>
  638. <name>btnViewSignature</name>
  639. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnViewSignature].alias</alias>
  640. <userDefined>false</userDefined>
  641. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  642. <isContainer>false</isContainer>
  643. <constraints>24</constraints>
  644. <tabIndex>0</tabIndex>
  645. <herited>false</herited>
  646. <bimUIObjectPK />
  647. </component>
  648. <component>
  649. <name>separatorFW4</name>
  650. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW4].alias</alias>
  651. <userDefined>false</userDefined>
  652. <classType>javax.swing.JToolBar.Separator</classType>
  653. <isContainer>false</isContainer>
  654. <constraints>25</constraints>
  655. <tabIndex>0</tabIndex>
  656. <herited>false</herited>
  657. <bimUIObjectPK />
  658. </component>
  659. <component>
  660. <name>btnVoucher</name>
  661. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnVoucher].alias</alias>
  662. <userDefined>false</userDefined>
  663. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  664. <isContainer>false</isContainer>
  665. <constraints>26</constraints>
  666. <tabIndex>0</tabIndex>
  667. <herited>false</herited>
  668. <bimUIObjectPK />
  669. <properties>
  670. <property>
  671. <name>visible</name>
  672. <type>boolean</type>
  673. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnVoucher].properties.property[visible].value</value>
  674. <isMultiLan>false</isMultiLan>
  675. <userDefined>true</userDefined>
  676. </property>
  677. </properties>
  678. </component>
  679. <component>
  680. <name>btnDelVoucher</name>
  681. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnDelVoucher].alias</alias>
  682. <userDefined>false</userDefined>
  683. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  684. <isContainer>false</isContainer>
  685. <constraints>27</constraints>
  686. <tabIndex>0</tabIndex>
  687. <herited>false</herited>
  688. <bimUIObjectPK />
  689. <properties>
  690. <property>
  691. <name>visible</name>
  692. <type>boolean</type>
  693. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnDelVoucher].properties.property[visible].value</value>
  694. <isMultiLan>false</isMultiLan>
  695. <userDefined>true</userDefined>
  696. </property>
  697. </properties>
  698. </component>
  699. <component>
  700. <name>btnMultiapprove</name>
  701. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnMultiapprove].alias</alias>
  702. <userDefined>false</userDefined>
  703. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  704. <isContainer>false</isContainer>
  705. <constraints>28</constraints>
  706. <tabIndex>0</tabIndex>
  707. <herited>false</herited>
  708. <bimUIObjectPK />
  709. </component>
  710. <component>
  711. <name>btnNextPerson</name>
  712. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnNextPerson].alias</alias>
  713. <userDefined>false</userDefined>
  714. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  715. <isContainer>false</isContainer>
  716. <constraints>29</constraints>
  717. <tabIndex>0</tabIndex>
  718. <herited>false</herited>
  719. <bimUIObjectPK />
  720. </component>
  721. <component>
  722. <name>btnAuditResult</name>
  723. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAuditResult].alias</alias>
  724. <userDefined>false</userDefined>
  725. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  726. <isContainer>false</isContainer>
  727. <constraints>30</constraints>
  728. <tabIndex>0</tabIndex>
  729. <herited>false</herited>
  730. <bimUIObjectPK />
  731. <properties>
  732. <property>
  733. <name>visible</name>
  734. <type>boolean</type>
  735. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAuditResult].properties.property[visible].value</value>
  736. <isMultiLan>false</isMultiLan>
  737. <userDefined>true</userDefined>
  738. </property>
  739. </properties>
  740. </component>
  741. <component>
  742. <name>btnCancel</name>
  743. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCancel].alias</alias>
  744. <userDefined>false</userDefined>
  745. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  746. <isContainer>false</isContainer>
  747. <constraints>31</constraints>
  748. <tabIndex>0</tabIndex>
  749. <herited>false</herited>
  750. <bimUIObjectPK />
  751. </component>
  752. <component>
  753. <name>btnCancelCancel</name>
  754. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCancelCancel].alias</alias>
  755. <userDefined>false</userDefined>
  756. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  757. <isContainer>false</isContainer>
  758. <constraints>32</constraints>
  759. <tabIndex>0</tabIndex>
  760. <herited>false</herited>
  761. <bimUIObjectPK />
  762. </component>
  763. <component>
  764. <name>btnWFViewdoProccess</name>
  765. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnWFViewdoProccess].alias</alias>
  766. <userDefined>false</userDefined>
  767. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  768. <isContainer>false</isContainer>
  769. <constraints>33</constraints>
  770. <tabIndex>0</tabIndex>
  771. <herited>false</herited>
  772. <bimUIObjectPK />
  773. </component>
  774. <component>
  775. <name>btnAudit</name>
  776. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].alias</alias>
  777. <userDefined>false</userDefined>
  778. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  779. <isContainer>false</isContainer>
  780. <constraints>34</constraints>
  781. <tabIndex>0</tabIndex>
  782. <herited>false</herited>
  783. <bimUIObjectPK />
  784. <layoutInfo>
  785. <name />
  786. <type>XYLayout</type>
  787. <value />
  788. </layoutInfo>
  789. <properties>
  790. <property>
  791. <name>text</name>
  792. <type>java.lang.String</type>
  793. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].properties.property[text].value</value>
  794. <isMultiLan>true</isMultiLan>
  795. <userDefined>false</userDefined>
  796. </property>
  797. <property>
  798. <name>icon</name>
  799. <type>javax.swing.Icon</type>
  800. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].properties.property[icon].value</value>
  801. <isMultiLan>false</isMultiLan>
  802. <userDefined>false</userDefined>
  803. </property>
  804. <property>
  805. <name>action</name>
  806. <type>javax.swing.Action</type>
  807. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].properties.property[action].value</value>
  808. <isMultiLan>false</isMultiLan>
  809. <userDefined>false</userDefined>
  810. </property>
  811. <property>
  812. <name>toolTipText</name>
  813. <type>java.lang.String</type>
  814. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].properties.property[toolTipText].value</value>
  815. <isMultiLan>true</isMultiLan>
  816. <userDefined>false</userDefined>
  817. </property>
  818. </properties>
  819. <parent>
  820. <key name="name" value="CoreUI_toolbar" />
  821. </parent>
  822. </component>
  823. <component>
  824. <name>btnUnaudit</name>
  825. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].alias</alias>
  826. <userDefined>false</userDefined>
  827. <classType>com.kingdee.bos.ctrl.swing.KDWorkButton</classType>
  828. <isContainer>false</isContainer>
  829. <constraints>35</constraints>
  830. <tabIndex>0</tabIndex>
  831. <herited>false</herited>
  832. <bimUIObjectPK />
  833. <layoutInfo>
  834. <name />
  835. <type>XYLayout</type>
  836. <value />
  837. </layoutInfo>
  838. <properties>
  839. <property>
  840. <name>text</name>
  841. <type>java.lang.String</type>
  842. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[text].value</value>
  843. <isMultiLan>true</isMultiLan>
  844. <userDefined>false</userDefined>
  845. </property>
  846. <property>
  847. <name>icon</name>
  848. <type>javax.swing.Icon</type>
  849. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[icon].value</value>
  850. <isMultiLan>false</isMultiLan>
  851. <userDefined>false</userDefined>
  852. </property>
  853. <property>
  854. <name>toolTipText</name>
  855. <type>java.lang.String</type>
  856. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[toolTipText].value</value>
  857. <isMultiLan>true</isMultiLan>
  858. <userDefined>false</userDefined>
  859. </property>
  860. <property>
  861. <name>action</name>
  862. <type>javax.swing.Action</type>
  863. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[action].value</value>
  864. <isMultiLan>false</isMultiLan>
  865. <userDefined>false</userDefined>
  866. </property>
  867. <property>
  868. <name>visible</name>
  869. <type>boolean</type>
  870. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[visible].value</value>
  871. <isMultiLan>false</isMultiLan>
  872. <userDefined>false</userDefined>
  873. </property>
  874. <property>
  875. <name>mnemonic</name>
  876. <type>int</type>
  877. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[mnemonic].value</value>
  878. <isMultiLan>false</isMultiLan>
  879. <userDefined>true</userDefined>
  880. </property>
  881. </properties>
  882. <parent>
  883. <key name="name" value="CoreUI_toolbar" />
  884. </parent>
  885. </component>
  886. <component>
  887. <name>menuItemCreateTo</name>
  888. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCreateTo].alias</alias>
  889. <userDefined>false</userDefined>
  890. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  891. <isContainer>false</isContainer>
  892. <constraints />
  893. <tabIndex>0</tabIndex>
  894. <herited>false</herited>
  895. <bimUIObjectPK />
  896. <properties>
  897. <property>
  898. <name>visible</name>
  899. <type>boolean</type>
  900. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCreateTo].properties.property[visible].value</value>
  901. <isMultiLan>false</isMultiLan>
  902. <userDefined>true</userDefined>
  903. </property>
  904. </properties>
  905. </component>
  906. <component>
  907. <name>menuItemCopyTo</name>
  908. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCopyTo].alias</alias>
  909. <userDefined>false</userDefined>
  910. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  911. <isContainer>false</isContainer>
  912. <constraints />
  913. <tabIndex>0</tabIndex>
  914. <herited>false</herited>
  915. <bimUIObjectPK />
  916. <properties>
  917. <property>
  918. <name>visible</name>
  919. <type>boolean</type>
  920. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCopyTo].properties.property[visible].value</value>
  921. <isMultiLan>false</isMultiLan>
  922. <userDefined>true</userDefined>
  923. </property>
  924. </properties>
  925. </component>
  926. <component>
  927. <name>kDSeparator4</name>
  928. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[kDSeparator4].alias</alias>
  929. <userDefined>false</userDefined>
  930. <classType>com.kingdee.bos.ctrl.swing.KDSeparator</classType>
  931. <isContainer>false</isContainer>
  932. <constraints />
  933. <tabIndex>0</tabIndex>
  934. <herited>false</herited>
  935. <bimUIObjectPK />
  936. <properties>
  937. <property>
  938. <name>visible</name>
  939. <type>boolean</type>
  940. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[kDSeparator4].properties.property[visible].value</value>
  941. <isMultiLan>false</isMultiLan>
  942. <userDefined>false</userDefined>
  943. </property>
  944. </properties>
  945. </component>
  946. <component>
  947. <name>menuItemTraceUp</name>
  948. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemTraceUp].alias</alias>
  949. <userDefined>false</userDefined>
  950. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  951. <isContainer>false</isContainer>
  952. <constraints />
  953. <tabIndex>0</tabIndex>
  954. <herited>false</herited>
  955. <bimUIObjectPK />
  956. <properties>
  957. <property>
  958. <name>visible</name>
  959. <type>boolean</type>
  960. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemTraceUp].properties.property[visible].value</value>
  961. <isMultiLan>false</isMultiLan>
  962. <userDefined>true</userDefined>
  963. </property>
  964. </properties>
  965. </component>
  966. <component>
  967. <name>menuItemTraceDown</name>
  968. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemTraceDown].alias</alias>
  969. <userDefined>false</userDefined>
  970. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  971. <isContainer>false</isContainer>
  972. <constraints />
  973. <tabIndex>0</tabIndex>
  974. <herited>false</herited>
  975. <bimUIObjectPK />
  976. <properties>
  977. <property>
  978. <name>visible</name>
  979. <type>boolean</type>
  980. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemTraceDown].properties.property[visible].value</value>
  981. <isMultiLan>false</isMultiLan>
  982. <userDefined>true</userDefined>
  983. </property>
  984. </properties>
  985. </component>
  986. <component>
  987. <name>kDSeparator6</name>
  988. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[kDSeparator6].alias</alias>
  989. <userDefined>false</userDefined>
  990. <classType>com.kingdee.bos.ctrl.swing.KDSeparator</classType>
  991. <isContainer>false</isContainer>
  992. <constraints />
  993. <tabIndex>0</tabIndex>
  994. <herited>false</herited>
  995. <bimUIObjectPK />
  996. <properties>
  997. <property>
  998. <name>visible</name>
  999. <type>boolean</type>
  1000. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[kDSeparator6].properties.property[visible].value</value>
  1001. <isMultiLan>false</isMultiLan>
  1002. <userDefined>false</userDefined>
  1003. </property>
  1004. </properties>
  1005. </component>
  1006. <component>
  1007. <name>menuItemCancelCancel</name>
  1008. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCancelCancel].alias</alias>
  1009. <userDefined>false</userDefined>
  1010. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  1011. <isContainer>false</isContainer>
  1012. <constraints>0</constraints>
  1013. <tabIndex>0</tabIndex>
  1014. <herited>false</herited>
  1015. <bimUIObjectPK />
  1016. </component>
  1017. <component>
  1018. <name>menuItemCancel</name>
  1019. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCancel].alias</alias>
  1020. <userDefined>false</userDefined>
  1021. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  1022. <isContainer>false</isContainer>
  1023. <constraints>1</constraints>
  1024. <tabIndex>0</tabIndex>
  1025. <herited>false</herited>
  1026. <bimUIObjectPK />
  1027. </component>
  1028. <component>
  1029. <name>menuItemVoucher</name>
  1030. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemVoucher].alias</alias>
  1031. <userDefined>false</userDefined>
  1032. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  1033. <isContainer>false</isContainer>
  1034. <constraints>2</constraints>
  1035. <tabIndex>0</tabIndex>
  1036. <herited>false</herited>
  1037. <bimUIObjectPK />
  1038. <properties>
  1039. <property>
  1040. <name>visible</name>
  1041. <type>boolean</type>
  1042. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemVoucher].properties.property[visible].value</value>
  1043. <isMultiLan>false</isMultiLan>
  1044. <userDefined>true</userDefined>
  1045. </property>
  1046. </properties>
  1047. </component>
  1048. <component>
  1049. <name>menuItemDelVoucher</name>
  1050. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemDelVoucher].alias</alias>
  1051. <userDefined>false</userDefined>
  1052. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  1053. <isContainer>false</isContainer>
  1054. <constraints>3</constraints>
  1055. <tabIndex>0</tabIndex>
  1056. <herited>false</herited>
  1057. <bimUIObjectPK />
  1058. <properties>
  1059. <property>
  1060. <name>visible</name>
  1061. <type>boolean</type>
  1062. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemDelVoucher].properties.property[visible].value</value>
  1063. <isMultiLan>false</isMultiLan>
  1064. <userDefined>true</userDefined>
  1065. </property>
  1066. </properties>
  1067. </component>
  1068. <component>
  1069. <name>menuItemAudit</name>
  1070. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].alias</alias>
  1071. <userDefined>false</userDefined>
  1072. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  1073. <isContainer>false</isContainer>
  1074. <constraints>4</constraints>
  1075. <tabIndex>0</tabIndex>
  1076. <herited>false</herited>
  1077. <bimUIObjectPK />
  1078. <layoutInfo>
  1079. <name />
  1080. <type>XYLayout</type>
  1081. <value />
  1082. </layoutInfo>
  1083. <properties>
  1084. <property>
  1085. <name>text</name>
  1086. <type>java.lang.String</type>
  1087. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[text].value</value>
  1088. <isMultiLan>true</isMultiLan>
  1089. <userDefined>false</userDefined>
  1090. </property>
  1091. <property>
  1092. <name>icon</name>
  1093. <type>javax.swing.Icon</type>
  1094. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[icon].value</value>
  1095. <isMultiLan>false</isMultiLan>
  1096. <userDefined>false</userDefined>
  1097. </property>
  1098. <property>
  1099. <name>toolTipText</name>
  1100. <type>java.lang.String</type>
  1101. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[toolTipText].value</value>
  1102. <isMultiLan>true</isMultiLan>
  1103. <userDefined>false</userDefined>
  1104. </property>
  1105. <property>
  1106. <name>action</name>
  1107. <type>javax.swing.Action</type>
  1108. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[action].value</value>
  1109. <isMultiLan>false</isMultiLan>
  1110. <userDefined>false</userDefined>
  1111. </property>
  1112. <property>
  1113. <name>mnemonic</name>
  1114. <type>int</type>
  1115. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[mnemonic].value</value>
  1116. <isMultiLan>false</isMultiLan>
  1117. <userDefined>false</userDefined>
  1118. </property>
  1119. </properties>
  1120. <parent>
  1121. <key name="name" value="menuBiz" />
  1122. </parent>
  1123. </component>
  1124. <component>
  1125. <name>menuItemUnaudit</name>
  1126. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].alias</alias>
  1127. <userDefined>false</userDefined>
  1128. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  1129. <isContainer>false</isContainer>
  1130. <constraints>5</constraints>
  1131. <tabIndex>0</tabIndex>
  1132. <herited>false</herited>
  1133. <bimUIObjectPK />
  1134. <layoutInfo>
  1135. <name />
  1136. <type>XYLayout</type>
  1137. <value />
  1138. </layoutInfo>
  1139. <properties>
  1140. <property>
  1141. <name>text</name>
  1142. <type>java.lang.String</type>
  1143. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[text].value</value>
  1144. <isMultiLan>true</isMultiLan>
  1145. <userDefined>false</userDefined>
  1146. </property>
  1147. <property>
  1148. <name>action</name>
  1149. <type>javax.swing.Action</type>
  1150. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[action].value</value>
  1151. <isMultiLan>false</isMultiLan>
  1152. <userDefined>false</userDefined>
  1153. </property>
  1154. <property>
  1155. <name>mnemonic</name>
  1156. <type>int</type>
  1157. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[mnemonic].value</value>
  1158. <isMultiLan>false</isMultiLan>
  1159. <userDefined>false</userDefined>
  1160. </property>
  1161. <property>
  1162. <name>toolTipText</name>
  1163. <type>java.lang.String</type>
  1164. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[toolTipText].value</value>
  1165. <isMultiLan>true</isMultiLan>
  1166. <userDefined>false</userDefined>
  1167. </property>
  1168. <property>
  1169. <name>visible</name>
  1170. <type>boolean</type>
  1171. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[visible].value</value>
  1172. <isMultiLan>false</isMultiLan>
  1173. <userDefined>false</userDefined>
  1174. </property>
  1175. <property>
  1176. <name>icon</name>
  1177. <type>javax.swing.Icon</type>
  1178. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[icon].value</value>
  1179. <isMultiLan>false</isMultiLan>
  1180. <userDefined>true</userDefined>
  1181. </property>
  1182. </properties>
  1183. <parent>
  1184. <key name="name" value="menuBiz" />
  1185. </parent>
  1186. </component>
  1187. <component>
  1188. <name>menuItemViewDoProccess</name>
  1189. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemViewDoProccess].alias</alias>
  1190. <userDefined>false</userDefined>
  1191. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  1192. <isContainer>false</isContainer>
  1193. <constraints />
  1194. <tabIndex>0</tabIndex>
  1195. <herited>false</herited>
  1196. <bimUIObjectPK />
  1197. <properties>
  1198. <property>
  1199. <name>visible</name>
  1200. <type>boolean</type>
  1201. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemViewDoProccess].properties.property[visible].value</value>
  1202. <isMultiLan>false</isMultiLan>
  1203. <userDefined>false</userDefined>
  1204. </property>
  1205. </properties>
  1206. </component>
  1207. <component>
  1208. <name>menuItemAuditResult</name>
  1209. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAuditResult].alias</alias>
  1210. <userDefined>false</userDefined>
  1211. <classType>com.kingdee.bos.ctrl.swing.KDMenuItem</classType>
  1212. <isContainer>false</isContainer>
  1213. <constraints />
  1214. <tabIndex>0</tabIndex>
  1215. <herited>false</herited>
  1216. <bimUIObjectPK />
  1217. <properties>
  1218. <property>
  1219. <name>visible</name>
  1220. <type>boolean</type>
  1221. <value>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAuditResult].properties.property[visible].value</value>
  1222. <isMultiLan>false</isMultiLan>
  1223. <userDefined>true</userDefined>
  1224. </property>
  1225. </properties>
  1226. </component>
  1227. </components>
  1228. <dataObjects>
  1229. <dataObject>
  1230. <name>mainQuery</name>
  1231. <type>com.kingdee.eas.custom.bill.salary.app.SalaryBagQuery</type>
  1232. <objectType>jqye</objectType>
  1233. <herited>true</herited>
  1234. <userDefined>false</userDefined>
  1235. </dataObject>
  1236. </dataObjects>
  1237. <actions>
  1238. <action>
  1239. <instanceName>actionRemove</instanceName>
  1240. <className>ActionRemove</className>
  1241. <name>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionRemove].name</name>
  1242. <enabled>true</enabled>
  1243. <actionPerformed />
  1244. <beforeActionPerformed />
  1245. <afterActionPerformed />
  1246. <finallyActionPerformed />
  1247. <actionCommandKey />
  1248. <acceleratorKey>ctrl D</acceleratorKey>
  1249. <mnemonicKey />
  1250. <smallIcon>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionRemove].smallIcon</smallIcon>
  1251. <shortDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionRemove].shortDescription</shortDescription>
  1252. <longDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionRemove].longDescription</longDescription>
  1253. <isBindWorkFlow>true</isBindWorkFlow>
  1254. <herited>true</herited>
  1255. <daemonRun>false</daemonRun>
  1256. <actionExtendProperty />
  1257. <services>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
  1258. &lt;root&gt;&lt;service class="com.kingdee.eas.framework.client.service.PermissionService" /&gt;&lt;service class="com.kingdee.eas.framework.client.service.NetFunctionService" /&gt;&lt;service class="com.kingdee.eas.framework.client.service.UserMonitorService" /&gt;&lt;/root&gt;</services>
  1259. <userDefined>true</userDefined>
  1260. <userDefinedLogic />
  1261. <oprtIntent />
  1262. <nextUI />
  1263. <isUIPNavigator>false</isUIPNavigator>
  1264. <isBatchAction>false</isBatchAction>
  1265. <isEntryAction>false</isEntryAction>
  1266. <batchMethodName />
  1267. </action>
  1268. <action>
  1269. <instanceName>actionAudit</instanceName>
  1270. <className>ActionAudit</className>
  1271. <name>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionAudit].name</name>
  1272. <enabled>true</enabled>
  1273. <actionPerformed />
  1274. <beforeActionPerformed />
  1275. <afterActionPerformed />
  1276. <finallyActionPerformed />
  1277. <actionCommandKey />
  1278. <acceleratorKey>ctrl A</acceleratorKey>
  1279. <mnemonicKey />
  1280. <smallIcon>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionAudit].smallIcon</smallIcon>
  1281. <shortDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionAudit].shortDescription</shortDescription>
  1282. <longDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionAudit].longDescription</longDescription>
  1283. <isBindWorkFlow>false</isBindWorkFlow>
  1284. <herited>true</herited>
  1285. <daemonRun>false</daemonRun>
  1286. <actionExtendProperty />
  1287. <services>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
  1288. &lt;root&gt;&lt;service class="com.kingdee.eas.framework.client.service.PermissionService" /&gt;&lt;/root&gt;</services>
  1289. <userDefined>true</userDefined>
  1290. <userDefinedLogic />
  1291. <oprtIntent />
  1292. <nextUI />
  1293. <isUIPNavigator>false</isUIPNavigator>
  1294. <isBatchAction>false</isBatchAction>
  1295. <isEntryAction>false</isEntryAction>
  1296. <batchMethodName />
  1297. </action>
  1298. <action>
  1299. <instanceName>actionUnaudit</instanceName>
  1300. <className>ActionUnaudit</className>
  1301. <name>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionUnaudit].name</name>
  1302. <enabled>true</enabled>
  1303. <actionPerformed />
  1304. <beforeActionPerformed />
  1305. <afterActionPerformed />
  1306. <finallyActionPerformed />
  1307. <actionCommandKey />
  1308. <acceleratorKey>ctrl U</acceleratorKey>
  1309. <mnemonicKey />
  1310. <smallIcon>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionUnaudit].smallIcon</smallIcon>
  1311. <shortDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionUnaudit].shortDescription</shortDescription>
  1312. <longDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionUnaudit].longDescription</longDescription>
  1313. <isBindWorkFlow>false</isBindWorkFlow>
  1314. <herited>true</herited>
  1315. <daemonRun>false</daemonRun>
  1316. <actionExtendProperty />
  1317. <services>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
  1318. &lt;root&gt;&lt;service class="com.kingdee.eas.framework.client.service.PermissionService" /&gt;&lt;/root&gt;</services>
  1319. <userDefined>true</userDefined>
  1320. <userDefinedLogic />
  1321. <oprtIntent />
  1322. <nextUI />
  1323. <isUIPNavigator>false</isUIPNavigator>
  1324. <isBatchAction>false</isBatchAction>
  1325. <isEntryAction>false</isEntryAction>
  1326. <batchMethodName />
  1327. </action>
  1328. <action>
  1329. <instanceName>actionTDPrint</instanceName>
  1330. <className>ActionTDPrint</className>
  1331. <name>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrint].name</name>
  1332. <enabled>true</enabled>
  1333. <actionPerformed>checkSelected();
  1334. ArrayList idList =super.getSelectedIdValues();
  1335. if (idList == null || idList.size() == 0 || getTDQueryPK() == null || getTDFileName() == null)
  1336. return;
  1337. com.kingdee.bos.ctrl.kdf.data.impl.BOSQueryDelegate data = new com.kingdee.eas.framework.util.CommonDataProvider(idList,getTDQueryPK());
  1338. com.kingdee.bos.ctrl.report.forapp.kdnote.client.KDNoteHelper appHlp = new com.kingdee.bos.ctrl.report.forapp.kdnote.client.KDNoteHelper();
  1339. appHlp.print(getTDFileName(), data, javax.swing.SwingUtilities.getWindowAncestor(this));</actionPerformed>
  1340. <beforeActionPerformed />
  1341. <afterActionPerformed />
  1342. <finallyActionPerformed />
  1343. <actionCommandKey />
  1344. <acceleratorKey />
  1345. <mnemonicKey />
  1346. <smallIcon>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrint].smallIcon</smallIcon>
  1347. <shortDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrint].shortDescription</shortDescription>
  1348. <longDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrint].longDescription</longDescription>
  1349. <isBindWorkFlow>false</isBindWorkFlow>
  1350. <herited>false</herited>
  1351. <daemonRun>false</daemonRun>
  1352. <actionExtendProperty />
  1353. <services>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
  1354. &lt;root&gt;&lt;service class="com.kingdee.eas.framework.client.service.PermissionService" /&gt;&lt;/root&gt;</services>
  1355. <userDefined>true</userDefined>
  1356. <userDefinedLogic />
  1357. <oprtIntent />
  1358. <nextUI />
  1359. <isUIPNavigator>false</isUIPNavigator>
  1360. <isBatchAction>false</isBatchAction>
  1361. <isEntryAction>false</isEntryAction>
  1362. <batchMethodName />
  1363. </action>
  1364. <action>
  1365. <instanceName>actionTDPrintPreview</instanceName>
  1366. <className>ActionTDPrintPreview</className>
  1367. <name>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrintPreview].name</name>
  1368. <enabled>true</enabled>
  1369. <actionPerformed>checkSelected();
  1370. ArrayList idList =super.getSelectedIdValues();
  1371. if (idList == null || idList.size() == 0 || getTDQueryPK() == null || getTDFileName() == null)
  1372. return;
  1373. com.kingdee.bos.ctrl.kdf.data.impl.BOSQueryDelegate data = new com.kingdee.eas.framework.util.CommonDataProvider(idList,getTDQueryPK());
  1374. com.kingdee.bos.ctrl.report.forapp.kdnote.client.KDNoteHelper appHlp = new com.kingdee.bos.ctrl.report.forapp.kdnote.client.KDNoteHelper();
  1375. appHlp.printPreview(getTDFileName(), data, javax.swing.SwingUtilities.getWindowAncestor(this));</actionPerformed>
  1376. <beforeActionPerformed />
  1377. <afterActionPerformed />
  1378. <finallyActionPerformed />
  1379. <actionCommandKey />
  1380. <acceleratorKey />
  1381. <mnemonicKey />
  1382. <smallIcon>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrintPreview].smallIcon</smallIcon>
  1383. <shortDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrintPreview].shortDescription</shortDescription>
  1384. <longDescription>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrintPreview].longDescription</longDescription>
  1385. <isBindWorkFlow>false</isBindWorkFlow>
  1386. <herited>false</herited>
  1387. <daemonRun>false</daemonRun>
  1388. <actionExtendProperty />
  1389. <services>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
  1390. &lt;root&gt;&lt;service class="com.kingdee.eas.framework.client.service.PermissionService" /&gt;&lt;/root&gt;</services>
  1391. <userDefined>true</userDefined>
  1392. <userDefinedLogic />
  1393. <oprtIntent />
  1394. <nextUI />
  1395. <isUIPNavigator>false</isUIPNavigator>
  1396. <isBatchAction>false</isBatchAction>
  1397. <isEntryAction>false</isEntryAction>
  1398. <batchMethodName />
  1399. </action>
  1400. </actions>
  1401. <statuses>
  1402. <status>
  1403. <id />
  1404. <name>VIEW</name>
  1405. <alias>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].statuses.status[VIEW].alias</alias>
  1406. <default>false</default>
  1407. <description>uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].statuses.status[VIEW].description</description>
  1408. <herited>false</herited>
  1409. <userDefined>true</userDefined>
  1410. </status>
  1411. </statuses>
  1412. <resource>
  1413. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionAudit].longDescription">
  1414. <lang locale="en_US" value="null" />
  1415. <lang locale="zh_CN" value="审批" />
  1416. <lang locale="zh_HK" value="審批" />
  1417. <lang locale="zh_TW" value="審批" />
  1418. </rs>
  1419. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionAudit].name">
  1420. <lang locale="en_US" value="null" />
  1421. <lang locale="zh_CN" value="null" />
  1422. <lang locale="zh_HK" value="null" />
  1423. <lang locale="zh_TW" value="null" />
  1424. </rs>
  1425. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionAudit].shortDescription">
  1426. <lang locale="en_US" value="null" />
  1427. <lang locale="zh_CN" value="审批" />
  1428. <lang locale="zh_HK" value="審批" />
  1429. <lang locale="zh_TW" value="審批" />
  1430. </rs>
  1431. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionAudit].smallIcon">
  1432. <lang locale="en_US" value="null" />
  1433. <lang locale="zh_CN" value="null" />
  1434. <lang locale="zh_HK" value="null" />
  1435. <lang locale="zh_TW" value="null" />
  1436. </rs>
  1437. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionRemove].longDescription">
  1438. <lang locale="en_US" value="null" />
  1439. <lang locale="zh_CN" value="删除" />
  1440. <lang locale="zh_HK" value="刪除" />
  1441. <lang locale="zh_TW" value="刪除" />
  1442. </rs>
  1443. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionRemove].name">
  1444. <lang locale="en_US" value="null" />
  1445. <lang locale="zh_CN" value="删除" />
  1446. <lang locale="zh_HK" value="刪除" />
  1447. <lang locale="zh_TW" value="刪除" />
  1448. </rs>
  1449. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionRemove].shortDescription">
  1450. <lang locale="en_US" value="null" />
  1451. <lang locale="zh_CN" value="删除" />
  1452. <lang locale="zh_HK" value="刪除" />
  1453. <lang locale="zh_TW" value="刪除" />
  1454. </rs>
  1455. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionRemove].smallIcon">
  1456. <lang locale="en_US" value="null" />
  1457. <lang locale="zh_CN" value="null" />
  1458. <lang locale="zh_HK" value="null" />
  1459. <lang locale="zh_TW" value="null" />
  1460. </rs>
  1461. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrintPreview].longDescription">
  1462. <lang locale="en_US" value="null" />
  1463. <lang locale="zh_CN" value="null" />
  1464. <lang locale="zh_HK" value="null" />
  1465. <lang locale="zh_TW" value="null" />
  1466. </rs>
  1467. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrintPreview].name">
  1468. <lang locale="en_US" value="null" />
  1469. <lang locale="zh_CN" value="null" />
  1470. <lang locale="zh_HK" value="null" />
  1471. <lang locale="zh_TW" value="null" />
  1472. </rs>
  1473. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrintPreview].shortDescription">
  1474. <lang locale="en_US" value="null" />
  1475. <lang locale="zh_CN" value="null" />
  1476. <lang locale="zh_HK" value="null" />
  1477. <lang locale="zh_TW" value="null" />
  1478. </rs>
  1479. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrintPreview].smallIcon">
  1480. <lang locale="en_US" value="null" />
  1481. <lang locale="zh_CN" value="null" />
  1482. <lang locale="zh_HK" value="null" />
  1483. <lang locale="zh_TW" value="null" />
  1484. </rs>
  1485. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrint].longDescription">
  1486. <lang locale="en_US" value="null" />
  1487. <lang locale="zh_CN" value="null" />
  1488. <lang locale="zh_HK" value="null" />
  1489. <lang locale="zh_TW" value="null" />
  1490. </rs>
  1491. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrint].name">
  1492. <lang locale="en_US" value="null" />
  1493. <lang locale="zh_CN" value="null" />
  1494. <lang locale="zh_HK" value="null" />
  1495. <lang locale="zh_TW" value="null" />
  1496. </rs>
  1497. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrint].shortDescription">
  1498. <lang locale="en_US" value="null" />
  1499. <lang locale="zh_CN" value="null" />
  1500. <lang locale="zh_HK" value="null" />
  1501. <lang locale="zh_TW" value="null" />
  1502. </rs>
  1503. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionTDPrint].smallIcon">
  1504. <lang locale="en_US" value="null" />
  1505. <lang locale="zh_CN" value="null" />
  1506. <lang locale="zh_HK" value="null" />
  1507. <lang locale="zh_TW" value="null" />
  1508. </rs>
  1509. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionUnaudit].longDescription">
  1510. <lang locale="en_US" value="null" />
  1511. <lang locale="zh_CN" value="反审批" />
  1512. <lang locale="zh_HK" value="反審批" />
  1513. <lang locale="zh_TW" value="反審批" />
  1514. </rs>
  1515. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionUnaudit].name">
  1516. <lang locale="en_US" value="null" />
  1517. <lang locale="zh_CN" value="null" />
  1518. <lang locale="zh_HK" value="null" />
  1519. <lang locale="zh_TW" value="null" />
  1520. </rs>
  1521. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionUnaudit].shortDescription">
  1522. <lang locale="en_US" value="null" />
  1523. <lang locale="zh_CN" value="反审批" />
  1524. <lang locale="zh_HK" value="反審批" />
  1525. <lang locale="zh_TW" value="反審批" />
  1526. </rs>
  1527. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].actions.action[actionUnaudit].smallIcon">
  1528. <lang locale="en_US" value="null" />
  1529. <lang locale="zh_CN" value="null" />
  1530. <lang locale="zh_HK" value="null" />
  1531. <lang locale="zh_TW" value="null" />
  1532. </rs>
  1533. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].alias">
  1534. <lang locale="en_US" value="null" />
  1535. <lang locale="zh_CN" value="员工工资包" />
  1536. <lang locale="zh_HK" value="員工工資包" />
  1537. <lang locale="zh_TW" value="員工工資包" />
  1538. </rs>
  1539. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[CoreUI].alias">
  1540. <lang locale="en_US" value="null" />
  1541. <lang locale="zh_CN" value="null" />
  1542. <lang locale="zh_HK" value="null" />
  1543. <lang locale="zh_TW" value="null" />
  1544. </rs>
  1545. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAddNew].alias">
  1546. <lang locale="en_US" value="null" />
  1547. <lang locale="zh_CN" value="null" />
  1548. <lang locale="zh_HK" value="null" />
  1549. <lang locale="zh_TW" value="null" />
  1550. </rs>
  1551. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAttachment].alias">
  1552. <lang locale="en_US" value="null" />
  1553. <lang locale="zh_CN" value="null" />
  1554. <lang locale="zh_HK" value="null" />
  1555. <lang locale="zh_TW" value="null" />
  1556. </rs>
  1557. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAuditResult].alias">
  1558. <lang locale="en_US" value="null" />
  1559. <lang locale="zh_CN" value="null" />
  1560. <lang locale="zh_HK" value="null" />
  1561. <lang locale="zh_TW" value="null" />
  1562. </rs>
  1563. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAuditResult].properties.property[visible].value">
  1564. <lang locale="en_US" value="false" />
  1565. <lang locale="zh_CN" value="false" />
  1566. <lang locale="zh_HK" value="false" />
  1567. <lang locale="zh_TW" value="false" />
  1568. </rs>
  1569. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].alias">
  1570. <lang locale="en_US" value="null" />
  1571. <lang locale="zh_CN" value="null" />
  1572. <lang locale="zh_HK" value="null" />
  1573. <lang locale="zh_TW" value="null" />
  1574. </rs>
  1575. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].properties.property[action].value">
  1576. <lang locale="en_US" value="actionAudit" />
  1577. <lang locale="zh_CN" value="actionAudit" />
  1578. <lang locale="zh_HK" value="actionAudit" />
  1579. <lang locale="zh_TW" value="actionAudit" />
  1580. </rs>
  1581. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].properties.property[icon].value">
  1582. <lang locale="en_US" value="imgTbtn_audit" />
  1583. <lang locale="zh_CN" value="imgTbtn_audit" />
  1584. <lang locale="zh_HK" value="imgTbtn_audit" />
  1585. <lang locale="zh_TW" value="imgTbtn_audit" />
  1586. </rs>
  1587. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].properties.property[text].value">
  1588. <lang locale="en_US" value="null" />
  1589. <lang locale="zh_CN" value="审批" />
  1590. <lang locale="zh_HK" value="審批" />
  1591. <lang locale="zh_TW" value="審批" />
  1592. </rs>
  1593. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnAudit].properties.property[toolTipText].value">
  1594. <lang locale="en_US" value="null" />
  1595. <lang locale="zh_CN" value="审批" />
  1596. <lang locale="zh_HK" value="審批" />
  1597. <lang locale="zh_TW" value="審批" />
  1598. </rs>
  1599. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnBatchPrintPreview].alias">
  1600. <lang locale="en_US" value="null" />
  1601. <lang locale="zh_CN" value="null" />
  1602. <lang locale="zh_HK" value="null" />
  1603. <lang locale="zh_TW" value="null" />
  1604. </rs>
  1605. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnBatchPrint].alias">
  1606. <lang locale="en_US" value="null" />
  1607. <lang locale="zh_CN" value="null" />
  1608. <lang locale="zh_HK" value="null" />
  1609. <lang locale="zh_TW" value="null" />
  1610. </rs>
  1611. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCancelCancel].alias">
  1612. <lang locale="en_US" value="null" />
  1613. <lang locale="zh_CN" value="null" />
  1614. <lang locale="zh_HK" value="null" />
  1615. <lang locale="zh_TW" value="null" />
  1616. </rs>
  1617. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCancel].alias">
  1618. <lang locale="en_US" value="null" />
  1619. <lang locale="zh_CN" value="null" />
  1620. <lang locale="zh_HK" value="null" />
  1621. <lang locale="zh_TW" value="null" />
  1622. </rs>
  1623. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCopyTo].alias">
  1624. <lang locale="en_US" value="null" />
  1625. <lang locale="zh_CN" value="null" />
  1626. <lang locale="zh_HK" value="null" />
  1627. <lang locale="zh_TW" value="null" />
  1628. </rs>
  1629. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCreateTo].alias">
  1630. <lang locale="en_US" value="null" />
  1631. <lang locale="zh_CN" value="null" />
  1632. <lang locale="zh_HK" value="null" />
  1633. <lang locale="zh_TW" value="null" />
  1634. </rs>
  1635. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnCreateTo].properties.property[visible].value">
  1636. <lang locale="en_US" value="false" />
  1637. <lang locale="zh_CN" value="false" />
  1638. <lang locale="zh_HK" value="false" />
  1639. <lang locale="zh_TW" value="false" />
  1640. </rs>
  1641. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnDelVoucher].alias">
  1642. <lang locale="en_US" value="null" />
  1643. <lang locale="zh_CN" value="null" />
  1644. <lang locale="zh_HK" value="null" />
  1645. <lang locale="zh_TW" value="null" />
  1646. </rs>
  1647. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnDelVoucher].properties.property[visible].value">
  1648. <lang locale="en_US" value="false" />
  1649. <lang locale="zh_CN" value="false" />
  1650. <lang locale="zh_HK" value="false" />
  1651. <lang locale="zh_TW" value="false" />
  1652. </rs>
  1653. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnEdit].alias">
  1654. <lang locale="en_US" value="null" />
  1655. <lang locale="zh_CN" value="null" />
  1656. <lang locale="zh_HK" value="null" />
  1657. <lang locale="zh_TW" value="null" />
  1658. </rs>
  1659. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnLocate].alias">
  1660. <lang locale="en_US" value="null" />
  1661. <lang locale="zh_CN" value="null" />
  1662. <lang locale="zh_HK" value="null" />
  1663. <lang locale="zh_TW" value="null" />
  1664. </rs>
  1665. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnMultiapprove].alias">
  1666. <lang locale="en_US" value="null" />
  1667. <lang locale="zh_CN" value="null" />
  1668. <lang locale="zh_HK" value="null" />
  1669. <lang locale="zh_TW" value="null" />
  1670. </rs>
  1671. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnNextPerson].alias">
  1672. <lang locale="en_US" value="null" />
  1673. <lang locale="zh_CN" value="null" />
  1674. <lang locale="zh_HK" value="null" />
  1675. <lang locale="zh_TW" value="null" />
  1676. </rs>
  1677. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnPageSetup].alias">
  1678. <lang locale="en_US" value="null" />
  1679. <lang locale="zh_CN" value="null" />
  1680. <lang locale="zh_HK" value="null" />
  1681. <lang locale="zh_TW" value="null" />
  1682. </rs>
  1683. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnPrintPreview].alias">
  1684. <lang locale="en_US" value="null" />
  1685. <lang locale="zh_CN" value="null" />
  1686. <lang locale="zh_HK" value="null" />
  1687. <lang locale="zh_TW" value="null" />
  1688. </rs>
  1689. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnPrint].alias">
  1690. <lang locale="en_US" value="null" />
  1691. <lang locale="zh_CN" value="null" />
  1692. <lang locale="zh_HK" value="null" />
  1693. <lang locale="zh_TW" value="null" />
  1694. </rs>
  1695. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnQueryScheme].alias">
  1696. <lang locale="en_US" value="null" />
  1697. <lang locale="zh_CN" value="null" />
  1698. <lang locale="zh_HK" value="null" />
  1699. <lang locale="zh_TW" value="null" />
  1700. </rs>
  1701. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnQuery].alias">
  1702. <lang locale="en_US" value="null" />
  1703. <lang locale="zh_CN" value="null" />
  1704. <lang locale="zh_HK" value="null" />
  1705. <lang locale="zh_TW" value="null" />
  1706. </rs>
  1707. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnRefresh].alias">
  1708. <lang locale="en_US" value="null" />
  1709. <lang locale="zh_CN" value="null" />
  1710. <lang locale="zh_HK" value="null" />
  1711. <lang locale="zh_TW" value="null" />
  1712. </rs>
  1713. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnRemove].alias">
  1714. <lang locale="en_US" value="null" />
  1715. <lang locale="zh_CN" value="null" />
  1716. <lang locale="zh_HK" value="null" />
  1717. <lang locale="zh_TW" value="null" />
  1718. </rs>
  1719. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnSignature].alias">
  1720. <lang locale="en_US" value="null" />
  1721. <lang locale="zh_CN" value="null" />
  1722. <lang locale="zh_HK" value="null" />
  1723. <lang locale="zh_TW" value="null" />
  1724. </rs>
  1725. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnTraceDown].alias">
  1726. <lang locale="en_US" value="null" />
  1727. <lang locale="zh_CN" value="null" />
  1728. <lang locale="zh_HK" value="null" />
  1729. <lang locale="zh_TW" value="null" />
  1730. </rs>
  1731. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnTraceDown].properties.property[visible].value">
  1732. <lang locale="en_US" value="false" />
  1733. <lang locale="zh_CN" value="false" />
  1734. <lang locale="zh_HK" value="false" />
  1735. <lang locale="zh_TW" value="false" />
  1736. </rs>
  1737. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnTraceUp].alias">
  1738. <lang locale="en_US" value="null" />
  1739. <lang locale="zh_CN" value="null" />
  1740. <lang locale="zh_HK" value="null" />
  1741. <lang locale="zh_TW" value="null" />
  1742. </rs>
  1743. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnTraceUp].properties.property[visible].value">
  1744. <lang locale="en_US" value="false" />
  1745. <lang locale="zh_CN" value="false" />
  1746. <lang locale="zh_HK" value="false" />
  1747. <lang locale="zh_TW" value="false" />
  1748. </rs>
  1749. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].alias">
  1750. <lang locale="en_US" value="null" />
  1751. <lang locale="zh_CN" value="null" />
  1752. <lang locale="zh_HK" value="null" />
  1753. <lang locale="zh_TW" value="null" />
  1754. </rs>
  1755. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[action].value">
  1756. <lang locale="en_US" value="actionUnaudit" />
  1757. <lang locale="zh_CN" value="actionUnaudit" />
  1758. <lang locale="zh_HK" value="actionUnaudit" />
  1759. <lang locale="zh_TW" value="actionUnaudit" />
  1760. </rs>
  1761. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[icon].value">
  1762. <lang locale="en_US" value="imgTbtn_unaudit" />
  1763. <lang locale="zh_CN" value="imgTbtn_unaudit" />
  1764. <lang locale="zh_HK" value="imgTbtn_unaudit" />
  1765. <lang locale="zh_TW" value="imgTbtn_unaudit" />
  1766. </rs>
  1767. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[mnemonic].value">
  1768. <lang locale="en_US" value="85" />
  1769. <lang locale="zh_CN" value="85" />
  1770. <lang locale="zh_HK" value="85" />
  1771. <lang locale="zh_TW" value="85" />
  1772. </rs>
  1773. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[text].value">
  1774. <lang locale="en_US" value="null" />
  1775. <lang locale="zh_CN" value="反审批(U)" />
  1776. <lang locale="zh_HK" value="反審批(U)" />
  1777. <lang locale="zh_TW" value="反審批(U)" />
  1778. </rs>
  1779. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[toolTipText].value">
  1780. <lang locale="en_US" value="null" />
  1781. <lang locale="zh_CN" value="反审批" />
  1782. <lang locale="zh_HK" value="反審批" />
  1783. <lang locale="zh_TW" value="反審批" />
  1784. </rs>
  1785. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnUnaudit].properties.property[visible].value">
  1786. <lang locale="en_US" value="false" />
  1787. <lang locale="zh_CN" value="false" />
  1788. <lang locale="zh_HK" value="false" />
  1789. <lang locale="zh_TW" value="false" />
  1790. </rs>
  1791. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnViewSignature].alias">
  1792. <lang locale="en_US" value="null" />
  1793. <lang locale="zh_CN" value="null" />
  1794. <lang locale="zh_HK" value="null" />
  1795. <lang locale="zh_TW" value="null" />
  1796. </rs>
  1797. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnView].alias">
  1798. <lang locale="en_US" value="null" />
  1799. <lang locale="zh_CN" value="null" />
  1800. <lang locale="zh_HK" value="null" />
  1801. <lang locale="zh_TW" value="null" />
  1802. </rs>
  1803. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnVoucher].alias">
  1804. <lang locale="en_US" value="null" />
  1805. <lang locale="zh_CN" value="null" />
  1806. <lang locale="zh_HK" value="null" />
  1807. <lang locale="zh_TW" value="null" />
  1808. </rs>
  1809. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnVoucher].properties.property[visible].value">
  1810. <lang locale="en_US" value="false" />
  1811. <lang locale="zh_CN" value="false" />
  1812. <lang locale="zh_HK" value="false" />
  1813. <lang locale="zh_TW" value="false" />
  1814. </rs>
  1815. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnWFViewdoProccess].alias">
  1816. <lang locale="en_US" value="null" />
  1817. <lang locale="zh_CN" value="null" />
  1818. <lang locale="zh_HK" value="null" />
  1819. <lang locale="zh_TW" value="null" />
  1820. </rs>
  1821. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnWorkFlowG].alias">
  1822. <lang locale="en_US" value="null" />
  1823. <lang locale="zh_CN" value="null" />
  1824. <lang locale="zh_HK" value="null" />
  1825. <lang locale="zh_TW" value="null" />
  1826. </rs>
  1827. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[btnWorkFlowList].alias">
  1828. <lang locale="en_US" value="null" />
  1829. <lang locale="zh_CN" value="null" />
  1830. <lang locale="zh_HK" value="null" />
  1831. <lang locale="zh_TW" value="null" />
  1832. </rs>
  1833. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[kDSeparator4].alias">
  1834. <lang locale="en_US" value="null" />
  1835. <lang locale="zh_CN" value="null" />
  1836. <lang locale="zh_HK" value="null" />
  1837. <lang locale="zh_TW" value="null" />
  1838. </rs>
  1839. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[kDSeparator4].properties.property[visible].value">
  1840. <lang locale="en_US" value="false" />
  1841. <lang locale="zh_CN" value="false" />
  1842. <lang locale="zh_HK" value="false" />
  1843. <lang locale="zh_TW" value="false" />
  1844. </rs>
  1845. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[kDSeparator6].alias">
  1846. <lang locale="en_US" value="null" />
  1847. <lang locale="zh_CN" value="null" />
  1848. <lang locale="zh_HK" value="null" />
  1849. <lang locale="zh_TW" value="null" />
  1850. </rs>
  1851. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[kDSeparator6].properties.property[visible].value">
  1852. <lang locale="en_US" value="false" />
  1853. <lang locale="zh_CN" value="false" />
  1854. <lang locale="zh_HK" value="false" />
  1855. <lang locale="zh_TW" value="false" />
  1856. </rs>
  1857. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAuditResult].alias">
  1858. <lang locale="en_US" value="null" />
  1859. <lang locale="zh_CN" value="null" />
  1860. <lang locale="zh_HK" value="null" />
  1861. <lang locale="zh_TW" value="null" />
  1862. </rs>
  1863. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAuditResult].properties.property[visible].value">
  1864. <lang locale="en_US" value="null" />
  1865. <lang locale="zh_CN" value="false" />
  1866. <lang locale="zh_HK" value="false" />
  1867. <lang locale="zh_TW" value="false" />
  1868. </rs>
  1869. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].alias">
  1870. <lang locale="en_US" value="null" />
  1871. <lang locale="zh_CN" value="null" />
  1872. <lang locale="zh_HK" value="null" />
  1873. <lang locale="zh_TW" value="null" />
  1874. </rs>
  1875. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[action].value">
  1876. <lang locale="en_US" value="actionAudit" />
  1877. <lang locale="zh_CN" value="actionAudit" />
  1878. <lang locale="zh_HK" value="actionAudit" />
  1879. <lang locale="zh_TW" value="actionAudit" />
  1880. </rs>
  1881. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[icon].value">
  1882. <lang locale="en_US" value="imgTbtn_audit" />
  1883. <lang locale="zh_CN" value="imgTbtn_audit" />
  1884. <lang locale="zh_HK" value="imgTbtn_audit" />
  1885. <lang locale="zh_TW" value="imgTbtn_audit" />
  1886. </rs>
  1887. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[mnemonic].value">
  1888. <lang locale="en_US" value="65" />
  1889. <lang locale="zh_CN" value="65" />
  1890. <lang locale="zh_HK" value="65" />
  1891. <lang locale="zh_TW" value="65" />
  1892. </rs>
  1893. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[text].value">
  1894. <lang locale="en_US" value="null" />
  1895. <lang locale="zh_CN" value="审批(A)" />
  1896. <lang locale="zh_HK" value="審批(A)" />
  1897. <lang locale="zh_TW" value="審批(A)" />
  1898. </rs>
  1899. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemAudit].properties.property[toolTipText].value">
  1900. <lang locale="en_US" value="null" />
  1901. <lang locale="zh_CN" value="审批" />
  1902. <lang locale="zh_HK" value="審批" />
  1903. <lang locale="zh_TW" value="審批" />
  1904. </rs>
  1905. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCancelCancel].alias">
  1906. <lang locale="en_US" value="null" />
  1907. <lang locale="zh_CN" value="null" />
  1908. <lang locale="zh_HK" value="null" />
  1909. <lang locale="zh_TW" value="null" />
  1910. </rs>
  1911. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCancel].alias">
  1912. <lang locale="en_US" value="null" />
  1913. <lang locale="zh_CN" value="null" />
  1914. <lang locale="zh_HK" value="null" />
  1915. <lang locale="zh_TW" value="null" />
  1916. </rs>
  1917. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCopyTo].alias">
  1918. <lang locale="en_US" value="null" />
  1919. <lang locale="zh_CN" value="null" />
  1920. <lang locale="zh_HK" value="null" />
  1921. <lang locale="zh_TW" value="null" />
  1922. </rs>
  1923. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCopyTo].properties.property[visible].value">
  1924. <lang locale="en_US" value="null" />
  1925. <lang locale="zh_CN" value="false" />
  1926. <lang locale="zh_HK" value="false" />
  1927. <lang locale="zh_TW" value="false" />
  1928. </rs>
  1929. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCreateTo].alias">
  1930. <lang locale="en_US" value="null" />
  1931. <lang locale="zh_CN" value="null" />
  1932. <lang locale="zh_HK" value="null" />
  1933. <lang locale="zh_TW" value="null" />
  1934. </rs>
  1935. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemCreateTo].properties.property[visible].value">
  1936. <lang locale="en_US" value="false" />
  1937. <lang locale="zh_CN" value="false" />
  1938. <lang locale="zh_HK" value="false" />
  1939. <lang locale="zh_TW" value="false" />
  1940. </rs>
  1941. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemDelVoucher].alias">
  1942. <lang locale="en_US" value="null" />
  1943. <lang locale="zh_CN" value="null" />
  1944. <lang locale="zh_HK" value="null" />
  1945. <lang locale="zh_TW" value="null" />
  1946. </rs>
  1947. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemDelVoucher].properties.property[visible].value">
  1948. <lang locale="en_US" value="false" />
  1949. <lang locale="zh_CN" value="false" />
  1950. <lang locale="zh_HK" value="false" />
  1951. <lang locale="zh_TW" value="false" />
  1952. </rs>
  1953. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemTraceDown].alias">
  1954. <lang locale="en_US" value="null" />
  1955. <lang locale="zh_CN" value="null" />
  1956. <lang locale="zh_HK" value="null" />
  1957. <lang locale="zh_TW" value="null" />
  1958. </rs>
  1959. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemTraceDown].properties.property[visible].value">
  1960. <lang locale="en_US" value="false" />
  1961. <lang locale="zh_CN" value="false" />
  1962. <lang locale="zh_HK" value="false" />
  1963. <lang locale="zh_TW" value="false" />
  1964. </rs>
  1965. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemTraceUp].alias">
  1966. <lang locale="en_US" value="null" />
  1967. <lang locale="zh_CN" value="null" />
  1968. <lang locale="zh_HK" value="null" />
  1969. <lang locale="zh_TW" value="null" />
  1970. </rs>
  1971. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemTraceUp].properties.property[visible].value">
  1972. <lang locale="en_US" value="false" />
  1973. <lang locale="zh_CN" value="false" />
  1974. <lang locale="zh_HK" value="false" />
  1975. <lang locale="zh_TW" value="false" />
  1976. </rs>
  1977. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].alias">
  1978. <lang locale="en_US" value="null" />
  1979. <lang locale="zh_CN" value="null" />
  1980. <lang locale="zh_HK" value="null" />
  1981. <lang locale="zh_TW" value="null" />
  1982. </rs>
  1983. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[action].value">
  1984. <lang locale="en_US" value="actionUnaudit" />
  1985. <lang locale="zh_CN" value="actionUnaudit" />
  1986. <lang locale="zh_HK" value="actionUnaudit" />
  1987. <lang locale="zh_TW" value="actionUnaudit" />
  1988. </rs>
  1989. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[icon].value">
  1990. <lang locale="en_US" value="imgTbtn_unaudit" />
  1991. <lang locale="zh_CN" value="imgTbtn_unaudit" />
  1992. <lang locale="zh_HK" value="imgTbtn_unaudit" />
  1993. <lang locale="zh_TW" value="imgTbtn_unaudit" />
  1994. </rs>
  1995. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[mnemonic].value">
  1996. <lang locale="en_US" value="85" />
  1997. <lang locale="zh_CN" value="85" />
  1998. <lang locale="zh_HK" value="85" />
  1999. <lang locale="zh_TW" value="85" />
  2000. </rs>
  2001. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[text].value">
  2002. <lang locale="en_US" value="null" />
  2003. <lang locale="zh_CN" value="反审核(U)" />
  2004. <lang locale="zh_HK" value="反審核(U)" />
  2005. <lang locale="zh_TW" value="反審核(U)" />
  2006. </rs>
  2007. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[toolTipText].value">
  2008. <lang locale="en_US" value="null" />
  2009. <lang locale="zh_CN" value="反审核" />
  2010. <lang locale="zh_HK" value="反審核" />
  2011. <lang locale="zh_TW" value="反審核" />
  2012. </rs>
  2013. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemUnaudit].properties.property[visible].value">
  2014. <lang locale="en_US" value="false" />
  2015. <lang locale="zh_CN" value="false" />
  2016. <lang locale="zh_HK" value="false" />
  2017. <lang locale="zh_TW" value="false" />
  2018. </rs>
  2019. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemViewDoProccess].alias">
  2020. <lang locale="en_US" value="null" />
  2021. <lang locale="zh_CN" value="null" />
  2022. <lang locale="zh_HK" value="null" />
  2023. <lang locale="zh_TW" value="null" />
  2024. </rs>
  2025. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemViewDoProccess].properties.property[visible].value">
  2026. <lang locale="en_US" value="false" />
  2027. <lang locale="zh_CN" value="false" />
  2028. <lang locale="zh_HK" value="false" />
  2029. <lang locale="zh_TW" value="false" />
  2030. </rs>
  2031. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemVoucher].alias">
  2032. <lang locale="en_US" value="null" />
  2033. <lang locale="zh_CN" value="null" />
  2034. <lang locale="zh_HK" value="null" />
  2035. <lang locale="zh_TW" value="null" />
  2036. </rs>
  2037. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[menuItemVoucher].properties.property[visible].value">
  2038. <lang locale="en_US" value="false" />
  2039. <lang locale="zh_CN" value="false" />
  2040. <lang locale="zh_HK" value="false" />
  2041. <lang locale="zh_TW" value="false" />
  2042. </rs>
  2043. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW1].alias">
  2044. <lang locale="en_US" value="null" />
  2045. <lang locale="zh_CN" value="null" />
  2046. <lang locale="zh_HK" value="null" />
  2047. <lang locale="zh_TW" value="null" />
  2048. </rs>
  2049. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW2].alias">
  2050. <lang locale="en_US" value="null" />
  2051. <lang locale="zh_CN" value="null" />
  2052. <lang locale="zh_HK" value="null" />
  2053. <lang locale="zh_TW" value="null" />
  2054. </rs>
  2055. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW2].properties.property[visible].value">
  2056. <lang locale="en_US" value="true" />
  2057. <lang locale="zh_CN" value="true" />
  2058. <lang locale="zh_HK" value="true" />
  2059. <lang locale="zh_TW" value="true" />
  2060. </rs>
  2061. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW3].alias">
  2062. <lang locale="en_US" value="null" />
  2063. <lang locale="zh_CN" value="null" />
  2064. <lang locale="zh_HK" value="null" />
  2065. <lang locale="zh_TW" value="null" />
  2066. </rs>
  2067. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[separatorFW4].alias">
  2068. <lang locale="en_US" value="null" />
  2069. <lang locale="zh_CN" value="null" />
  2070. <lang locale="zh_HK" value="null" />
  2071. <lang locale="zh_TW" value="null" />
  2072. </rs>
  2073. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[tblMain].alias">
  2074. <lang locale="en_US" value="null" />
  2075. <lang locale="zh_CN" value="null" />
  2076. <lang locale="zh_HK" value="null" />
  2077. <lang locale="zh_TW" value="null" />
  2078. </rs>
  2079. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].components.component[tblMain].properties.property[formatXml].value">
  2080. <lang locale="en_US" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;DocRoot xmlns:c=&quot;http://www.kingdee.com/Common&quot; xmlns:f=&quot;http://www.kingdee.com/Form&quot; xmlns:t=&quot;http://www.kingdee.com/Table&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot;http://www.kingdee.com/KDF KDFSchema.xsd&quot; version=&quot;0.0&quot;&gt;&lt;Styles /&gt;&lt;Table id=&quot;KDTable&quot;&gt;&lt;t:Sheet name=&quot;sheet1&quot;&gt;&lt;t:Table t:selectMode=&quot;15&quot; t:mergeMode=&quot;0&quot; t:dataRequestMode=&quot;0&quot; t:pageRowCount=&quot;100&quot;&gt;&lt;t:ColumnGroup&gt;&lt;t:Column t:key=&quot;id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;number&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;bizDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;description&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;createTime&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;lastUpdateTime&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;auditor.number&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;auditor.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;creator.number&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;creator.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;lastUpdateUser.number&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;lastUpdateUser.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;entrys.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;handler.number&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;handler.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;t:Column t:key=&quot;entrys.seq&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; /&gt;&lt;/t:ColumnGroup&gt;&lt;t:Head&gt;&lt;t:Row t:name=&quot;header&quot; t:height=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot;&gt;&lt;t:Cell&gt;id&lt;/t:Cell&gt;&lt;t:Cell&gt;number&lt;/t:Cell&gt;&lt;t:Cell&gt;bizDate&lt;/t:Cell&gt;&lt;t:Cell&gt;description&lt;/t:Cell&gt;&lt;t:Cell&gt;createTime&lt;/t:Cell&gt;&lt;t:Cell&gt;lastUpdateTime&lt;/t:Cell&gt;&lt;t:Cell&gt;auditor.number&lt;/t:Cell&gt;&lt;t:Cell&gt;auditor.name&lt;/t:Cell&gt;&lt;t:Cell&gt;creator.number&lt;/t:Cell&gt;&lt;t:Cell&gt;creator.name&lt;/t:Cell&gt;&lt;t:Cell&gt;lastUpdateUser.number&lt;/t:Cell&gt;&lt;t:Cell&gt;lastUpdateUser.name&lt;/t:Cell&gt;&lt;t:Cell&gt;entrys.id&lt;/t:Cell&gt;&lt;t:Cell&gt;handler.number&lt;/t:Cell&gt;&lt;t:Cell&gt;handler.name&lt;/t:Cell&gt;&lt;t:Cell&gt;entrys.seq&lt;/t:Cell&gt;&lt;/t:Row&gt;&lt;/t:Head&gt;&lt;/t:Table&gt;&lt;t:SheetOptions&gt;&lt;t:MergeBlocks&gt;&lt;t:Head /&gt;&lt;/t:MergeBlocks&gt;&lt;/t:SheetOptions&gt;&lt;/t:Sheet&gt;&lt;/Table&gt;&lt;/DocRoot&gt; " />
  2081. <lang locale="zh_CN" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;DocRoot xmlns:c=&quot;http://www.kingdee.com/Common&quot; xmlns:f=&quot;http://www.kingdee.com/Form&quot; xmlns:t=&quot;http://www.kingdee.com/Table&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot;http://www.kingdee.com/KDF KDFSchema.xsd&quot; version=&quot;0.0&quot;&gt;&lt;Styles&gt;&lt;c:Style id=&quot;sCol0&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol2&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol9&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol12&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol13&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol14&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol15&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol16&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol17&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol18&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol20&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol21&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol22&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol23&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;/Styles&gt;&lt;Table id=&quot;KDTable&quot;&gt;&lt;t:Sheet name=&quot;sheet1&quot;&gt;&lt;t:Table t:selectMode=&quot;15&quot; t:mergeMode=&quot;0&quot; t:dataRequestMode=&quot;0&quot; t:pageRowCount=&quot;100&quot;&gt;&lt;t:ColumnGroup&gt;&lt;t:Column t:key=&quot;id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol0&quot; /&gt;&lt;t:Column t:key=&quot;number&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; /&gt;&lt;t:Column t:key=&quot;applier.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;2&quot; t:styleID=&quot;sCol2&quot; /&gt;&lt;t:Column t:key=&quot;applier.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;3&quot; /&gt;&lt;t:Column t:key=&quot;adminOrgUnit.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;4&quot; /&gt;&lt;t:Column t:key=&quot;adminOrgUnit.displayName&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;5&quot; /&gt;&lt;t:Column t:key=&quot;applyDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;6&quot; /&gt;&lt;t:Column t:key=&quot;billState&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;7&quot; /&gt;&lt;t:Column t:key=&quot;bizDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;8&quot; /&gt;&lt;t:Column t:key=&quot;hrOrgUnit.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;9&quot; t:styleID=&quot;sCol9&quot; /&gt;&lt;t:Column t:key=&quot;hrOrgUnit.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;10&quot; /&gt;&lt;t:Column t:key=&quot;description&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;11&quot; /&gt;&lt;t:Column t:key=&quot;approveType&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol12&quot; /&gt;&lt;t:Column t:key=&quot;adminOrgUnit.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol13&quot; /&gt;&lt;t:Column t:key=&quot;entrys.months&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol14&quot; /&gt;&lt;t:Column t:key=&quot;entrys.moneys&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol15&quot; /&gt;&lt;t:Column t:key=&quot;entrys.beforeAmount&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol16&quot; /&gt;&lt;t:Column t:key=&quot;entrys.reissueAmount&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol17&quot; /&gt;&lt;t:Column t:key=&quot;entrys.amountPayable&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol18&quot; /&gt;&lt;t:Column t:key=&quot;person.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; /&gt;&lt;t:Column t:key=&quot;money&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol20&quot; /&gt;&lt;t:Column t:key=&quot;startDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol21&quot; /&gt;&lt;t:Column t:key=&quot;endDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol22&quot; /&gt;&lt;t:Column t:key=&quot;reissueDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol23&quot; /&gt;&lt;t:Column t:key=&quot;status&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; /&gt;&lt;/t:ColumnGroup&gt;&lt;t:Head&gt;&lt;t:Row t:name=&quot;head&quot; t:height=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot;&gt;&lt;t:Cell&gt;id&lt;/t:Cell&gt;&lt;t:Cell&gt;申请单号&lt;/t:Cell&gt;&lt;t:Cell&gt;申请人ID&lt;/t:Cell&gt;&lt;t:Cell&gt;申请人&lt;/t:Cell&gt;&lt;t:Cell&gt;所属行政组织ID&lt;/t:Cell&gt;&lt;t:Cell&gt;所属行政组织&lt;/t:Cell&gt;&lt;t:Cell&gt;申请日期&lt;/t:Cell&gt;&lt;t:Cell&gt;单据状态&lt;/t:Cell&gt;&lt;t:Cell&gt;审批日期&lt;/t:Cell&gt;&lt;t:Cell&gt;HR组织ID&lt;/t:Cell&gt;&lt;t:Cell&gt;HR组织&lt;/t:Cell&gt;&lt;t:Cell&gt;备注&lt;/t:Cell&gt;&lt;t:Cell&gt;审批方式&lt;/t:Cell&gt;&lt;t:Cell&gt;行政组织&lt;/t:Cell&gt;&lt;t:Cell&gt;月份&lt;/t:Cell&gt;&lt;t:Cell&gt;金额&lt;/t:Cell&gt;&lt;t:Cell&gt;变更前金额&lt;/t:Cell&gt;&lt;t:Cell&gt;补发金额&lt;/t:Cell&gt;&lt;t:Cell&gt;应发金额&lt;/t:Cell&gt;&lt;t:Cell&gt;员工&lt;/t:Cell&gt;&lt;t:Cell&gt;金额&lt;/t:Cell&gt;&lt;t:Cell&gt;生效日期&lt;/t:Cell&gt;&lt;t:Cell&gt;失效日期&lt;/t:Cell&gt;&lt;t:Cell&gt;补发日期&lt;/t:Cell&gt;&lt;t:Cell&gt;状态&lt;/t:Cell&gt;&lt;/t:Row&gt;&lt;/t:Head&gt;&lt;/t:Table&gt;&lt;t:SheetOptions&gt;&lt;t:MergeBlocks&gt;&lt;t:Head /&gt;&lt;/t:MergeBlocks&gt;&lt;/t:SheetOptions&gt;&lt;/t:Sheet&gt;&lt;/Table&gt;&lt;/DocRoot&gt;" />
  2082. <lang locale="zh_HK" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;DocRoot xmlns:c=&quot;http://www.kingdee.com/Common&quot; xmlns:f=&quot;http://www.kingdee.com/Form&quot; xmlns:t=&quot;http://www.kingdee.com/Table&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot;http://www.kingdee.com/KDF KDFSchema.xsd&quot; version=&quot;0.0&quot;&gt;&lt;Styles&gt;&lt;c:Style id=&quot;sCol0&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol2&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol9&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol12&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol13&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol14&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol15&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol16&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol17&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol18&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol20&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol21&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol22&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol23&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;/Styles&gt;&lt;Table id=&quot;KDTable&quot;&gt;&lt;t:Sheet name=&quot;sheet1&quot;&gt;&lt;t:Table t:selectMode=&quot;15&quot; t:mergeMode=&quot;0&quot; t:dataRequestMode=&quot;0&quot; t:pageRowCount=&quot;100&quot;&gt;&lt;t:ColumnGroup&gt;&lt;t:Column t:key=&quot;id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol0&quot; /&gt;&lt;t:Column t:key=&quot;number&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; /&gt;&lt;t:Column t:key=&quot;applier.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;2&quot; t:styleID=&quot;sCol2&quot; /&gt;&lt;t:Column t:key=&quot;applier.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;3&quot; /&gt;&lt;t:Column t:key=&quot;adminOrgUnit.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;4&quot; /&gt;&lt;t:Column t:key=&quot;adminOrgUnit.displayName&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;5&quot; /&gt;&lt;t:Column t:key=&quot;applyDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;6&quot; /&gt;&lt;t:Column t:key=&quot;billState&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;7&quot; /&gt;&lt;t:Column t:key=&quot;bizDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;8&quot; /&gt;&lt;t:Column t:key=&quot;hrOrgUnit.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;9&quot; t:styleID=&quot;sCol9&quot; /&gt;&lt;t:Column t:key=&quot;hrOrgUnit.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;10&quot; /&gt;&lt;t:Column t:key=&quot;description&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;11&quot; /&gt;&lt;t:Column t:key=&quot;approveType&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol12&quot; /&gt;&lt;t:Column t:key=&quot;adminOrgUnit.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol13&quot; /&gt;&lt;t:Column t:key=&quot;entrys.months&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol14&quot; /&gt;&lt;t:Column t:key=&quot;entrys.moneys&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol15&quot; /&gt;&lt;t:Column t:key=&quot;entrys.beforeAmount&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol16&quot; /&gt;&lt;t:Column t:key=&quot;entrys.reissueAmount&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol17&quot; /&gt;&lt;t:Column t:key=&quot;entrys.amountPayable&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol18&quot; /&gt;&lt;t:Column t:key=&quot;person.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; /&gt;&lt;t:Column t:key=&quot;money&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol20&quot; /&gt;&lt;t:Column t:key=&quot;startDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol21&quot; /&gt;&lt;t:Column t:key=&quot;endDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol22&quot; /&gt;&lt;t:Column t:key=&quot;reissueDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol23&quot; /&gt;&lt;t:Column t:key=&quot;status&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; /&gt;&lt;/t:ColumnGroup&gt;&lt;t:Head&gt;&lt;t:Row t:name=&quot;head&quot; t:height=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot;&gt;&lt;t:Cell&gt;id&lt;/t:Cell&gt;&lt;t:Cell&gt;申請單號&lt;/t:Cell&gt;&lt;t:Cell&gt;申請人ID&lt;/t:Cell&gt;&lt;t:Cell&gt;申請人&lt;/t:Cell&gt;&lt;t:Cell&gt;所屬行政組織ID&lt;/t:Cell&gt;&lt;t:Cell&gt;所屬行政組織&lt;/t:Cell&gt;&lt;t:Cell&gt;申請日期&lt;/t:Cell&gt;&lt;t:Cell&gt;單據狀態&lt;/t:Cell&gt;&lt;t:Cell&gt;審批日期&lt;/t:Cell&gt;&lt;t:Cell&gt;HR組織ID&lt;/t:Cell&gt;&lt;t:Cell&gt;HR組織&lt;/t:Cell&gt;&lt;t:Cell&gt;備註&lt;/t:Cell&gt;&lt;t:Cell&gt;審批方式&lt;/t:Cell&gt;&lt;t:Cell&gt;行政組織&lt;/t:Cell&gt;&lt;t:Cell&gt;月份&lt;/t:Cell&gt;&lt;t:Cell&gt;金額&lt;/t:Cell&gt;&lt;t:Cell&gt;變更前金額&lt;/t:Cell&gt;&lt;t:Cell&gt;補發金額&lt;/t:Cell&gt;&lt;t:Cell&gt;應發金額&lt;/t:Cell&gt;&lt;t:Cell&gt;員工&lt;/t:Cell&gt;&lt;t:Cell&gt;金額&lt;/t:Cell&gt;&lt;t:Cell&gt;生效日期&lt;/t:Cell&gt;&lt;t:Cell&gt;失效日期&lt;/t:Cell&gt;&lt;t:Cell&gt;補發日期&lt;/t:Cell&gt;&lt;t:Cell&gt;狀態&lt;/t:Cell&gt;&lt;/t:Row&gt;&lt;/t:Head&gt;&lt;/t:Table&gt;&lt;t:SheetOptions&gt;&lt;t:MergeBlocks&gt;&lt;t:Head /&gt;&lt;/t:MergeBlocks&gt;&lt;/t:SheetOptions&gt;&lt;/t:Sheet&gt;&lt;/Table&gt;&lt;/DocRoot&gt;" />
  2083. <lang locale="zh_TW" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;DocRoot xmlns:c=&quot;http://www.kingdee.com/Common&quot; xmlns:f=&quot;http://www.kingdee.com/Form&quot; xmlns:t=&quot;http://www.kingdee.com/Table&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot;http://www.kingdee.com/KDF KDFSchema.xsd&quot; version=&quot;0.0&quot;&gt;&lt;Styles&gt;&lt;c:Style id=&quot;sCol0&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol2&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol9&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol12&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol13&quot;&gt;&lt;c:Protection hidden=&quot;true&quot; /&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol14&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol15&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol16&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol17&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol18&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol20&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;double&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol21&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol22&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;c:Style id=&quot;sCol23&quot;&gt;&lt;c:NumberFormat&gt;&amp;amp;date&lt;/c:NumberFormat&gt;&lt;/c:Style&gt;&lt;/Styles&gt;&lt;Table id=&quot;KDTable&quot;&gt;&lt;t:Sheet name=&quot;sheet1&quot;&gt;&lt;t:Table t:selectMode=&quot;15&quot; t:mergeMode=&quot;0&quot; t:dataRequestMode=&quot;0&quot; t:pageRowCount=&quot;100&quot;&gt;&lt;t:ColumnGroup&gt;&lt;t:Column t:key=&quot;id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol0&quot; /&gt;&lt;t:Column t:key=&quot;number&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; /&gt;&lt;t:Column t:key=&quot;applier.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;2&quot; t:styleID=&quot;sCol2&quot; /&gt;&lt;t:Column t:key=&quot;applier.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;3&quot; /&gt;&lt;t:Column t:key=&quot;adminOrgUnit.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;4&quot; /&gt;&lt;t:Column t:key=&quot;adminOrgUnit.displayName&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;5&quot; /&gt;&lt;t:Column t:key=&quot;applyDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;6&quot; /&gt;&lt;t:Column t:key=&quot;billState&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;7&quot; /&gt;&lt;t:Column t:key=&quot;bizDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;8&quot; /&gt;&lt;t:Column t:key=&quot;hrOrgUnit.id&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;9&quot; t:styleID=&quot;sCol9&quot; /&gt;&lt;t:Column t:key=&quot;hrOrgUnit.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;10&quot; /&gt;&lt;t:Column t:key=&quot;description&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;11&quot; /&gt;&lt;t:Column t:key=&quot;approveType&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol12&quot; /&gt;&lt;t:Column t:key=&quot;adminOrgUnit.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol13&quot; /&gt;&lt;t:Column t:key=&quot;entrys.months&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol14&quot; /&gt;&lt;t:Column t:key=&quot;entrys.moneys&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol15&quot; /&gt;&lt;t:Column t:key=&quot;entrys.beforeAmount&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol16&quot; /&gt;&lt;t:Column t:key=&quot;entrys.reissueAmount&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol17&quot; /&gt;&lt;t:Column t:key=&quot;entrys.amountPayable&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol18&quot; /&gt;&lt;t:Column t:key=&quot;person.name&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; /&gt;&lt;t:Column t:key=&quot;money&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol20&quot; /&gt;&lt;t:Column t:key=&quot;startDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol21&quot; /&gt;&lt;t:Column t:key=&quot;endDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol22&quot; /&gt;&lt;t:Column t:key=&quot;reissueDate&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; t:styleID=&quot;sCol23&quot; /&gt;&lt;t:Column t:key=&quot;status&quot; t:width=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot; t:moveable=&quot;true&quot; t:group=&quot;false&quot; t:required=&quot;false&quot; t:index=&quot;-1&quot; /&gt;&lt;/t:ColumnGroup&gt;&lt;t:Head&gt;&lt;t:Row t:name=&quot;head&quot; t:height=&quot;-1&quot; t:mergeable=&quot;true&quot; t:resizeable=&quot;true&quot;&gt;&lt;t:Cell&gt;id&lt;/t:Cell&gt;&lt;t:Cell&gt;申請單號&lt;/t:Cell&gt;&lt;t:Cell&gt;申請人ID&lt;/t:Cell&gt;&lt;t:Cell&gt;申請人&lt;/t:Cell&gt;&lt;t:Cell&gt;所屬行政組織ID&lt;/t:Cell&gt;&lt;t:Cell&gt;所屬行政組織&lt;/t:Cell&gt;&lt;t:Cell&gt;申請日期&lt;/t:Cell&gt;&lt;t:Cell&gt;單據狀態&lt;/t:Cell&gt;&lt;t:Cell&gt;審批日期&lt;/t:Cell&gt;&lt;t:Cell&gt;HR組織ID&lt;/t:Cell&gt;&lt;t:Cell&gt;HR組織&lt;/t:Cell&gt;&lt;t:Cell&gt;備註&lt;/t:Cell&gt;&lt;t:Cell&gt;審批方式&lt;/t:Cell&gt;&lt;t:Cell&gt;行政組織&lt;/t:Cell&gt;&lt;t:Cell&gt;月份&lt;/t:Cell&gt;&lt;t:Cell&gt;金額&lt;/t:Cell&gt;&lt;t:Cell&gt;變更前金額&lt;/t:Cell&gt;&lt;t:Cell&gt;補發金額&lt;/t:Cell&gt;&lt;t:Cell&gt;應發金額&lt;/t:Cell&gt;&lt;t:Cell&gt;員工&lt;/t:Cell&gt;&lt;t:Cell&gt;金額&lt;/t:Cell&gt;&lt;t:Cell&gt;生效日期&lt;/t:Cell&gt;&lt;t:Cell&gt;失效日期&lt;/t:Cell&gt;&lt;t:Cell&gt;補發日期&lt;/t:Cell&gt;&lt;t:Cell&gt;狀態&lt;/t:Cell&gt;&lt;/t:Row&gt;&lt;/t:Head&gt;&lt;/t:Table&gt;&lt;t:SheetOptions&gt;&lt;t:MergeBlocks&gt;&lt;t:Head /&gt;&lt;/t:MergeBlocks&gt;&lt;/t:SheetOptions&gt;&lt;/t:Sheet&gt;&lt;/Table&gt;&lt;/DocRoot&gt;" />
  2084. </rs>
  2085. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].description">
  2086. <lang locale="en_US" value="null" />
  2087. <lang locale="zh_CN" value="多分录基础单据查询界面" />
  2088. <lang locale="zh_HK" value="多分錄基礎單據查詢介面" />
  2089. <lang locale="zh_TW" value="多分錄基礎單據查詢介面" />
  2090. </rs>
  2091. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].extendedProperty.bimTemplateType">
  2092. <lang locale="en_US" value="MCoreBillBase" />
  2093. <lang locale="zh_CN" value="MCoreBillBase" />
  2094. <lang locale="zh_TW" value="MCoreBillBase" />
  2095. </rs>
  2096. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].extendedProperty.bimUIType">
  2097. <lang locale="en_US" value="ListUI" />
  2098. <lang locale="zh_CN" value="ListUI" />
  2099. <lang locale="zh_TW" value="ListUI" />
  2100. </rs>
  2101. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].statuses.status[VIEW].alias">
  2102. <lang locale="en_US" value="null" />
  2103. <lang locale="zh_CN" value="浏览" />
  2104. <lang locale="zh_HK" value="瀏覽" />
  2105. <lang locale="zh_TW" value="瀏覽" />
  2106. </rs>
  2107. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].statuses.status[VIEW].description">
  2108. <lang locale="en_US" value="null" />
  2109. <lang locale="zh_CN" value="浏览" />
  2110. <lang locale="zh_HK" value="瀏覽" />
  2111. <lang locale="zh_TW" value="瀏覽" />
  2112. </rs>
  2113. <rs key="uiObject[com.kingdee.eas.custom.bill.salary.client.SalaryBagListUI].title">
  2114. <lang locale="en_US" value="null" />
  2115. <lang locale="zh_CN" value="员工工资包" />
  2116. <lang locale="zh_HK" value="員工工資包" />
  2117. <lang locale="zh_TW" value="員工工資包" />
  2118. </rs>
  2119. </resource>
  2120. </uiObject>