IN7_MK_BAZA_DYSTRYBUCJI.xsd 211 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  3. xmlns:default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI="https://biuro.biall-net.pl/wfs/default_db/table/IN7_MK_BAZA_DYSTRYBUCJI.xsd"
  4. xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
  5. xmlns:default_db__x3A__ADMIN_USERS="https://biuro.biall-net.pl/wfs/default_db/table/ADMIN_USERS.xsd"
  6. xmlns:default_db__x3A__COMPANIES="https://biuro.biall-net.pl/wfs/default_db/table/COMPANIES.xsd"
  7. xmlns:gml="http://www.opengis.net/gml/3.2"
  8. xmlns:default_db__x3A__IN7_DZIENNIK_KORESP="https://biuro.biall-net.pl/wfs/default_db/table/IN7_DZIENNIK_KORESP.xsd"
  9. xmlns:hfp="http://www.w3.org/2001/XMLSchema-hasFacetAndProperty"
  10. xmlns:default_db__x3A__Rozdzielcza_Kabel_Swiatlowodowy_wsg84="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Kabel_Swiatlowodowy_wsg84.xsd"
  11. xmlns:default_db__x3A__SALES_PLAN="https://biuro.biall-net.pl/wfs/default_db/table/SALES_PLAN.xsd"
  12. xmlns:default_db__x3A__Rozdzielcza_Dzialki="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Dzialki.xsd"
  13. xmlns:default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Mikrokanalizacja_do_klienta.xsd"
  14. xmlns:default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84.xsd"
  15. xmlns:default_db__x3A__Rozdzielcza_PionyKablowe="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_PionyKablowe.xsd"
  16. xmlns:default_db__x3A__Rozdzielcza_Przeciski_110mm="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Przeciski_110mm.xsd"
  17. xmlns:default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Wykop_przedmiar_na_mikrorurki.xsd"
  18. xmlns:default_db__x3A__Rozdzielcza_Zabruki="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Zabruki.xsd"
  19. xmlns:default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_koszty_dodatkowe_wsg84.xsd"
  20. xmlns:default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_struktura_wewnetrzna_wsg84.xsd"
  21. xmlns:default_db__x3A__Rura_oslonowa_rozdzielcza_magistralna="https://biuro.biall-net.pl/wfs/default_db/table/Rura_oslonowa_rozdzielcza_magistralna.xsd"
  22. xmlns:default_db__x3A__CRM_LISTA_ZASOBOW_OFFERS="https://biuro.biall-net.pl/wfs/default_db/table/CRM_LISTA_ZASOBOW_OFFERS.xsd"
  23. xmlns:default_db__x3A__Rozdzielcza_rurociag_wsg84="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_rurociag_wsg84.xsd"
  24. xmlns:default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_rura_oslonowa_magistralna.xsd"
  25. xmlns:default_db__x3A__BADANIA_W_TERENIE="https://biuro.biall-net.pl/wfs/default_db/table/BADANIA_W_TERENIE.xsd"
  26. xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
  27. elementFormDefault="qualified"
  28. targetNamespace="https://biuro.biall-net.pl/wfs/default_db/table/IN7_MK_BAZA_DYSTRYBUCJI.xsd"
  29. vc:minVersion="1.0"
  30. vc:maxVersion="1.1"
  31. attributeFormDefault="qualified">
  32. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/ADMIN_USERS.xsd"
  33. schemaLocation="../table/ADMIN_USERS.xsd"/>
  34. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/COMPANIES.xsd"
  35. schemaLocation="../table/COMPANIES.xsd"/>
  36. <xs:import namespace="http://www.opengis.net/gml/3.2"
  37. schemaLocation="../Types/gml.xsd"/>
  38. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/IN7_DZIENNIK_KORESP.xsd"
  39. schemaLocation="../../default_db.IN7_DZIENNIK_KORESP/IN7_DZIENNIK_KORESP/IN7_DZIENNIK_KORESP.xsd"/>
  40. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Kabel_Swiatlowodowy_wsg84.xsd"
  41. schemaLocation="Rozdzielcza_Kabel_Swiatlowodowy_wsg84.xsd"/>
  42. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/SALES_PLAN.xsd"
  43. schemaLocation="SALES_PLAN.xsd"/>
  44. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_koszty_dodatkowe_wsg84.xsd"
  45. schemaLocation="Rozdzielcza_koszty_dodatkowe_wsg84.xsd"/>
  46. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Mikrokanalizacja_do_klienta.xsd"
  47. schemaLocation="Rozdzielcza_Mikrokanalizacja_do_klienta.xsd"/>
  48. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84.xsd"
  49. schemaLocation="Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84.xsd"/>
  50. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_struktura_wewnetrzna_wsg84.xsd"
  51. schemaLocation="Rozdzielcza_struktura_wewnetrzna_wsg84.xsd"/>
  52. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Wykop_przedmiar_na_mikrorurki.xsd"
  53. schemaLocation="Rozdzielcza_Wykop_przedmiar_na_mikrorurki.xsd"/>
  54. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Zabruki.xsd"
  55. schemaLocation="Rozdzielcza_Zabruki.xsd"/>
  56. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_Przeciski_110mm.xsd"
  57. schemaLocation="Rozdzielcza_Przeciski_110mm.xsd"/>
  58. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_PionyKablowe.xsd"
  59. schemaLocation="Rozdzielcza_PionyKablowe.xsd"/>
  60. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/CRM_LISTA_ZASOBOW_OFFERS.xsd"
  61. schemaLocation="CRM_LISTA_ZASOBOW_OFFERS.xsd"/>
  62. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_rurociag_wsg84.xsd"
  63. schemaLocation="../../default_db.Rozdzielcza_rurociag_wsg84/Rozdzielcza_rurociag_wsg84/Rozdzielcza_rurociag_wsg84.xsd"/>
  64. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_rura_oslonowa_magistralna.xsd"
  65. schemaLocation="Rozdzielcza_rura_oslonowa_magistralna.xsd"/>
  66. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/BADANIA_W_TERENIE.xsd"
  67. schemaLocation="BADANIA_W_TERENIE.xsd"/>
  68. <xs:simpleType name="M_DIST_TYPE" id="DYSTRYBUCJI___d4e6500-1_M_DIST_TYP">
  69. <xs:restriction base="xs:string"/>
  70. </xs:simpleType>
  71. <xs:simpleType name="IN__INWESTYCJA_BUDOWA" id="DYSTRYBUCJI___d4e6502-1_IN__INWEST">
  72. <xs:restriction base="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:M_DIST_TYPE">
  73. <xs:enumeration value="IN__INWESTYCJA BUDOWA"/>
  74. </xs:restriction>
  75. </xs:simpleType>
  76. <xs:complexType name="IN7_MK_BAZA_DYSTRYBUCJI" id="DYSTRYBUCJI___d4e6505-1_IN7_MK_BAZ">
  77. <xs:annotation>
  78. <xs:appinfo>
  79. <system_cache__appinfo:heritage>
  80. <system_cache__appinfo:inherit system_cache__appinfo:inherit_ref="default_db:IN7_MK_BAZA_DYSTRYBUCJI" system_cache__appinfo:heritage_acl="true">
  81. <system_cache__appinfo:acl_rule_inherit_to_all_same_name_elements_and_refs/>
  82. <acl_rule_inherit_to_all_refs_by_primary/>
  83. <acl_rule_inherit_to_all_refs_by_local_element system_cache__appinfo:acl_rule_inherit_local_element_name="P_ID"/>
  84. </system_cache__appinfo:inherit>
  85. <system_cache__appinfo:exherit_all system_cache__appinfo:heritage_acl="true" system_cache__appinfo:heritage_sort="true"/>
  86. </system_cache__appinfo:heritage>
  87. </xs:appinfo>
  88. </xs:annotation>
  89. <xs:sequence id="DYSTRYBUCJI___d4e6506-1">
  90. <xs:element name="ID" type="xs:int" id="DYSTRYBUCJI___d4e6507-1_ID"/>
  91. <xs:element name="P_ID" type="xs:int" id="DYSTRYBUCJI___d4e6508-1_P_ID"/>
  92. <xs:element maxOccurs="1"
  93. minOccurs="0"
  94. name="M_DIST_TYPE"
  95. type="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:M_DIST_TYPE"
  96. id="DYSTRYBUCJI___d4e6509-1_M_DIST_TYP"/>
  97. <xs:element name="M_DIST_DESC"
  98. type="xs:string"
  99. id="DYSTRYBUCJI___d4e6510-1_M_DIST_DES"/>
  100. <xs:element maxOccurs="1"
  101. minOccurs="0"
  102. name="M_DIST_DESC_HTML"
  103. id="DYSTRYBUCJI___d4e6511-1_M_DIST_DES">
  104. <xs:simpleType id="DYSTRYBUCJI___d4e6512-1">
  105. <xs:restriction base="xs:string"/>
  106. </xs:simpleType>
  107. </xs:element>
  108. <xs:element maxOccurs="1"
  109. minOccurs="0"
  110. name="the_geom"
  111. type="gml:SurfacePropertyType"
  112. id="DYSTRYBUCJI___d4e6514-1_the_geom"/>
  113. <xs:element maxOccurs="unbounded"
  114. minOccurs="0"
  115. ref="default_db__x3A__IN7_DZIENNIK_KORESP:IN7_DZIENNIK_KORESP"
  116. id="DYSTRYBUCJI___d4e6515-1">
  117. <xs:annotation>
  118. <xs:appinfo>
  119. <system_cache__appinfo:flat_relation_cache>
  120. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  121. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:IN7_DZIENNIK_KORESP/ID_PROJECT"/>
  122. </system_cache__appinfo:flat_relation_cache>
  123. </xs:appinfo>
  124. </xs:annotation>
  125. </xs:element>
  126. <!--<xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_BUD"
  127. id="DYSTRYBUCJI___d4e5715-1">
  128. <xs:annotation>
  129. <xs:appinfo>
  130. <system_cache__appinfo:flat_relation_cache>
  131. <system_cache__appinfo:source system_cache__appinfo:name="ID"
  132. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_BUD/ID_PROJECT"/>
  133. </system_cache__appinfo:flat_relation_cache>
  134. </xs:appinfo>
  135. </xs:annotation>
  136. </xs:element>-->
  137. <xs:element name="L_APPOITMENT_USER"
  138. type="xs:string"
  139. id="DYSTRYBUCJI___d4e6521-1_L_APPOITME"/>
  140. <xs:element ref="default_db__x3A__ADMIN_USERS:L_APPOITMENT_USER"
  141. id="DYSTRYBUCJI___d4e6522-1">
  142. <xs:annotation>
  143. <xs:appinfo>
  144. <system_cache__appinfo:flat_relation_cache>
  145. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER" system_cache__appinfo:ref_engine="view"
  146. system_cache__appinfo:xpath="default_db__x3A__ADMIN_USERS:L_APPOITMENT_USER/ADM_ACCOUNT"/>
  147. </system_cache__appinfo:flat_relation_cache>
  148. </xs:appinfo>
  149. </xs:annotation>
  150. </xs:element>
  151. <xs:element name="ID_BILLING_USERS"
  152. type="xs:string"
  153. id="DYSTRYBUCJI___d4e6527-1_ID_BILLING"/>
  154. <xs:element ref="default_db__x3A__COMPANIES:ID_BILLING_USERS"
  155. id="DYSTRYBUCJI___d4e6529-1">
  156. <xs:annotation>
  157. <xs:appinfo>
  158. <system_cache__appinfo:flat_relation_cache>
  159. <system_cache__appinfo:source system_cache__appinfo:name="ID_BILLING_USERS" system_cache__appinfo:ref_engine="view"
  160. system_cache__appinfo:xpath="default_db__x3A__COMPANIES:ID_BILLING_USERS/ID"/>
  161. </system_cache__appinfo:flat_relation_cache>
  162. </xs:appinfo>
  163. </xs:annotation>
  164. </xs:element>
  165. <xs:element maxOccurs="unbounded"
  166. minOccurs="0"
  167. ref="default_db__x3A__SALES_PLAN:SALES_PLAN"
  168. id="DYSTRYBUCJI___d4e6534-1">
  169. <xs:annotation>
  170. <xs:appinfo>
  171. <system_cache__appinfo:flat_relation_cache>
  172. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  173. system_cache__appinfo:xpath="default_db__x3A__SALES_PLAN:SALES_PLAN/ID_PROJECT"/>
  174. </system_cache__appinfo:flat_relation_cache>
  175. </xs:appinfo>
  176. </xs:annotation>
  177. </xs:element>
  178. <xs:element maxOccurs="unbounded"
  179. minOccurs="0"
  180. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:IN7_MK_BAZA_DYSTRYBUCJI"
  181. id="DYSTRYBUCJI___d4e6539-1">
  182. <xs:annotation>
  183. <xs:appinfo>
  184. <system_cache__appinfo:flat_relation_cache>
  185. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  186. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:IN7_MK_BAZA_DYSTRYBUCJI/P_ID"/>
  187. </system_cache__appinfo:flat_relation_cache>
  188. </xs:appinfo>
  189. </xs:annotation>
  190. </xs:element>
  191. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  192. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:INWESTYCJA_BUDOWA_SIECI"/>-->
  193. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW_OFFERS:CRM_LISTA_ZASOBOW_OFFERS"
  194. maxOccurs="unbounded"
  195. minOccurs="0"
  196. id="DYSTRYBUCJI___d4e6545-1">
  197. <xs:annotation>
  198. <xs:appinfo>
  199. <system_cache__appinfo:flat_relation_cache>
  200. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  201. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW_OFFERS:CRM_LISTA_ZASOBOW_OFFERS/ID_PROJECT"/>
  202. </system_cache__appinfo:flat_relation_cache>
  203. </xs:appinfo>
  204. </xs:annotation>
  205. </xs:element>
  206. <!--<xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DRAFT"
  207. maxOccurs="unbounded"
  208. minOccurs="0"
  209. id="DYSTRYBUCJI___d4e6550-1">
  210. <xs:annotation>
  211. <xs:appinfo>
  212. <system_cache__appinfo:flat_relation_cache>
  213. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  214. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DRAFT/ID_PROJECT"/>
  215. </system_cache__appinfo:flat_relation_cache>
  216. </xs:appinfo>
  217. </xs:annotation>
  218. </xs:element>
  219. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_PROJEKT"
  220. maxOccurs="unbounded"
  221. minOccurs="0"
  222. id="DYSTRYBUCJI___d4e6555-1">
  223. <xs:annotation>
  224. <xs:appinfo>
  225. <system_cache__appinfo:flat_relation_cache>
  226. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  227. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_PROJEKT/ID_PROJECT"/>
  228. </system_cache__appinfo:flat_relation_cache>
  229. </xs:appinfo>
  230. </xs:annotation>
  231. </xs:element>
  232. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_REALIZ"
  233. maxOccurs="unbounded"
  234. minOccurs="0"
  235. id="DYSTRYBUCJI___d4e6560-1">
  236. <xs:annotation>
  237. <xs:appinfo>
  238. <system_cache__appinfo:flat_relation_cache>
  239. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  240. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_REALIZ/ID_PROJECT"/>
  241. </system_cache__appinfo:flat_relation_cache>
  242. </xs:appinfo>
  243. </xs:annotation>
  244. </xs:element>
  245. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_OFFER"
  246. maxOccurs="unbounded"
  247. minOccurs="0"
  248. id="DYSTRYBUCJI___d4e6565-1">
  249. <xs:annotation>
  250. <xs:appinfo>
  251. <system_cache__appinfo:flat_relation_cache>
  252. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  253. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_OFFER/ID_PROJECT"/>
  254. </system_cache__appinfo:flat_relation_cache>
  255. </xs:appinfo>
  256. </xs:annotation>
  257. </xs:element>
  258. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_UZG"
  259. maxOccurs="unbounded"
  260. minOccurs="0"
  261. id="DYSTRYBUCJI___d4e6570-1">
  262. <xs:annotation>
  263. <xs:appinfo>
  264. <system_cache__appinfo:flat_relation_cache>
  265. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  266. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_UZG/ID_PROJECT"/>
  267. </system_cache__appinfo:flat_relation_cache>
  268. </xs:appinfo>
  269. </xs:annotation>
  270. </xs:element>
  271. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_UZG"
  272. maxOccurs="unbounded"
  273. minOccurs="0"
  274. id="DYSTRYBUCJI___d4e6575-1">
  275. <xs:annotation>
  276. <xs:appinfo>
  277. <system_cache__appinfo:flat_relation_cache>
  278. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  279. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_UZG/ID_PROJECT"/>
  280. </system_cache__appinfo:flat_relation_cache>
  281. </xs:appinfo>
  282. </xs:annotation>
  283. </xs:element>-->
  284. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  285. ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_UZG_ZUD"
  286. minOccurs="0"
  287. maxOccurs="unbounded">
  288. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  289. <xs:appinfo>
  290. <system_cache__appinfo:flat_relation_cache>
  291. <system_cache__appinfo:source system_cache__appinfo:name="ID"
  292. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_UZG_ZUD/ID_PROJECT"/>
  293. </system_cache__appinfo:flat_relation_cache>
  294. </xs:appinfo>
  295. </xs:annotation>
  296. </xs:element>-->
  297. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  298. ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_UZG_ZUD"
  299. minOccurs="0"
  300. maxOccurs="unbounded">
  301. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  302. <xs:appinfo>
  303. <system_cache__appinfo:flat_relation_cache>
  304. <system_cache__appinfo:source system_cache__appinfo:name="ID"
  305. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_UZG_ZUD/ID_PROJECT"/>
  306. </system_cache__appinfo:flat_relation_cache>
  307. </xs:appinfo>
  308. </xs:annotation>
  309. </xs:element>-->
  310. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_ZLECENIE"
  311. minOccurs="0"
  312. maxOccurs="unbounded"
  313. id="DYSTRYBUCJI___d4e6583-1">
  314. <xs:annotation>
  315. <xs:appinfo>
  316. <system_cache__appinfo:flat_relation_cache>
  317. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  318. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_ZLECENIE/ID_PROJECT"/>
  319. </system_cache__appinfo:flat_relation_cache>
  320. </xs:appinfo>
  321. </xs:annotation>
  322. </xs:element>
  323. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_ZGL_ODB"
  324. minOccurs="0"
  325. maxOccurs="unbounded"
  326. id="DYSTRYBUCJI___d4e6588-1">
  327. <xs:annotation>
  328. <xs:appinfo>
  329. <system_cache__appinfo:flat_relation_cache>
  330. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  331. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_ZGL_ODB/ID_PROJECT"/>
  332. </system_cache__appinfo:flat_relation_cache>
  333. </xs:appinfo>
  334. </xs:annotation>
  335. </xs:element>-->
  336. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  337. ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_POM_GEOD"
  338. minOccurs="0"
  339. maxOccurs="unbounded">
  340. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  341. <xs:appinfo>
  342. <system_cache__appinfo:flat_relation_cache>
  343. <system_cache__appinfo:source system_cache__appinfo:name="ID"
  344. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_POM_GEOD/ID_PROJECT"/>
  345. </system_cache__appinfo:flat_relation_cache>
  346. </xs:appinfo>
  347. </xs:annotation>
  348. </xs:element>-->
  349. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DRAFT"
  350. minOccurs="0"
  351. maxOccurs="unbounded"
  352. id="DYSTRYBUCJI___d4e6594-1">
  353. <xs:annotation>
  354. <xs:appinfo>
  355. <system_cache__appinfo:flat_relation_cache>
  356. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  357. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DRAFT/ID_PROJECT"/>
  358. </system_cache__appinfo:flat_relation_cache>
  359. </xs:appinfo>
  360. </xs:annotation>
  361. </xs:element>
  362. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_PROJEKT"
  363. minOccurs="0"
  364. maxOccurs="unbounded"
  365. id="DYSTRYBUCJI___d4e6599-1">
  366. <xs:annotation>
  367. <xs:appinfo>
  368. <system_cache__appinfo:flat_relation_cache>
  369. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  370. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_PROJEKT/ID_PROJECT"/>
  371. </system_cache__appinfo:flat_relation_cache>
  372. </xs:appinfo>
  373. </xs:annotation>
  374. </xs:element>
  375. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_REALIZ"
  376. minOccurs="0"
  377. maxOccurs="unbounded"
  378. id="DYSTRYBUCJI___d4e6604-1">
  379. <xs:annotation>
  380. <xs:appinfo>
  381. <system_cache__appinfo:flat_relation_cache>
  382. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  383. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_REALIZ/ID_PROJECT"/>
  384. </system_cache__appinfo:flat_relation_cache>
  385. </xs:appinfo>
  386. </xs:annotation>
  387. </xs:element>
  388. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_OFFER"
  389. minOccurs="0"
  390. maxOccurs="unbounded"
  391. id="DYSTRYBUCJI___d4e6609-1">
  392. <xs:annotation>
  393. <xs:appinfo>
  394. <system_cache__appinfo:flat_relation_cache>
  395. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  396. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_OFFER/ID_PROJECT"/>
  397. </system_cache__appinfo:flat_relation_cache>
  398. </xs:appinfo>
  399. </xs:annotation>
  400. </xs:element>
  401. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_UZG"
  402. minOccurs="0"
  403. maxOccurs="unbounded"
  404. id="DYSTRYBUCJI___d4e6614-1">
  405. <xs:annotation>
  406. <xs:appinfo>
  407. <system_cache__appinfo:flat_relation_cache>
  408. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  409. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_UZG/ID_PROJECT"/>
  410. </system_cache__appinfo:flat_relation_cache>
  411. </xs:appinfo>
  412. </xs:annotation>
  413. </xs:element>
  414. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_UZG"
  415. minOccurs="0"
  416. maxOccurs="unbounded"
  417. id="DYSTRYBUCJI___d4e6619-1">
  418. <xs:annotation>
  419. <xs:appinfo>
  420. <system_cache__appinfo:flat_relation_cache>
  421. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  422. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_UZG/ID_PROJECT"/>
  423. </system_cache__appinfo:flat_relation_cache>
  424. </xs:appinfo>
  425. </xs:annotation>
  426. </xs:element>-->
  427. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  428. ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_UZG_ZUD"
  429. minOccurs="0"
  430. maxOccurs="unbounded">
  431. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  432. <xs:appinfo>
  433. <system_cache__appinfo:flat_relation_cache>
  434. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  435. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_UZG_ZUD/ID_PROJECT"/>
  436. </system_cache__appinfo:flat_relation_cache>
  437. </xs:appinfo>
  438. </xs:annotation>
  439. </xs:element>-->
  440. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  441. ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_UZG_ZUD"
  442. minOccurs="0"
  443. maxOccurs="unbounded">
  444. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  445. <xs:appinfo>
  446. <system_cache__appinfo:flat_relation_cache>
  447. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  448. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_UZG_ZUD/ID_PROJECT"/>
  449. </system_cache__appinfo:flat_relation_cache>
  450. </xs:appinfo>
  451. </xs:annotation>
  452. </xs:element>-->
  453. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_ZLECENIE"
  454. minOccurs="0"
  455. maxOccurs="unbounded"
  456. id="DYSTRYBUCJI___d4e6627-1">
  457. <xs:annotation>
  458. <xs:appinfo>
  459. <system_cache__appinfo:flat_relation_cache>
  460. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  461. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_ZLECENIE/ID_PROJECT"/>
  462. </system_cache__appinfo:flat_relation_cache>
  463. </xs:appinfo>
  464. </xs:annotation>
  465. </xs:element>
  466. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_ZGL_ODB"
  467. minOccurs="0"
  468. maxOccurs="unbounded"
  469. id="DYSTRYBUCJI___d4e6632-1">
  470. <xs:annotation>
  471. <xs:appinfo>
  472. <system_cache__appinfo:flat_relation_cache>
  473. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  474. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_ZGL_ODB/ID_PROJECT"/>
  475. </system_cache__appinfo:flat_relation_cache>
  476. </xs:appinfo>
  477. </xs:annotation>
  478. </xs:element>-->
  479. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  480. ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_POM_GEOD"
  481. minOccurs="0"
  482. maxOccurs="unbounded">
  483. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  484. <xs:appinfo>
  485. <system_cache__appinfo:flat_relation_cache>
  486. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  487. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_POM_GEOD/ID_PROJECT"/>
  488. </system_cache__appinfo:flat_relation_cache>
  489. </xs:appinfo>
  490. </xs:annotation>
  491. </xs:element>-->
  492. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DRAFT"
  493. minOccurs="0"
  494. maxOccurs="unbounded"
  495. id="DYSTRYBUCJI___d4e6638-1">
  496. <xs:annotation>
  497. <xs:appinfo>
  498. <system_cache__appinfo:flat_relation_cache>
  499. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  500. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DRAFT/ID_PROJECT"/>
  501. </system_cache__appinfo:flat_relation_cache>
  502. </xs:appinfo>
  503. </xs:annotation>
  504. </xs:element>
  505. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_PROJEKT"
  506. minOccurs="0"
  507. maxOccurs="unbounded"
  508. id="DYSTRYBUCJI___d4e6643-1">
  509. <xs:annotation>
  510. <xs:appinfo>
  511. <system_cache__appinfo:flat_relation_cache>
  512. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  513. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_PROJEKT/ID_PROJECT"/>
  514. </system_cache__appinfo:flat_relation_cache>
  515. </xs:appinfo>
  516. </xs:annotation>
  517. </xs:element>
  518. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_REALIZ"
  519. minOccurs="0"
  520. maxOccurs="unbounded"
  521. id="DYSTRYBUCJI___d4e6648-1">
  522. <xs:annotation>
  523. <xs:appinfo>
  524. <system_cache__appinfo:flat_relation_cache>
  525. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  526. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_REALIZ/ID_PROJECT"/>
  527. </system_cache__appinfo:flat_relation_cache>
  528. </xs:appinfo>
  529. </xs:annotation>
  530. </xs:element>
  531. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_OFFER"
  532. minOccurs="0"
  533. maxOccurs="unbounded"
  534. id="DYSTRYBUCJI___d4e6653-1">
  535. <xs:annotation>
  536. <xs:appinfo>
  537. <system_cache__appinfo:flat_relation_cache>
  538. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  539. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_OFFER/ID_PROJECT"/>
  540. </system_cache__appinfo:flat_relation_cache>
  541. </xs:appinfo>
  542. </xs:annotation>
  543. </xs:element>
  544. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_UZG"
  545. minOccurs="0"
  546. maxOccurs="unbounded"
  547. id="DYSTRYBUCJI___d4e6658-1">
  548. <xs:annotation>
  549. <xs:appinfo>
  550. <system_cache__appinfo:flat_relation_cache>
  551. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  552. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_UZG/ID_PROJECT"/>
  553. </system_cache__appinfo:flat_relation_cache>
  554. </xs:appinfo>
  555. </xs:annotation>
  556. </xs:element>
  557. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_UZG"
  558. minOccurs="0"
  559. maxOccurs="unbounded"
  560. id="DYSTRYBUCJI___d4e6663-1">
  561. <xs:annotation>
  562. <xs:appinfo>
  563. <system_cache__appinfo:flat_relation_cache>
  564. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  565. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_UZG/ID_PROJECT"/>
  566. </system_cache__appinfo:flat_relation_cache>
  567. </xs:appinfo>
  568. </xs:annotation>
  569. </xs:element>
  570. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_UZG_ZUD"
  571. minOccurs="0"
  572. maxOccurs="unbounded"
  573. id="DYSTRYBUCJI___d4e6668-1">
  574. <xs:annotation>
  575. <xs:appinfo>
  576. <system_cache__appinfo:flat_relation_cache>
  577. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  578. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_UZG_ZUD/ID_PROJECT"/>
  579. </system_cache__appinfo:flat_relation_cache>
  580. </xs:appinfo>
  581. </xs:annotation>
  582. </xs:element>
  583. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_UZG_ZUD"
  584. minOccurs="0"
  585. maxOccurs="unbounded"
  586. id="DYSTRYBUCJI___d4e6673-1">
  587. <xs:annotation>
  588. <xs:appinfo>
  589. <system_cache__appinfo:flat_relation_cache>
  590. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  591. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_UZG_ZUD/ID_PROJECT"/>
  592. </system_cache__appinfo:flat_relation_cache>
  593. </xs:appinfo>
  594. </xs:annotation>
  595. </xs:element>
  596. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_ZLECENIE"
  597. minOccurs="0"
  598. maxOccurs="unbounded"
  599. id="DYSTRYBUCJI___d4e6679-1">
  600. <xs:annotation>
  601. <xs:appinfo>
  602. <system_cache__appinfo:flat_relation_cache>
  603. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  604. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_ZLECENIE/ID_PROJECT"/>
  605. </system_cache__appinfo:flat_relation_cache>
  606. </xs:appinfo>
  607. </xs:annotation>
  608. </xs:element>
  609. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_ZGL_ODB"
  610. minOccurs="0"
  611. maxOccurs="unbounded"
  612. id="DYSTRYBUCJI___d4e6684-1">
  613. <xs:annotation>
  614. <xs:appinfo>
  615. <system_cache__appinfo:flat_relation_cache>
  616. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  617. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_ZGL_ODB/ID_PROJECT"/>
  618. </system_cache__appinfo:flat_relation_cache>
  619. </xs:appinfo>
  620. </xs:annotation>
  621. </xs:element>
  622. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_POM_GEOD"
  623. minOccurs="0"
  624. maxOccurs="unbounded"
  625. id="DYSTRYBUCJI___d4e6689-1">
  626. <xs:annotation>
  627. <xs:appinfo>
  628. <system_cache__appinfo:flat_relation_cache>
  629. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  630. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_POM_GEOD/ID_PROJECT"/>
  631. </system_cache__appinfo:flat_relation_cache>
  632. </xs:appinfo>
  633. </xs:annotation>
  634. </xs:element>
  635. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DRAFT"
  636. minOccurs="0"
  637. maxOccurs="unbounded"
  638. id="DYSTRYBUCJI___d4e6694-1">
  639. <xs:annotation>
  640. <xs:appinfo>
  641. <system_cache__appinfo:flat_relation_cache>
  642. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  643. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DRAFT/ID_PROJECT"/>
  644. </system_cache__appinfo:flat_relation_cache>
  645. </xs:appinfo>
  646. </xs:annotation>
  647. </xs:element>
  648. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_PROJEKT"
  649. minOccurs="0"
  650. maxOccurs="unbounded"
  651. id="DYSTRYBUCJI___d4e6699-1">
  652. <xs:annotation>
  653. <xs:appinfo>
  654. <system_cache__appinfo:flat_relation_cache>
  655. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  656. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_PROJEKT/ID_PROJECT"/>
  657. </system_cache__appinfo:flat_relation_cache>
  658. </xs:appinfo>
  659. </xs:annotation>
  660. </xs:element>
  661. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_REALIZ"
  662. minOccurs="0"
  663. maxOccurs="unbounded"
  664. id="DYSTRYBUCJI___d4e6704-1">
  665. <xs:annotation>
  666. <xs:appinfo>
  667. <system_cache__appinfo:flat_relation_cache>
  668. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  669. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_REALIZ/ID_PROJECT"/>
  670. </system_cache__appinfo:flat_relation_cache>
  671. </xs:appinfo>
  672. </xs:annotation>
  673. </xs:element>
  674. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_OFFER"
  675. minOccurs="0"
  676. maxOccurs="unbounded"
  677. id="DYSTRYBUCJI___d4e6709-1">
  678. <xs:annotation>
  679. <xs:appinfo>
  680. <system_cache__appinfo:flat_relation_cache>
  681. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  682. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_OFFER/ID_PROJECT"/>
  683. </system_cache__appinfo:flat_relation_cache>
  684. </xs:appinfo>
  685. </xs:annotation>
  686. </xs:element>
  687. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_UZG"
  688. minOccurs="0"
  689. maxOccurs="unbounded"
  690. id="DYSTRYBUCJI___d4e6714-1">
  691. <xs:annotation>
  692. <xs:appinfo>
  693. <system_cache__appinfo:flat_relation_cache>
  694. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  695. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_UZG/ID_PROJECT"/>
  696. </system_cache__appinfo:flat_relation_cache>
  697. </xs:appinfo>
  698. </xs:annotation>
  699. </xs:element>
  700. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_UZG"
  701. minOccurs="0"
  702. maxOccurs="unbounded"
  703. id="DYSTRYBUCJI___d4e6719-1">
  704. <xs:annotation>
  705. <xs:appinfo>
  706. <system_cache__appinfo:flat_relation_cache>
  707. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  708. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_UZG/ID_PROJECT"/>
  709. </system_cache__appinfo:flat_relation_cache>
  710. </xs:appinfo>
  711. </xs:annotation>
  712. </xs:element>
  713. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_UZG_ZUD"
  714. minOccurs="0"
  715. maxOccurs="unbounded"
  716. id="DYSTRYBUCJI___d4e6724-1">
  717. <xs:annotation>
  718. <xs:appinfo>
  719. <system_cache__appinfo:flat_relation_cache>
  720. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  721. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_UZG_ZUD/ID_PROJECT"/>
  722. </system_cache__appinfo:flat_relation_cache>
  723. </xs:appinfo>
  724. </xs:annotation>
  725. </xs:element>
  726. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_UZG_ZUD"
  727. minOccurs="0"
  728. maxOccurs="unbounded"
  729. id="DYSTRYBUCJI___d4e6729-1">
  730. <xs:annotation>
  731. <xs:appinfo>
  732. <system_cache__appinfo:flat_relation_cache>
  733. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  734. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_UZG_ZUD/ID_PROJECT"/>
  735. </system_cache__appinfo:flat_relation_cache>
  736. </xs:appinfo>
  737. </xs:annotation>
  738. </xs:element>
  739. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_ZLECENIE"
  740. minOccurs="0"
  741. maxOccurs="unbounded"
  742. id="DYSTRYBUCJI___d4e6735-1">
  743. <xs:annotation>
  744. <xs:appinfo>
  745. <system_cache__appinfo:flat_relation_cache>
  746. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  747. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_ZLECENIE/ID_PROJECT"/>
  748. </system_cache__appinfo:flat_relation_cache>
  749. </xs:appinfo>
  750. </xs:annotation>
  751. </xs:element>
  752. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_ZGL_ODB"
  753. minOccurs="0"
  754. maxOccurs="unbounded"
  755. id="DYSTRYBUCJI___d4e6740-1">
  756. <xs:annotation>
  757. <xs:appinfo>
  758. <system_cache__appinfo:flat_relation_cache>
  759. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  760. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_ZGL_ODB/ID_PROJECT"/>
  761. </system_cache__appinfo:flat_relation_cache>
  762. </xs:appinfo>
  763. </xs:annotation>
  764. </xs:element>
  765. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_POM_GEOD"
  766. minOccurs="0"
  767. maxOccurs="unbounded"
  768. id="DYSTRYBUCJI___d4e6745-1">
  769. <xs:annotation>
  770. <xs:appinfo>
  771. <system_cache__appinfo:flat_relation_cache>
  772. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  773. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_POM_GEOD/ID_PROJECT"/>
  774. </system_cache__appinfo:flat_relation_cache>
  775. </xs:appinfo>
  776. </xs:annotation>
  777. </xs:element>
  778. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DRAFT"
  779. minOccurs="0"
  780. maxOccurs="unbounded"
  781. id="DYSTRYBUCJI___d4e6750-1">
  782. <xs:annotation>
  783. <xs:appinfo>
  784. <system_cache__appinfo:flat_relation_cache>
  785. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  786. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DRAFT/ID_PROJECT"/>
  787. </system_cache__appinfo:flat_relation_cache>
  788. </xs:appinfo>
  789. </xs:annotation>
  790. </xs:element>
  791. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_PROJEKT"
  792. minOccurs="0"
  793. maxOccurs="unbounded"
  794. id="DYSTRYBUCJI___d4e6755-1">
  795. <xs:annotation>
  796. <xs:appinfo>
  797. <system_cache__appinfo:flat_relation_cache>
  798. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  799. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_PROJEKT/ID_PROJECT"/>
  800. </system_cache__appinfo:flat_relation_cache>
  801. </xs:appinfo>
  802. </xs:annotation>
  803. </xs:element>
  804. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_REALIZ"
  805. minOccurs="0"
  806. maxOccurs="unbounded"
  807. id="DYSTRYBUCJI___d4e6760-1">
  808. <xs:annotation>
  809. <xs:appinfo>
  810. <system_cache__appinfo:flat_relation_cache>
  811. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  812. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_REALIZ/ID_PROJECT"/>
  813. </system_cache__appinfo:flat_relation_cache>
  814. </xs:appinfo>
  815. </xs:annotation>
  816. </xs:element>
  817. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_OFFER"
  818. minOccurs="0"
  819. maxOccurs="unbounded"
  820. id="DYSTRYBUCJI___d4e6765-1">
  821. <xs:annotation>
  822. <xs:appinfo>
  823. <system_cache__appinfo:flat_relation_cache>
  824. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  825. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_OFFER/ID_PROJECT"/>
  826. </system_cache__appinfo:flat_relation_cache>
  827. </xs:appinfo>
  828. </xs:annotation>
  829. </xs:element>
  830. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_UZG"
  831. minOccurs="0"
  832. maxOccurs="unbounded"
  833. id="DYSTRYBUCJI___d4e6770-1">
  834. <xs:annotation>
  835. <xs:appinfo>
  836. <system_cache__appinfo:flat_relation_cache>
  837. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  838. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_UZG/ID_PROJECT"/>
  839. </system_cache__appinfo:flat_relation_cache>
  840. </xs:appinfo>
  841. </xs:annotation>
  842. </xs:element>
  843. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_UZG"
  844. minOccurs="0"
  845. maxOccurs="unbounded"
  846. id="DYSTRYBUCJI___d4e6775-1">
  847. <xs:annotation>
  848. <xs:appinfo>
  849. <system_cache__appinfo:flat_relation_cache>
  850. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  851. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_UZG/ID_PROJECT"/>
  852. </system_cache__appinfo:flat_relation_cache>
  853. </xs:appinfo>
  854. </xs:annotation>
  855. </xs:element>-->
  856. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  857. ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_UZG_ZUD"
  858. minOccurs="0"
  859. maxOccurs="unbounded">
  860. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  861. <xs:appinfo>
  862. <system_cache__appinfo:flat_relation_cache>
  863. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  864. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_UZG_ZUD/ID_PROJECT"/>
  865. </system_cache__appinfo:flat_relation_cache>
  866. </xs:appinfo>
  867. </xs:annotation>
  868. </xs:element>-->
  869. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  870. ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_UZG_ZUD"
  871. minOccurs="0"
  872. maxOccurs="unbounded">
  873. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  874. <xs:appinfo>
  875. <system_cache__appinfo:flat_relation_cache>
  876. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  877. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_UZG_ZUD/ID_PROJECT"/>
  878. </system_cache__appinfo:flat_relation_cache>
  879. </xs:appinfo>
  880. </xs:annotation>
  881. </xs:element>-->
  882. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_ZLECENIE"
  883. minOccurs="0"
  884. maxOccurs="unbounded"
  885. id="DYSTRYBUCJI___d4e6783-1">
  886. <xs:annotation>
  887. <xs:appinfo>
  888. <system_cache__appinfo:flat_relation_cache>
  889. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  890. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_ZLECENIE/ID_PROJECT"/>
  891. </system_cache__appinfo:flat_relation_cache>
  892. </xs:appinfo>
  893. </xs:annotation>
  894. </xs:element>
  895. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_ZGL_ODB"
  896. minOccurs="0"
  897. maxOccurs="unbounded"
  898. id="DYSTRYBUCJI___d4e6788-1">
  899. <xs:annotation>
  900. <xs:appinfo>
  901. <system_cache__appinfo:flat_relation_cache>
  902. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  903. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_ZGL_ODB/ID_PROJECT"/>
  904. </system_cache__appinfo:flat_relation_cache>
  905. </xs:appinfo>
  906. </xs:annotation>
  907. </xs:element>-->
  908. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  909. ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_POM_GEOD"
  910. minOccurs="0"
  911. maxOccurs="unbounded">
  912. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  913. <xs:appinfo>
  914. <system_cache__appinfo:flat_relation_cache>
  915. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  916. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_POM_GEOD/ID_PROJECT"/>
  917. </system_cache__appinfo:flat_relation_cache>
  918. </xs:appinfo>
  919. </xs:annotation>
  920. </xs:element>-->
  921. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DRAFT"
  922. minOccurs="0"
  923. maxOccurs="unbounded"
  924. id="DYSTRYBUCJI___d4e6794-1">
  925. <xs:annotation>
  926. <xs:appinfo>
  927. <system_cache__appinfo:flat_relation_cache>
  928. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  929. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DRAFT/ID_PROJECT"/>
  930. </system_cache__appinfo:flat_relation_cache>
  931. </xs:appinfo>
  932. </xs:annotation>
  933. </xs:element>
  934. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_PROJEKT"
  935. minOccurs="0"
  936. maxOccurs="unbounded"
  937. id="DYSTRYBUCJI___d4e6799-1">
  938. <xs:annotation>
  939. <xs:appinfo>
  940. <system_cache__appinfo:flat_relation_cache>
  941. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  942. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_PROJEKT/ID_PROJECT"/>
  943. </system_cache__appinfo:flat_relation_cache>
  944. </xs:appinfo>
  945. </xs:annotation>
  946. </xs:element>
  947. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_REALIZ"
  948. minOccurs="0"
  949. maxOccurs="unbounded"
  950. id="DYSTRYBUCJI___d4e6804-1">
  951. <xs:annotation>
  952. <xs:appinfo>
  953. <system_cache__appinfo:flat_relation_cache>
  954. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  955. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_REALIZ/ID_PROJECT"/>
  956. </system_cache__appinfo:flat_relation_cache>
  957. </xs:appinfo>
  958. </xs:annotation>
  959. </xs:element>
  960. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_OFFER"
  961. minOccurs="0"
  962. maxOccurs="unbounded"
  963. id="DYSTRYBUCJI___d4e6809-1">
  964. <xs:annotation>
  965. <xs:appinfo>
  966. <system_cache__appinfo:flat_relation_cache>
  967. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  968. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_OFFER/ID_PROJECT"/>
  969. </system_cache__appinfo:flat_relation_cache>
  970. </xs:appinfo>
  971. </xs:annotation>
  972. </xs:element>
  973. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_UZG"
  974. minOccurs="0"
  975. maxOccurs="unbounded"
  976. id="DYSTRYBUCJI___d4e6814-1">
  977. <xs:annotation>
  978. <xs:appinfo>
  979. <system_cache__appinfo:flat_relation_cache>
  980. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  981. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_UZG/ID_PROJECT"/>
  982. </system_cache__appinfo:flat_relation_cache>
  983. </xs:appinfo>
  984. </xs:annotation>
  985. </xs:element>
  986. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_UZG"
  987. minOccurs="0"
  988. maxOccurs="unbounded"
  989. id="DYSTRYBUCJI___d4e6819-1">
  990. <xs:annotation>
  991. <xs:appinfo>
  992. <system_cache__appinfo:flat_relation_cache>
  993. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  994. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_UZG/ID_PROJECT"/>
  995. </system_cache__appinfo:flat_relation_cache>
  996. </xs:appinfo>
  997. </xs:annotation>
  998. </xs:element>-->
  999. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  1000. ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_UZG_ZUD"
  1001. minOccurs="0"
  1002. maxOccurs="unbounded">
  1003. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  1004. <xs:appinfo>
  1005. <system_cache__appinfo:flat_relation_cache>
  1006. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1007. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_UZG_ZUD/ID_PROJECT"/>
  1008. </system_cache__appinfo:flat_relation_cache>
  1009. </xs:appinfo>
  1010. </xs:annotation>
  1011. </xs:element>
  1012. <xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  1013. ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_UZG_ZUD"
  1014. minOccurs="0"
  1015. maxOccurs="unbounded">
  1016. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  1017. <xs:appinfo>
  1018. <system_cache__appinfo:flat_relation_cache>
  1019. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1020. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_UZG_ZUD/ID_PROJECT"/>
  1021. </system_cache__appinfo:flat_relation_cache>
  1022. </xs:appinfo>
  1023. </xs:annotation>
  1024. </xs:element>-->
  1025. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_ZLECENIE"
  1026. minOccurs="0"
  1027. maxOccurs="unbounded"
  1028. id="DYSTRYBUCJI___d4e6825-1">
  1029. <xs:annotation>
  1030. <xs:appinfo>
  1031. <system_cache__appinfo:flat_relation_cache>
  1032. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1033. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_ZLECENIE/ID_PROJECT"/>
  1034. </system_cache__appinfo:flat_relation_cache>
  1035. </xs:appinfo>
  1036. </xs:annotation>
  1037. </xs:element>
  1038. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_ZGL_ODB"
  1039. minOccurs="0"
  1040. maxOccurs="unbounded"
  1041. id="DYSTRYBUCJI___d4e6831-1">
  1042. <xs:annotation>
  1043. <xs:appinfo>
  1044. <system_cache__appinfo:flat_relation_cache>
  1045. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1046. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_ZGL_ODB/ID_PROJECT"/>
  1047. </system_cache__appinfo:flat_relation_cache>
  1048. </xs:appinfo>
  1049. </xs:annotation>
  1050. </xs:element>-->
  1051. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  1052. ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_POM_GEOD"
  1053. minOccurs="0"
  1054. maxOccurs="unbounded">
  1055. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  1056. <xs:appinfo>
  1057. <system_cache__appinfo:flat_relation_cache>
  1058. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1059. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_POM_GEOD/ID_PROJECT"/>
  1060. </system_cache__appinfo:flat_relation_cache>
  1061. </xs:appinfo>
  1062. </xs:annotation>
  1063. </xs:element>-->
  1064. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DRAFT"
  1065. minOccurs="0"
  1066. maxOccurs="unbounded"
  1067. id="DYSTRYBUCJI___d4e6837-1">
  1068. <xs:annotation>
  1069. <xs:appinfo>
  1070. <system_cache__appinfo:flat_relation_cache>
  1071. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1072. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DRAFT/ID_PROJECT"/>
  1073. </system_cache__appinfo:flat_relation_cache>
  1074. </xs:appinfo>
  1075. </xs:annotation>
  1076. </xs:element>
  1077. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_PROJEKT"
  1078. minOccurs="0"
  1079. maxOccurs="unbounded"
  1080. id="DYSTRYBUCJI___d4e6842-1">
  1081. <xs:annotation>
  1082. <xs:appinfo>
  1083. <system_cache__appinfo:flat_relation_cache>
  1084. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1085. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_PROJEKT/ID_PROJECT"/>
  1086. </system_cache__appinfo:flat_relation_cache>
  1087. </xs:appinfo>
  1088. </xs:annotation>
  1089. </xs:element>
  1090. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_REALIZ"
  1091. minOccurs="0"
  1092. maxOccurs="unbounded"
  1093. id="DYSTRYBUCJI___d4e6847-1">
  1094. <xs:annotation>
  1095. <xs:appinfo>
  1096. <system_cache__appinfo:flat_relation_cache>
  1097. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1098. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_REALIZ/ID_PROJECT"/>
  1099. </system_cache__appinfo:flat_relation_cache>
  1100. </xs:appinfo>
  1101. </xs:annotation>
  1102. </xs:element>
  1103. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_OFFER"
  1104. minOccurs="0"
  1105. maxOccurs="unbounded"
  1106. id="DYSTRYBUCJI___d4e6852-1">
  1107. <xs:annotation>
  1108. <xs:appinfo>
  1109. <system_cache__appinfo:flat_relation_cache>
  1110. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1111. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_OFFER/ID_PROJECT"/>
  1112. </system_cache__appinfo:flat_relation_cache>
  1113. </xs:appinfo>
  1114. </xs:annotation>
  1115. </xs:element>
  1116. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_UZG"
  1117. minOccurs="0"
  1118. maxOccurs="unbounded"
  1119. id="DYSTRYBUCJI___d4e6857-1">
  1120. <xs:annotation>
  1121. <xs:appinfo>
  1122. <system_cache__appinfo:flat_relation_cache>
  1123. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1124. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_UZG/ID_PROJECT"/>
  1125. </system_cache__appinfo:flat_relation_cache>
  1126. </xs:appinfo>
  1127. </xs:annotation>
  1128. </xs:element>
  1129. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_UZG"
  1130. minOccurs="0"
  1131. maxOccurs="unbounded"
  1132. id="DYSTRYBUCJI___d4e6862-1">
  1133. <xs:annotation>
  1134. <xs:appinfo>
  1135. <system_cache__appinfo:flat_relation_cache>
  1136. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1137. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_UZG/ID_PROJECT"/>
  1138. </system_cache__appinfo:flat_relation_cache>
  1139. </xs:appinfo>
  1140. </xs:annotation>
  1141. </xs:element>
  1142. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_UZG_ZUD"
  1143. minOccurs="0"
  1144. maxOccurs="unbounded"
  1145. id="DYSTRYBUCJI___d4e6867-1">
  1146. <xs:annotation>
  1147. <xs:appinfo>
  1148. <system_cache__appinfo:flat_relation_cache>
  1149. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1150. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_UZG_ZUD/ID_PROJECT"/>
  1151. </system_cache__appinfo:flat_relation_cache>
  1152. </xs:appinfo>
  1153. </xs:annotation>
  1154. </xs:element>
  1155. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_UZG_ZUD"
  1156. minOccurs="0"
  1157. maxOccurs="unbounded"
  1158. id="DYSTRYBUCJI___d4e6872-1">
  1159. <xs:annotation>
  1160. <xs:appinfo>
  1161. <system_cache__appinfo:flat_relation_cache>
  1162. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1163. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_UZG_ZUD/ID_PROJECT"/>
  1164. </system_cache__appinfo:flat_relation_cache>
  1165. </xs:appinfo>
  1166. </xs:annotation>
  1167. </xs:element>
  1168. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_ZLECENIE"
  1169. minOccurs="0"
  1170. maxOccurs="unbounded"
  1171. id="DYSTRYBUCJI___d4e6877-1">
  1172. <xs:annotation>
  1173. <xs:appinfo>
  1174. <system_cache__appinfo:flat_relation_cache>
  1175. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1176. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_ZLECENIE/ID_PROJECT"/>
  1177. </system_cache__appinfo:flat_relation_cache>
  1178. </xs:appinfo>
  1179. </xs:annotation>
  1180. </xs:element>
  1181. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_ZGL_ODB"
  1182. minOccurs="0"
  1183. maxOccurs="unbounded"
  1184. id="DYSTRYBUCJI___d4e6883-1">
  1185. <xs:annotation>
  1186. <xs:appinfo>
  1187. <system_cache__appinfo:flat_relation_cache>
  1188. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1189. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_ZGL_ODB/ID_PROJECT"/>
  1190. </system_cache__appinfo:flat_relation_cache>
  1191. </xs:appinfo>
  1192. </xs:annotation>
  1193. </xs:element>
  1194. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_POM_GEOD"
  1195. minOccurs="0"
  1196. maxOccurs="unbounded"
  1197. id="DYSTRYBUCJI___d4e6888-1">
  1198. <xs:annotation>
  1199. <xs:appinfo>
  1200. <system_cache__appinfo:flat_relation_cache>
  1201. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1202. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_POM_GEOD/ID_PROJECT"/>
  1203. </system_cache__appinfo:flat_relation_cache>
  1204. </xs:appinfo>
  1205. </xs:annotation>
  1206. </xs:element>
  1207. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DRAFT"
  1208. minOccurs="0"
  1209. maxOccurs="unbounded"
  1210. id="DYSTRYBUCJI___d4e6893-1">
  1211. <xs:annotation>
  1212. <xs:appinfo>
  1213. <system_cache__appinfo:flat_relation_cache>
  1214. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1215. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DRAFT/ID_PROJECT"/>
  1216. </system_cache__appinfo:flat_relation_cache>
  1217. </xs:appinfo>
  1218. </xs:annotation>
  1219. </xs:element>
  1220. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_PROJEKT"
  1221. minOccurs="0"
  1222. maxOccurs="unbounded"
  1223. id="DYSTRYBUCJI___d4e6898-1">
  1224. <xs:annotation>
  1225. <xs:appinfo>
  1226. <system_cache__appinfo:flat_relation_cache>
  1227. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1228. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_PROJEKT/ID_PROJECT"/>
  1229. </system_cache__appinfo:flat_relation_cache>
  1230. </xs:appinfo>
  1231. </xs:annotation>
  1232. </xs:element>
  1233. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_REALIZ"
  1234. minOccurs="0"
  1235. maxOccurs="unbounded"
  1236. id="DYSTRYBUCJI___d4e6903-1">
  1237. <xs:annotation>
  1238. <xs:appinfo>
  1239. <system_cache__appinfo:flat_relation_cache>
  1240. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1241. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_REALIZ/ID_PROJECT"/>
  1242. </system_cache__appinfo:flat_relation_cache>
  1243. </xs:appinfo>
  1244. </xs:annotation>
  1245. </xs:element>
  1246. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_OFFER"
  1247. minOccurs="0"
  1248. maxOccurs="unbounded"
  1249. id="DYSTRYBUCJI___d4e6908-1">
  1250. <xs:annotation>
  1251. <xs:appinfo>
  1252. <system_cache__appinfo:flat_relation_cache>
  1253. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1254. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_OFFER/ID_PROJECT"/>
  1255. </system_cache__appinfo:flat_relation_cache>
  1256. </xs:appinfo>
  1257. </xs:annotation>
  1258. </xs:element>
  1259. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_UZG"
  1260. minOccurs="0"
  1261. maxOccurs="unbounded"
  1262. id="DYSTRYBUCJI___d4e6913-1">
  1263. <xs:annotation>
  1264. <xs:appinfo>
  1265. <system_cache__appinfo:flat_relation_cache>
  1266. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1267. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_UZG/ID_PROJECT"/>
  1268. </system_cache__appinfo:flat_relation_cache>
  1269. </xs:appinfo>
  1270. </xs:annotation>
  1271. </xs:element>
  1272. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_UZG"
  1273. minOccurs="0"
  1274. maxOccurs="unbounded"
  1275. id="DYSTRYBUCJI___d4e6918-1">
  1276. <xs:annotation>
  1277. <xs:appinfo>
  1278. <system_cache__appinfo:flat_relation_cache>
  1279. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1280. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_UZG/ID_PROJECT"/>
  1281. </system_cache__appinfo:flat_relation_cache>
  1282. </xs:appinfo>
  1283. </xs:annotation>
  1284. </xs:element>-->
  1285. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  1286. ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_UZG_ZUD"
  1287. minOccurs="0"
  1288. maxOccurs="unbounded">
  1289. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  1290. <xs:appinfo>
  1291. <system_cache__appinfo:flat_relation_cache>
  1292. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1293. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_UZG_ZUD/ID_PROJECT"/>
  1294. </system_cache__appinfo:flat_relation_cache>
  1295. </xs:appinfo>
  1296. </xs:annotation>
  1297. </xs:element>-->
  1298. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  1299. ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_UZG_ZUD"
  1300. minOccurs="0"
  1301. maxOccurs="unbounded">
  1302. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  1303. <xs:appinfo>
  1304. <system_cache__appinfo:flat_relation_cache>
  1305. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1306. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_UZG_ZUD/ID_PROJECT"/>
  1307. </system_cache__appinfo:flat_relation_cache>
  1308. </xs:appinfo>
  1309. </xs:annotation>
  1310. </xs:element>-->
  1311. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_ZLECENIE"
  1312. minOccurs="0"
  1313. maxOccurs="unbounded"
  1314. id="DYSTRYBUCJI___d4e6925-1">
  1315. <xs:annotation>
  1316. <xs:appinfo>
  1317. <system_cache__appinfo:flat_relation_cache>
  1318. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1319. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_ZLECENIE/ID_PROJECT"/>
  1320. </system_cache__appinfo:flat_relation_cache>
  1321. </xs:appinfo>
  1322. </xs:annotation>
  1323. </xs:element>
  1324. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_ZGL_ODB"
  1325. minOccurs="0"
  1326. maxOccurs="unbounded"
  1327. id="DYSTRYBUCJI___d4e6931-1">
  1328. <xs:annotation>
  1329. <xs:appinfo>
  1330. <system_cache__appinfo:flat_relation_cache>
  1331. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1332. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_ZGL_ODB/ID_PROJECT"/>
  1333. </system_cache__appinfo:flat_relation_cache>
  1334. </xs:appinfo>
  1335. </xs:annotation>
  1336. </xs:element>
  1337. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_POM_GEOD"
  1338. minOccurs="0"
  1339. maxOccurs="unbounded"
  1340. id="DYSTRYBUCJI___d4e6936-1">
  1341. <xs:annotation>
  1342. <xs:appinfo>
  1343. <system_cache__appinfo:flat_relation_cache>
  1344. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1345. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_POM_GEOD/ID_PROJECT"/>
  1346. </system_cache__appinfo:flat_relation_cache>
  1347. </xs:appinfo>
  1348. </xs:annotation>
  1349. </xs:element>-->
  1350. <xs:element maxOccurs="unbounded"
  1351. minOccurs="0"
  1352. ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DRAFT"
  1353. id="DYSTRYBUCJI___d4e6941-1">
  1354. <xs:annotation>
  1355. <xs:appinfo>
  1356. <system_cache__appinfo:flat_relation_cache>
  1357. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1358. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DRAFT/ID_PROJECT"/>
  1359. </system_cache__appinfo:flat_relation_cache>
  1360. </xs:appinfo>
  1361. </xs:annotation>
  1362. </xs:element>
  1363. <!--<xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_PROJEKT"
  1364. minOccurs="0"
  1365. maxOccurs="unbounded"
  1366. id="DYSTRYBUCJI___d4e6946-1">
  1367. <xs:annotation>
  1368. <xs:appinfo>
  1369. <system_cache__appinfo:flat_relation_cache>
  1370. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1371. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_PROJEKT/ID_PROJECT"/>
  1372. </system_cache__appinfo:flat_relation_cache>
  1373. </xs:appinfo>
  1374. </xs:annotation>
  1375. </xs:element>-->
  1376. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_REALIZ"
  1377. minOccurs="0"
  1378. maxOccurs="unbounded"
  1379. id="DYSTRYBUCJI___d4e6951-1">
  1380. <xs:annotation>
  1381. <xs:appinfo>
  1382. <system_cache__appinfo:flat_relation_cache>
  1383. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1384. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_REALIZ/ID_PROJECT"/>
  1385. </system_cache__appinfo:flat_relation_cache>
  1386. </xs:appinfo>
  1387. </xs:annotation>
  1388. </xs:element>
  1389. <!--<xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_OFFER"
  1390. minOccurs="0"
  1391. maxOccurs="unbounded"
  1392. id="DYSTRYBUCJI___d4e6956-1">
  1393. <xs:annotation>
  1394. <xs:appinfo>
  1395. <system_cache__appinfo:flat_relation_cache>
  1396. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1397. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_OFFER/ID_PROJECT"/>
  1398. </system_cache__appinfo:flat_relation_cache>
  1399. </xs:appinfo>
  1400. </xs:annotation>
  1401. </xs:element>-->
  1402. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_UZG"
  1403. minOccurs="0"
  1404. maxOccurs="unbounded"
  1405. id="DYSTRYBUCJI___d4e6961-1">
  1406. <xs:annotation>
  1407. <xs:appinfo>
  1408. <system_cache__appinfo:flat_relation_cache>
  1409. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1410. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_UZG/ID_PROJECT"/>
  1411. </system_cache__appinfo:flat_relation_cache>
  1412. </xs:appinfo>
  1413. </xs:annotation>
  1414. </xs:element>
  1415. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_UZG"
  1416. minOccurs="0"
  1417. maxOccurs="unbounded"
  1418. id="DYSTRYBUCJI___d4e6966-1">
  1419. <xs:annotation>
  1420. <xs:appinfo>
  1421. <system_cache__appinfo:flat_relation_cache>
  1422. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1423. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_UZG/ID_PROJECT"/>
  1424. </system_cache__appinfo:flat_relation_cache>
  1425. </xs:appinfo>
  1426. </xs:annotation>
  1427. </xs:element>
  1428. <!--<xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_UZG_ZUD"
  1429. minOccurs="0"
  1430. maxOccurs="unbounded"
  1431. id="DYSTRYBUCJI___d4e6971-1">
  1432. <xs:annotation>
  1433. <xs:appinfo>
  1434. <system_cache__appinfo:flat_relation_cache>
  1435. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1436. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_UZG_ZUD/ID_PROJECT"/>
  1437. </system_cache__appinfo:flat_relation_cache>
  1438. </xs:appinfo>
  1439. </xs:annotation>
  1440. </xs:element>-->
  1441. <!--<xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_UZG_ZUD"
  1442. minOccurs="0"
  1443. maxOccurs="unbounded"
  1444. id="DYSTRYBUCJI___d4e6976-1">
  1445. <xs:annotation>
  1446. <xs:appinfo>
  1447. <system_cache__appinfo:flat_relation_cache>
  1448. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1449. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_UZG_ZUD/ID_PROJECT"/>
  1450. </system_cache__appinfo:flat_relation_cache>
  1451. </xs:appinfo>
  1452. </xs:annotation>
  1453. </xs:element>
  1454. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_ZLECENIE"
  1455. minOccurs="0"
  1456. maxOccurs="unbounded"
  1457. id="DYSTRYBUCJI___d4e6981-1">
  1458. <xs:annotation>
  1459. <xs:appinfo>
  1460. <system_cache__appinfo:flat_relation_cache>
  1461. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1462. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_ZLECENIE/ID_PROJECT"/>
  1463. </system_cache__appinfo:flat_relation_cache>
  1464. </xs:appinfo>
  1465. </xs:annotation>
  1466. </xs:element>
  1467. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_ZGL_ODB"
  1468. minOccurs="0"
  1469. maxOccurs="unbounded"
  1470. id="DYSTRYBUCJI___d4e6987-1">
  1471. <xs:annotation>
  1472. <xs:appinfo>
  1473. <system_cache__appinfo:flat_relation_cache>
  1474. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1475. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_ZGL_ODB/ID_PROJECT"/>
  1476. </system_cache__appinfo:flat_relation_cache>
  1477. </xs:appinfo>
  1478. </xs:annotation>
  1479. </xs:element>
  1480. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_POM_GEOD"
  1481. minOccurs="0"
  1482. maxOccurs="unbounded"
  1483. id="DYSTRYBUCJI___d4e6992-1">
  1484. <xs:annotation>
  1485. <xs:appinfo>
  1486. <system_cache__appinfo:flat_relation_cache>
  1487. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1488. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_POM_GEOD/ID_PROJECT"/>
  1489. </system_cache__appinfo:flat_relation_cache>
  1490. </xs:appinfo>
  1491. </xs:annotation>
  1492. </xs:element>-->
  1493. <!-- <xs:element maxOccurs="unbounded"
  1494. minOccurs="0"
  1495. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DRAFT"
  1496. id="DYSTRYBUCJI___d4e6997-1">
  1497. <xs:annotation>
  1498. <xs:appinfo>
  1499. <system_cache__appinfo:flat_relation_cache>
  1500. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1501. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DRAFT/ID_PROJECT"/>
  1502. </system_cache__appinfo:flat_relation_cache>
  1503. </xs:appinfo>
  1504. </xs:annotation>
  1505. </xs:element>
  1506. <xs:element maxOccurs="unbounded"
  1507. minOccurs="0"
  1508. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_PROJEKT"
  1509. id="DYSTRYBUCJI___d4e7002-1">
  1510. <xs:annotation>
  1511. <xs:appinfo>
  1512. <system_cache__appinfo:flat_relation_cache>
  1513. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1514. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_PROJEKT/ID_PROJECT"/>
  1515. </system_cache__appinfo:flat_relation_cache>
  1516. </xs:appinfo>
  1517. </xs:annotation>
  1518. </xs:element>
  1519. <xs:element maxOccurs="unbounded"
  1520. minOccurs="0"
  1521. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_REALIZ"
  1522. id="DYSTRYBUCJI___d4e7007-1">
  1523. <xs:annotation>
  1524. <xs:appinfo>
  1525. <system_cache__appinfo:flat_relation_cache>
  1526. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1527. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_REALIZ/ID_PROJECT"/>
  1528. </system_cache__appinfo:flat_relation_cache>
  1529. </xs:appinfo>
  1530. </xs:annotation>
  1531. </xs:element>
  1532. <xs:element maxOccurs="unbounded"
  1533. minOccurs="0"
  1534. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_OFFER"
  1535. id="DYSTRYBUCJI___d4e7012-1">
  1536. <xs:annotation>
  1537. <xs:appinfo>
  1538. <system_cache__appinfo:flat_relation_cache>
  1539. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1540. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_OFFER/ID_PROJECT"/>
  1541. </system_cache__appinfo:flat_relation_cache>
  1542. </xs:appinfo>
  1543. </xs:annotation>
  1544. </xs:element>
  1545. <xs:element maxOccurs="unbounded"
  1546. minOccurs="0"
  1547. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_UZG"
  1548. id="DYSTRYBUCJI___d4e7017-1">
  1549. <xs:annotation>
  1550. <xs:appinfo>
  1551. <system_cache__appinfo:flat_relation_cache>
  1552. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1553. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_UZG/ID_PROJECT"/>
  1554. </system_cache__appinfo:flat_relation_cache>
  1555. </xs:appinfo>
  1556. </xs:annotation>
  1557. </xs:element>
  1558. <xs:element maxOccurs="unbounded"
  1559. minOccurs="0"
  1560. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_UZG"
  1561. id="DYSTRYBUCJI___d4e7022-1">
  1562. <xs:annotation>
  1563. <xs:appinfo>
  1564. <system_cache__appinfo:flat_relation_cache>
  1565. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1566. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_UZG/ID_PROJECT"/>
  1567. </system_cache__appinfo:flat_relation_cache>
  1568. </xs:appinfo>
  1569. </xs:annotation>
  1570. </xs:element>
  1571. <xs:element maxOccurs="unbounded"
  1572. minOccurs="0"
  1573. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_UZG_ZUD"
  1574. id="DYSTRYBUCJI___d4e7027-1">
  1575. <xs:annotation>
  1576. <xs:appinfo>
  1577. <system_cache__appinfo:flat_relation_cache>
  1578. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1579. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_UZG_ZUD/ID_PROJECT"/>
  1580. </system_cache__appinfo:flat_relation_cache>
  1581. </xs:appinfo>
  1582. </xs:annotation>
  1583. </xs:element>
  1584. <xs:element maxOccurs="unbounded"
  1585. minOccurs="0"
  1586. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_UZG_ZUD"
  1587. id="DYSTRYBUCJI___d4e7032-1">
  1588. <xs:annotation>
  1589. <xs:appinfo>
  1590. <system_cache__appinfo:flat_relation_cache>
  1591. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1592. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_UZG_ZUD/ID_PROJECT"/>
  1593. </system_cache__appinfo:flat_relation_cache>
  1594. </xs:appinfo>
  1595. </xs:annotation>
  1596. </xs:element>
  1597. <xs:element maxOccurs="unbounded"
  1598. minOccurs="0"
  1599. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_ZLECENIE"
  1600. id="DYSTRYBUCJI___d4e7037-1">
  1601. <xs:annotation>
  1602. <xs:appinfo>
  1603. <system_cache__appinfo:flat_relation_cache>
  1604. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1605. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_ZLECENIE/ID_PROJECT"/>
  1606. </system_cache__appinfo:flat_relation_cache>
  1607. </xs:appinfo>
  1608. </xs:annotation>
  1609. </xs:element>
  1610. <xs:element maxOccurs="unbounded"
  1611. minOccurs="0"
  1612. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_ZGL_ODB"
  1613. id="DYSTRYBUCJI___d4e7043-1">
  1614. <xs:annotation>
  1615. <xs:appinfo>
  1616. <system_cache__appinfo:flat_relation_cache>
  1617. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1618. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_ZGL_ODB/ID_PROJECT"/>
  1619. </system_cache__appinfo:flat_relation_cache>
  1620. </xs:appinfo>
  1621. </xs:annotation>
  1622. </xs:element>
  1623. <xs:element maxOccurs="unbounded"
  1624. minOccurs="0"
  1625. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_POM_GEOD"
  1626. id="DYSTRYBUCJI___d4e7048-1">
  1627. <xs:annotation>
  1628. <xs:appinfo>
  1629. <system_cache__appinfo:flat_relation_cache>
  1630. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1631. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_POM_GEOD/ID_PROJECT"/>
  1632. </system_cache__appinfo:flat_relation_cache>
  1633. </xs:appinfo>
  1634. </xs:annotation>
  1635. </xs:element>-->
  1636. <xs:element maxOccurs="unbounded"
  1637. minOccurs="0"
  1638. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_INVEST_ARRANGEMENT_DEAL"
  1639. id="DYSTRYBUCJI___d4e7053-1">
  1640. <xs:annotation>
  1641. <xs:appinfo>
  1642. <system_cache__appinfo:flat_relation_cache>
  1643. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1644. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_INVEST_ARRANGEMENT_DEAL/ID_PROJECT"/>
  1645. </system_cache__appinfo:flat_relation_cache>
  1646. </xs:appinfo>
  1647. </xs:annotation>
  1648. </xs:element>
  1649. <xs:element maxOccurs="unbounded"
  1650. minOccurs="0"
  1651. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_INVEST_ARRANGEMENT_DEAL_SIGNED"
  1652. id="DYSTRYBUCJI___d4e7058-1">
  1653. <xs:annotation>
  1654. <xs:appinfo>
  1655. <system_cache__appinfo:flat_relation_cache>
  1656. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1657. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_INVEST_ARRANGEMENT_DEAL_SIGNED/ID_PROJECT"/>
  1658. </system_cache__appinfo:flat_relation_cache>
  1659. </xs:appinfo>
  1660. </xs:annotation>
  1661. </xs:element>
  1662. <xs:element maxOccurs="unbounded"
  1663. minOccurs="0"
  1664. ref="default_db__x3A__BADANIA_W_TERENIE:BADANIA_W_TERENIE"
  1665. id="DYSTRYBUCJI___d4e7111-1">
  1666. <xs:annotation>
  1667. <xs:appinfo>
  1668. <system_cache__appinfo:flat_relation_cache>
  1669. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1670. system_cache__appinfo:xpath="default_db__x3A__BADANIA_W_TERENIE:BADANIA_W_TERENIE/ID_PROJECT"/>
  1671. </system_cache__appinfo:flat_relation_cache>
  1672. </xs:appinfo>
  1673. </xs:annotation>
  1674. </xs:element>
  1675. </xs:sequence>
  1676. </xs:complexType>
  1677. <xs:element name="IN7_MK_BAZA_DYSTRYBUCJI"
  1678. type="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:IN7_MK_BAZA_DYSTRYBUCJI"
  1679. id="DYSTRYBUCJI___d4e7063-1_IN7_MK_BAZ">
  1680. <xs:unique name="primary.IN7_MK_BAZA_DYSTRYBUCJI">
  1681. <xs:selector xpath="."/>
  1682. <xs:field xpath="ID"/>
  1683. </xs:unique>
  1684. </xs:element>
  1685. <xs:element name="ID_PROJECT"
  1686. type="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:IN7_MK_BAZA_DYSTRYBUCJI"
  1687. id="DYSTRYBUCJI___d4e7067-1_ID_PROJECT"/>
  1688. <xs:complexType name="INWESTYCJA_BUDOWA_SIECI" id="DYSTRYBUCJI___d4e7069-1_INWESTYCJA">
  1689. <xs:complexContent id="DYSTRYBUCJI___d4e7070-1">
  1690. <xs:extension base="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:IN7_MK_BAZA_DYSTRYBUCJI"
  1691. id="DYSTRYBUCJI___d4e7071-1"/>
  1692. </xs:complexContent>
  1693. </xs:complexType>
  1694. <xs:element name="INWESTYCJA_BUDOWA_SIECI"
  1695. type="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:INWESTYCJA_BUDOWA_SIECI"
  1696. id="DYSTRYBUCJI___d4e7072-1_INWESTYCJA"/>
  1697. <xs:complexType name="INWESTYCJA_BUDOWA_SIECI_UZG"
  1698. id="DYSTRYBUCJI___d4e7073-1_INWESTYCJA">
  1699. <xs:complexContent id="DYSTRYBUCJI___d4e7074-1">
  1700. <xs:restriction base="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:IN7_MK_BAZA_DYSTRYBUCJI">
  1701. <xs:sequence id="DYSTRYBUCJI___d4e7076-1">
  1702. <xs:element name="ID" type="xs:int" id="DYSTRYBUCJI___d4e7077-1_ID"/>
  1703. <xs:element name="P_ID" type="xs:int" id="DYSTRYBUCJI___d4e7078-1_P_ID"/>
  1704. <xs:element maxOccurs="1"
  1705. minOccurs="0"
  1706. name="M_DIST_TYPE"
  1707. type="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:M_DIST_TYPE"
  1708. id="DYSTRYBUCJI___d4e7079-1_M_DIST_TYP"/>
  1709. <xs:element name="M_DIST_DESC"
  1710. type="xs:string"
  1711. id="DYSTRYBUCJI___d4e7080-1_M_DIST_DES"/>
  1712. <xs:element maxOccurs="1"
  1713. minOccurs="0"
  1714. name="the_geom"
  1715. type="gml:SurfacePropertyType"
  1716. id="DYSTRYBUCJI___d4e7081-1_the_geom"/>
  1717. <xs:element maxOccurs="unbounded"
  1718. minOccurs="0"
  1719. ref="default_db__x3A__IN7_DZIENNIK_KORESP:IN7_DZIENNIK_KORESP"
  1720. id="DYSTRYBUCJI___d4e7082-1">
  1721. <xs:annotation>
  1722. <xs:appinfo>
  1723. <system_cache__appinfo:flat_relation_cache>
  1724. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1725. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:IN7_DZIENNIK_KORESP/ID_PROJECT"/>
  1726. </system_cache__appinfo:flat_relation_cache>
  1727. </xs:appinfo>
  1728. </xs:annotation>
  1729. </xs:element>
  1730. <!--<xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_BUD"
  1731. id="DYSTRYBUCJI___d4e5715-1">
  1732. <xs:annotation>
  1733. <xs:appinfo>
  1734. <system_cache__appinfo:flat_relation_cache>
  1735. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1736. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_BUD/ID_PROJECT"/>
  1737. </system_cache__appinfo:flat_relation_cache>
  1738. </xs:appinfo>
  1739. </xs:annotation>
  1740. </xs:element>-->
  1741. <xs:element name="L_APPOITMENT_USER"
  1742. type="xs:string"
  1743. id="DYSTRYBUCJI___d4e7088-1_L_APPOITME"/>
  1744. <xs:element ref="default_db__x3A__ADMIN_USERS:L_APPOITMENT_USER"
  1745. id="DYSTRYBUCJI___d4e7089-1">
  1746. <xs:annotation>
  1747. <xs:appinfo>
  1748. <system_cache__appinfo:flat_relation_cache>
  1749. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1750. system_cache__appinfo:xpath="default_db__x3A__ADMIN_USERS:L_APPOITMENT_USER/ADM_ACCOUNT"/>
  1751. </system_cache__appinfo:flat_relation_cache>
  1752. </xs:appinfo>
  1753. </xs:annotation>
  1754. </xs:element>
  1755. <xs:element name="ID_BILLING_USERS"
  1756. type="xs:string"
  1757. id="DYSTRYBUCJI___d4e7094-1_ID_BILLING"/>
  1758. <xs:element ref="default_db__x3A__COMPANIES:ID_BILLING_USERS"
  1759. id="DYSTRYBUCJI___d4e7095-1">
  1760. <xs:annotation>
  1761. <xs:appinfo>
  1762. <system_cache__appinfo:flat_relation_cache>
  1763. <system_cache__appinfo:source system_cache__appinfo:name="ID_BILLING_USERS"
  1764. system_cache__appinfo:xpath="default_db__x3A__COMPANIES:ID_BILLING_USERS/ID"/>
  1765. </system_cache__appinfo:flat_relation_cache>
  1766. </xs:appinfo>
  1767. </xs:annotation>
  1768. </xs:element>
  1769. <xs:element maxOccurs="unbounded"
  1770. minOccurs="0"
  1771. ref="default_db__x3A__SALES_PLAN:SALES_PLAN"
  1772. id="DYSTRYBUCJI___d4e7101-1">
  1773. <xs:annotation>
  1774. <xs:appinfo>
  1775. <system_cache__appinfo:flat_relation_cache>
  1776. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1777. system_cache__appinfo:xpath="default_db__x3A__SALES_PLAN:SALES_PLAN/ID_PROJECT"/>
  1778. </system_cache__appinfo:flat_relation_cache>
  1779. </xs:appinfo>
  1780. </xs:annotation>
  1781. </xs:element>
  1782. <xs:element maxOccurs="unbounded"
  1783. minOccurs="0"
  1784. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:IN7_MK_BAZA_DYSTRYBUCJI"
  1785. id="DYSTRYBUCJI___d4e7106-1">
  1786. <xs:annotation>
  1787. <xs:appinfo>
  1788. <system_cache__appinfo:flat_relation_cache>
  1789. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1790. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:IN7_MK_BAZA_DYSTRYBUCJI/P_ID"/>
  1791. </system_cache__appinfo:flat_relation_cache>
  1792. </xs:appinfo>
  1793. </xs:annotation>
  1794. </xs:element>
  1795. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  1796. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:INWESTYCJA_BUDOWA_SIECI"/>-->
  1797. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW_OFFERS:CRM_LISTA_ZASOBOW_OFFERS"
  1798. maxOccurs="unbounded"
  1799. minOccurs="0"
  1800. id="DYSTRYBUCJI___d4e7112-1">
  1801. <xs:annotation>
  1802. <xs:appinfo>
  1803. <system_cache__appinfo:flat_relation_cache>
  1804. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1805. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:CRM_LISTA_ZASOBOW_OFFERS/ID_PROJECT"/>
  1806. </system_cache__appinfo:flat_relation_cache>
  1807. </xs:appinfo>
  1808. </xs:annotation>
  1809. </xs:element>
  1810. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DRAFT"
  1811. maxOccurs="unbounded"
  1812. minOccurs="0"
  1813. id="DYSTRYBUCJI___d4e7117-1">
  1814. <xs:annotation>
  1815. <xs:appinfo>
  1816. <system_cache__appinfo:flat_relation_cache>
  1817. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1818. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DRAFT/ID_PROJECT"/>
  1819. </system_cache__appinfo:flat_relation_cache>
  1820. </xs:appinfo>
  1821. </xs:annotation>
  1822. </xs:element>
  1823. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_PROJEKT"
  1824. maxOccurs="unbounded"
  1825. minOccurs="0"
  1826. id="DYSTRYBUCJI___d4e7122-1">
  1827. <xs:annotation>
  1828. <xs:appinfo>
  1829. <system_cache__appinfo:flat_relation_cache>
  1830. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1831. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_PROJEKT/ID_PROJECT"/>
  1832. </system_cache__appinfo:flat_relation_cache>
  1833. </xs:appinfo>
  1834. </xs:annotation>
  1835. </xs:element>
  1836. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_REALIZ"
  1837. maxOccurs="unbounded"
  1838. minOccurs="0"
  1839. id="DYSTRYBUCJI___d4e7127-1">
  1840. <xs:annotation>
  1841. <xs:appinfo>
  1842. <system_cache__appinfo:flat_relation_cache>
  1843. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1844. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_REALIZ/ID_PROJECT"/>
  1845. </system_cache__appinfo:flat_relation_cache>
  1846. </xs:appinfo>
  1847. </xs:annotation>
  1848. </xs:element>
  1849. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_OFFER"
  1850. maxOccurs="unbounded"
  1851. minOccurs="0"
  1852. id="DYSTRYBUCJI___d4e7132-1">
  1853. <xs:annotation>
  1854. <xs:appinfo>
  1855. <system_cache__appinfo:flat_relation_cache>
  1856. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1857. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_OFFER/ID_PROJECT"/>
  1858. </system_cache__appinfo:flat_relation_cache>
  1859. </xs:appinfo>
  1860. </xs:annotation>
  1861. </xs:element>
  1862. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_UZG"
  1863. maxOccurs="0"
  1864. minOccurs="0"
  1865. id="DYSTRYBUCJI___d4e7137-1">
  1866. <xs:annotation>
  1867. <xs:appinfo>
  1868. <system_cache__appinfo:flat_relation_cache>
  1869. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1870. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_UZG/ID_PROJECT"/>
  1871. </system_cache__appinfo:flat_relation_cache>
  1872. </xs:appinfo>
  1873. </xs:annotation>
  1874. </xs:element>
  1875. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_UZG"
  1876. maxOccurs="unbounded"
  1877. minOccurs="0"
  1878. id="DYSTRYBUCJI___d4e7142-1">
  1879. <xs:annotation>
  1880. <xs:appinfo>
  1881. <system_cache__appinfo:flat_relation_cache>
  1882. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1883. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_UZG/ID_PROJECT"/>
  1884. </system_cache__appinfo:flat_relation_cache>
  1885. </xs:appinfo>
  1886. </xs:annotation>
  1887. </xs:element>
  1888. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  1889. ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_UZG_ZUD"
  1890. minOccurs="0"
  1891. maxOccurs="unbounded">
  1892. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  1893. <xs:appinfo>
  1894. <system_cache__appinfo:flat_relation_cache>
  1895. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1896. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_DO_UZG_ZUD/ID_PROJECT"/>
  1897. </system_cache__appinfo:flat_relation_cache>
  1898. </xs:appinfo>
  1899. </xs:annotation>
  1900. </xs:element>-->
  1901. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  1902. ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_UZG_ZUD"
  1903. minOccurs="0"
  1904. maxOccurs="unbounded">
  1905. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  1906. <xs:appinfo>
  1907. <system_cache__appinfo:flat_relation_cache>
  1908. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1909. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_UZG_ZUD/ID_PROJECT"/>
  1910. </system_cache__appinfo:flat_relation_cache>
  1911. </xs:appinfo>
  1912. </xs:annotation>
  1913. </xs:element>-->
  1914. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_ZLECENIE"
  1915. minOccurs="0"
  1916. maxOccurs="unbounded"
  1917. id="DYSTRYBUCJI___d4e7150-1">
  1918. <xs:annotation>
  1919. <xs:appinfo>
  1920. <system_cache__appinfo:flat_relation_cache>
  1921. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1922. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_ZLECENIE/ID_PROJECT"/>
  1923. </system_cache__appinfo:flat_relation_cache>
  1924. </xs:appinfo>
  1925. </xs:annotation>
  1926. </xs:element>
  1927. <xs:element ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_ZGL_ODB"
  1928. minOccurs="0"
  1929. maxOccurs="unbounded"
  1930. id="DYSTRYBUCJI___d4e7155-1">
  1931. <xs:annotation>
  1932. <xs:appinfo>
  1933. <system_cache__appinfo:flat_relation_cache>
  1934. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1935. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_ZGL_ODB/ID_PROJECT"/>
  1936. </system_cache__appinfo:flat_relation_cache>
  1937. </xs:appinfo>
  1938. </xs:annotation>
  1939. </xs:element>
  1940. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  1941. ref="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_POM_GEOD"
  1942. minOccurs="0"
  1943. maxOccurs="unbounded">
  1944. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  1945. <xs:appinfo>
  1946. <system_cache__appinfo:flat_relation_cache>
  1947. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1948. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_struktura_wewnetrzna_wsg84:Rozdzielcza_struktura_wewnetrzna_wsg84_POM_GEOD/ID_PROJECT"/>
  1949. </system_cache__appinfo:flat_relation_cache>
  1950. </xs:appinfo>
  1951. </xs:annotation>
  1952. </xs:element>-->
  1953. <!-- <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DRAFT"
  1954. minOccurs="0"
  1955. maxOccurs="unbounded"
  1956. id="DYSTRYBUCJI___d4e7161-1">
  1957. <xs:annotation>
  1958. <xs:appinfo>
  1959. <system_cache__appinfo:flat_relation_cache>
  1960. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1961. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DRAFT/ID_PROJECT"/>
  1962. </system_cache__appinfo:flat_relation_cache>
  1963. </xs:appinfo>
  1964. </xs:annotation>
  1965. </xs:element>
  1966. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_PROJEKT"
  1967. minOccurs="0"
  1968. maxOccurs="unbounded"
  1969. id="DYSTRYBUCJI___d4e7166-1">
  1970. <xs:annotation>
  1971. <xs:appinfo>
  1972. <system_cache__appinfo:flat_relation_cache>
  1973. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1974. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_PROJEKT/ID_PROJECT"/>
  1975. </system_cache__appinfo:flat_relation_cache>
  1976. </xs:appinfo>
  1977. </xs:annotation>
  1978. </xs:element>
  1979. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_REALIZ"
  1980. minOccurs="0"
  1981. maxOccurs="unbounded"
  1982. id="DYSTRYBUCJI___d4e7171-1">
  1983. <xs:annotation>
  1984. <xs:appinfo>
  1985. <system_cache__appinfo:flat_relation_cache>
  1986. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  1987. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_REALIZ/ID_PROJECT"/>
  1988. </system_cache__appinfo:flat_relation_cache>
  1989. </xs:appinfo>
  1990. </xs:annotation>
  1991. </xs:element>
  1992. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_OFFER"
  1993. minOccurs="0"
  1994. maxOccurs="unbounded"
  1995. id="DYSTRYBUCJI___d4e7176-1">
  1996. <xs:annotation>
  1997. <xs:appinfo>
  1998. <system_cache__appinfo:flat_relation_cache>
  1999. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2000. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_OFFER/ID_PROJECT"/>
  2001. </system_cache__appinfo:flat_relation_cache>
  2002. </xs:appinfo>
  2003. </xs:annotation>
  2004. </xs:element>
  2005. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_UZG"
  2006. minOccurs="0"
  2007. maxOccurs="0"
  2008. id="DYSTRYBUCJI___d4e7181-1">
  2009. <xs:annotation>
  2010. <xs:appinfo>
  2011. <system_cache__appinfo:flat_relation_cache>
  2012. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2013. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_UZG/ID_PROJECT"/>
  2014. </system_cache__appinfo:flat_relation_cache>
  2015. </xs:appinfo>
  2016. </xs:annotation>
  2017. </xs:element>
  2018. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_UZG"
  2019. minOccurs="0"
  2020. maxOccurs="unbounded"
  2021. id="DYSTRYBUCJI___d4e7186-1">
  2022. <xs:annotation>
  2023. <xs:appinfo>
  2024. <system_cache__appinfo:flat_relation_cache>
  2025. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2026. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_UZG/ID_PROJECT"/>
  2027. </system_cache__appinfo:flat_relation_cache>
  2028. </xs:appinfo>
  2029. </xs:annotation>
  2030. </xs:element>-->
  2031. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2032. ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_UZG_ZUD"
  2033. minOccurs="0"
  2034. maxOccurs="unbounded">
  2035. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2036. <xs:appinfo>
  2037. <system_cache__appinfo:flat_relation_cache>
  2038. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2039. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_DO_UZG_ZUD/ID_PROJECT"/>
  2040. </system_cache__appinfo:flat_relation_cache>
  2041. </xs:appinfo>
  2042. </xs:annotation>
  2043. </xs:element>-->
  2044. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2045. ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_UZG_ZUD"
  2046. minOccurs="0"
  2047. maxOccurs="unbounded">
  2048. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2049. <xs:appinfo>
  2050. <system_cache__appinfo:flat_relation_cache>
  2051. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2052. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_UZG_ZUD/ID_PROJECT"/>
  2053. </system_cache__appinfo:flat_relation_cache>
  2054. </xs:appinfo>
  2055. </xs:annotation>
  2056. </xs:element>-->
  2057. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_ZLECENIE"
  2058. minOccurs="0"
  2059. maxOccurs="unbounded"
  2060. id="DYSTRYBUCJI___d4e7194-1">
  2061. <xs:annotation>
  2062. <xs:appinfo>
  2063. <system_cache__appinfo:flat_relation_cache>
  2064. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2065. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_ZLECENIE/ID_PROJECT"/>
  2066. </system_cache__appinfo:flat_relation_cache>
  2067. </xs:appinfo>
  2068. </xs:annotation>
  2069. </xs:element>
  2070. <xs:element ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_ZGL_ODB"
  2071. minOccurs="0"
  2072. maxOccurs="unbounded"
  2073. id="DYSTRYBUCJI___d4e7199-1">
  2074. <xs:annotation>
  2075. <xs:appinfo>
  2076. <system_cache__appinfo:flat_relation_cache>
  2077. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2078. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_ZGL_ODB/ID_PROJECT"/>
  2079. </system_cache__appinfo:flat_relation_cache>
  2080. </xs:appinfo>
  2081. </xs:annotation>
  2082. </xs:element>
  2083. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2084. ref="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_POM_GEOD"
  2085. minOccurs="0"
  2086. maxOccurs="unbounded">
  2087. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2088. <xs:appinfo>
  2089. <system_cache__appinfo:flat_relation_cache>
  2090. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2091. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_koszty_dodatkowe_wsg84:Rozdzielcza_koszty_dodatkowe_wsg84_POM_GEOD/ID_PROJECT"/>
  2092. </system_cache__appinfo:flat_relation_cache>
  2093. </xs:appinfo>
  2094. </xs:annotation>
  2095. </xs:element>-->
  2096. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DRAFT"
  2097. minOccurs="0"
  2098. maxOccurs="unbounded"
  2099. id="DYSTRYBUCJI___d4e7205-1">
  2100. <xs:annotation>
  2101. <xs:appinfo>
  2102. <system_cache__appinfo:flat_relation_cache>
  2103. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2104. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DRAFT/ID_PROJECT"/>
  2105. </system_cache__appinfo:flat_relation_cache>
  2106. </xs:appinfo>
  2107. </xs:annotation>
  2108. </xs:element>
  2109. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_PROJEKT"
  2110. minOccurs="0"
  2111. maxOccurs="unbounded"
  2112. id="DYSTRYBUCJI___d4e7210-1">
  2113. <xs:annotation>
  2114. <xs:appinfo>
  2115. <system_cache__appinfo:flat_relation_cache>
  2116. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2117. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_PROJEKT/ID_PROJECT"/>
  2118. </system_cache__appinfo:flat_relation_cache>
  2119. </xs:appinfo>
  2120. </xs:annotation>
  2121. </xs:element>
  2122. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_REALIZ"
  2123. minOccurs="0"
  2124. maxOccurs="unbounded"
  2125. id="DYSTRYBUCJI___d4e7215-1">
  2126. <xs:annotation>
  2127. <xs:appinfo>
  2128. <system_cache__appinfo:flat_relation_cache>
  2129. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2130. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_REALIZ/ID_PROJECT"/>
  2131. </system_cache__appinfo:flat_relation_cache>
  2132. </xs:appinfo>
  2133. </xs:annotation>
  2134. </xs:element>
  2135. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_OFFER"
  2136. minOccurs="0"
  2137. maxOccurs="unbounded"
  2138. id="DYSTRYBUCJI___d4e7220-1">
  2139. <xs:annotation>
  2140. <xs:appinfo>
  2141. <system_cache__appinfo:flat_relation_cache>
  2142. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2143. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_OFFER/ID_PROJECT"/>
  2144. </system_cache__appinfo:flat_relation_cache>
  2145. </xs:appinfo>
  2146. </xs:annotation>
  2147. </xs:element>
  2148. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_UZG"
  2149. minOccurs="0"
  2150. maxOccurs="0"
  2151. id="DYSTRYBUCJI___d4e7225-1">
  2152. <xs:annotation>
  2153. <xs:appinfo>
  2154. <system_cache__appinfo:flat_relation_cache>
  2155. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2156. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_UZG/ID_PROJECT"/>
  2157. </system_cache__appinfo:flat_relation_cache>
  2158. </xs:appinfo>
  2159. </xs:annotation>
  2160. </xs:element>
  2161. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_UZG"
  2162. minOccurs="0"
  2163. maxOccurs="unbounded"
  2164. id="DYSTRYBUCJI___d4e7230-1">
  2165. <xs:annotation>
  2166. <xs:appinfo>
  2167. <system_cache__appinfo:flat_relation_cache>
  2168. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2169. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_UZG/ID_PROJECT"/>
  2170. </system_cache__appinfo:flat_relation_cache>
  2171. </xs:appinfo>
  2172. </xs:annotation>
  2173. </xs:element>
  2174. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_UZG_ZUD"
  2175. minOccurs="0"
  2176. maxOccurs="0"
  2177. id="DYSTRYBUCJI___d4e7235-1">
  2178. <xs:annotation>
  2179. <xs:appinfo>
  2180. <system_cache__appinfo:flat_relation_cache>
  2181. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2182. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_DO_UZG_ZUD/ID_PROJECT"/>
  2183. </system_cache__appinfo:flat_relation_cache>
  2184. </xs:appinfo>
  2185. </xs:annotation>
  2186. </xs:element>
  2187. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_UZG_ZUD"
  2188. minOccurs="0"
  2189. maxOccurs="unbounded"
  2190. id="DYSTRYBUCJI___d4e7240-1">
  2191. <xs:annotation>
  2192. <xs:appinfo>
  2193. <system_cache__appinfo:flat_relation_cache>
  2194. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2195. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_UZG_ZUD/ID_PROJECT"/>
  2196. </system_cache__appinfo:flat_relation_cache>
  2197. </xs:appinfo>
  2198. </xs:annotation>
  2199. </xs:element>
  2200. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_ZLECENIE"
  2201. minOccurs="0"
  2202. maxOccurs="unbounded"
  2203. id="DYSTRYBUCJI___d4e7246-1">
  2204. <xs:annotation>
  2205. <xs:appinfo>
  2206. <system_cache__appinfo:flat_relation_cache>
  2207. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2208. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_ZLECENIE/ID_PROJECT"/>
  2209. </system_cache__appinfo:flat_relation_cache>
  2210. </xs:appinfo>
  2211. </xs:annotation>
  2212. </xs:element>
  2213. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_ZGL_ODB"
  2214. minOccurs="0"
  2215. maxOccurs="unbounded"
  2216. id="DYSTRYBUCJI___d4e7251-1">
  2217. <xs:annotation>
  2218. <xs:appinfo>
  2219. <system_cache__appinfo:flat_relation_cache>
  2220. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2221. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_ZGL_ODB/ID_PROJECT"/>
  2222. </system_cache__appinfo:flat_relation_cache>
  2223. </xs:appinfo>
  2224. </xs:annotation>
  2225. </xs:element>
  2226. <xs:element ref="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_POM_GEOD"
  2227. minOccurs="0"
  2228. maxOccurs="unbounded"
  2229. id="DYSTRYBUCJI___d4e7256-1">
  2230. <xs:annotation>
  2231. <xs:appinfo>
  2232. <system_cache__appinfo:flat_relation_cache>
  2233. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2234. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Mikrokanalizacja_do_klienta:Rozdzielcza_Mikrokanalizacja_do_klienta_POM_GEOD/ID_PROJECT"/>
  2235. </system_cache__appinfo:flat_relation_cache>
  2236. </xs:appinfo>
  2237. </xs:annotation>
  2238. </xs:element>
  2239. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DRAFT"
  2240. minOccurs="0"
  2241. maxOccurs="unbounded"
  2242. id="DYSTRYBUCJI___d4e7261-1">
  2243. <xs:annotation>
  2244. <xs:appinfo>
  2245. <system_cache__appinfo:flat_relation_cache>
  2246. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2247. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DRAFT/ID_PROJECT"/>
  2248. </system_cache__appinfo:flat_relation_cache>
  2249. </xs:appinfo>
  2250. </xs:annotation>
  2251. </xs:element>
  2252. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_PROJEKT"
  2253. minOccurs="0"
  2254. maxOccurs="unbounded"
  2255. id="DYSTRYBUCJI___d4e7266-1">
  2256. <xs:annotation>
  2257. <xs:appinfo>
  2258. <system_cache__appinfo:flat_relation_cache>
  2259. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2260. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_PROJEKT/ID_PROJECT"/>
  2261. </system_cache__appinfo:flat_relation_cache>
  2262. </xs:appinfo>
  2263. </xs:annotation>
  2264. </xs:element>
  2265. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_REALIZ"
  2266. minOccurs="0"
  2267. maxOccurs="unbounded"
  2268. id="DYSTRYBUCJI___d4e7271-1">
  2269. <xs:annotation>
  2270. <xs:appinfo>
  2271. <system_cache__appinfo:flat_relation_cache>
  2272. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2273. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_REALIZ/ID_PROJECT"/>
  2274. </system_cache__appinfo:flat_relation_cache>
  2275. </xs:appinfo>
  2276. </xs:annotation>
  2277. </xs:element>
  2278. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_OFFER"
  2279. minOccurs="0"
  2280. maxOccurs="unbounded"
  2281. id="DYSTRYBUCJI___d4e7276-1">
  2282. <xs:annotation>
  2283. <xs:appinfo>
  2284. <system_cache__appinfo:flat_relation_cache>
  2285. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2286. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_OFFER/ID_PROJECT"/>
  2287. </system_cache__appinfo:flat_relation_cache>
  2288. </xs:appinfo>
  2289. </xs:annotation>
  2290. </xs:element>
  2291. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_UZG"
  2292. minOccurs="0"
  2293. maxOccurs="0"
  2294. id="DYSTRYBUCJI___d4e7281-1">
  2295. <xs:annotation>
  2296. <xs:appinfo>
  2297. <system_cache__appinfo:flat_relation_cache>
  2298. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2299. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_UZG/ID_PROJECT"/>
  2300. </system_cache__appinfo:flat_relation_cache>
  2301. </xs:appinfo>
  2302. </xs:annotation>
  2303. </xs:element>
  2304. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_UZG"
  2305. minOccurs="0"
  2306. maxOccurs="unbounded"
  2307. id="DYSTRYBUCJI___d4e7286-1">
  2308. <xs:annotation>
  2309. <xs:appinfo>
  2310. <system_cache__appinfo:flat_relation_cache>
  2311. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2312. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_UZG/ID_PROJECT"/>
  2313. </system_cache__appinfo:flat_relation_cache>
  2314. </xs:appinfo>
  2315. </xs:annotation>
  2316. </xs:element>
  2317. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_UZG_ZUD"
  2318. minOccurs="0"
  2319. maxOccurs="0"
  2320. id="DYSTRYBUCJI___d4e7291-1">
  2321. <xs:annotation>
  2322. <xs:appinfo>
  2323. <system_cache__appinfo:flat_relation_cache>
  2324. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2325. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_DO_UZG_ZUD/ID_PROJECT"/>
  2326. </system_cache__appinfo:flat_relation_cache>
  2327. </xs:appinfo>
  2328. </xs:annotation>
  2329. </xs:element>
  2330. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_UZG_ZUD"
  2331. minOccurs="0"
  2332. maxOccurs="unbounded"
  2333. id="DYSTRYBUCJI___d4e7296-1">
  2334. <xs:annotation>
  2335. <xs:appinfo>
  2336. <system_cache__appinfo:flat_relation_cache>
  2337. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2338. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_UZG_ZUD/ID_PROJECT"/>
  2339. </system_cache__appinfo:flat_relation_cache>
  2340. </xs:appinfo>
  2341. </xs:annotation>
  2342. </xs:element>
  2343. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_ZLECENIE"
  2344. minOccurs="0"
  2345. maxOccurs="unbounded"
  2346. id="DYSTRYBUCJI___d4e7302-1">
  2347. <xs:annotation>
  2348. <xs:appinfo>
  2349. <system_cache__appinfo:flat_relation_cache>
  2350. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2351. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_ZLECENIE/ID_PROJECT"/>
  2352. </system_cache__appinfo:flat_relation_cache>
  2353. </xs:appinfo>
  2354. </xs:annotation>
  2355. </xs:element>
  2356. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_ZGL_ODB"
  2357. minOccurs="0"
  2358. maxOccurs="unbounded"
  2359. id="DYSTRYBUCJI___d4e7307-1">
  2360. <xs:annotation>
  2361. <xs:appinfo>
  2362. <system_cache__appinfo:flat_relation_cache>
  2363. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2364. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_ZGL_ODB/ID_PROJECT"/>
  2365. </system_cache__appinfo:flat_relation_cache>
  2366. </xs:appinfo>
  2367. </xs:annotation>
  2368. </xs:element>
  2369. <xs:element ref="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_POM_GEOD"
  2370. minOccurs="0"
  2371. maxOccurs="unbounded"
  2372. id="DYSTRYBUCJI___d4e7312-1">
  2373. <xs:annotation>
  2374. <xs:appinfo>
  2375. <system_cache__appinfo:flat_relation_cache>
  2376. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2377. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84:Rozdzielcza_Pakiet5MikrorurekMagistrala_WSG84_POM_GEOD/ID_PROJECT"/>
  2378. </system_cache__appinfo:flat_relation_cache>
  2379. </xs:appinfo>
  2380. </xs:annotation>
  2381. </xs:element>
  2382. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DRAFT"
  2383. minOccurs="0"
  2384. maxOccurs="unbounded"
  2385. id="DYSTRYBUCJI___d4e7317-1">
  2386. <xs:annotation>
  2387. <xs:appinfo>
  2388. <system_cache__appinfo:flat_relation_cache>
  2389. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2390. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DRAFT/ID_PROJECT"/>
  2391. </system_cache__appinfo:flat_relation_cache>
  2392. </xs:appinfo>
  2393. </xs:annotation>
  2394. </xs:element>
  2395. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_PROJEKT"
  2396. minOccurs="0"
  2397. maxOccurs="unbounded"
  2398. id="DYSTRYBUCJI___d4e7322-1">
  2399. <xs:annotation>
  2400. <xs:appinfo>
  2401. <system_cache__appinfo:flat_relation_cache>
  2402. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2403. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_PROJEKT/ID_PROJECT"/>
  2404. </system_cache__appinfo:flat_relation_cache>
  2405. </xs:appinfo>
  2406. </xs:annotation>
  2407. </xs:element>
  2408. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_REALIZ"
  2409. minOccurs="0"
  2410. maxOccurs="unbounded"
  2411. id="DYSTRYBUCJI___d4e7327-1">
  2412. <xs:annotation>
  2413. <xs:appinfo>
  2414. <system_cache__appinfo:flat_relation_cache>
  2415. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2416. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_REALIZ/ID_PROJECT"/>
  2417. </system_cache__appinfo:flat_relation_cache>
  2418. </xs:appinfo>
  2419. </xs:annotation>
  2420. </xs:element>
  2421. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_OFFER"
  2422. minOccurs="0"
  2423. maxOccurs="unbounded"
  2424. id="DYSTRYBUCJI___d4e7332-1">
  2425. <xs:annotation>
  2426. <xs:appinfo>
  2427. <system_cache__appinfo:flat_relation_cache>
  2428. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2429. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_OFFER/ID_PROJECT"/>
  2430. </system_cache__appinfo:flat_relation_cache>
  2431. </xs:appinfo>
  2432. </xs:annotation>
  2433. </xs:element>
  2434. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_UZG"
  2435. minOccurs="0"
  2436. maxOccurs="0"
  2437. id="DYSTRYBUCJI___d4e7337-1">
  2438. <xs:annotation>
  2439. <xs:appinfo>
  2440. <system_cache__appinfo:flat_relation_cache>
  2441. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2442. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_UZG/ID_PROJECT"/>
  2443. </system_cache__appinfo:flat_relation_cache>
  2444. </xs:appinfo>
  2445. </xs:annotation>
  2446. </xs:element>
  2447. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_UZG"
  2448. minOccurs="0"
  2449. maxOccurs="unbounded"
  2450. id="DYSTRYBUCJI___d4e7342-1">
  2451. <xs:annotation>
  2452. <xs:appinfo>
  2453. <system_cache__appinfo:flat_relation_cache>
  2454. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2455. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_UZG/ID_PROJECT"/>
  2456. </system_cache__appinfo:flat_relation_cache>
  2457. </xs:appinfo>
  2458. </xs:annotation>
  2459. </xs:element>
  2460. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2461. ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_UZG_ZUD"
  2462. minOccurs="0"
  2463. maxOccurs="unbounded">
  2464. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2465. <xs:appinfo>
  2466. <system_cache__appinfo:flat_relation_cache>
  2467. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2468. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_DO_UZG_ZUD/ID_PROJECT"/>
  2469. </system_cache__appinfo:flat_relation_cache>
  2470. </xs:appinfo>
  2471. </xs:annotation>
  2472. </xs:element>-->
  2473. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2474. ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_UZG_ZUD"
  2475. minOccurs="0"
  2476. maxOccurs="unbounded">
  2477. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2478. <xs:appinfo>
  2479. <system_cache__appinfo:flat_relation_cache>
  2480. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2481. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_UZG_ZUD/ID_PROJECT"/>
  2482. </system_cache__appinfo:flat_relation_cache>
  2483. </xs:appinfo>
  2484. </xs:annotation>
  2485. </xs:element>-->
  2486. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_ZLECENIE"
  2487. minOccurs="0"
  2488. maxOccurs="unbounded"
  2489. id="DYSTRYBUCJI___d4e7350-1">
  2490. <xs:annotation>
  2491. <xs:appinfo>
  2492. <system_cache__appinfo:flat_relation_cache>
  2493. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2494. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_ZLECENIE/ID_PROJECT"/>
  2495. </system_cache__appinfo:flat_relation_cache>
  2496. </xs:appinfo>
  2497. </xs:annotation>
  2498. </xs:element>
  2499. <xs:element ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_ZGL_ODB"
  2500. minOccurs="0"
  2501. maxOccurs="unbounded"
  2502. id="DYSTRYBUCJI___d4e7355-1">
  2503. <xs:annotation>
  2504. <xs:appinfo>
  2505. <system_cache__appinfo:flat_relation_cache>
  2506. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2507. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_ZGL_ODB/ID_PROJECT"/>
  2508. </system_cache__appinfo:flat_relation_cache>
  2509. </xs:appinfo>
  2510. </xs:annotation>
  2511. </xs:element>
  2512. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2513. ref="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_POM_GEOD"
  2514. minOccurs="0"
  2515. maxOccurs="unbounded">
  2516. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2517. <xs:appinfo>
  2518. <system_cache__appinfo:flat_relation_cache>
  2519. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2520. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Wykop_przedmiar_na_mikrorurki:Rozdzielcza_Wykop_przedmiar_na_mikrorurki_POM_GEOD/ID_PROJECT"/>
  2521. </system_cache__appinfo:flat_relation_cache>
  2522. </xs:appinfo>
  2523. </xs:annotation>
  2524. </xs:element>-->
  2525. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DRAFT"
  2526. minOccurs="0"
  2527. maxOccurs="unbounded"
  2528. id="DYSTRYBUCJI___d4e7361-1">
  2529. <xs:annotation>
  2530. <xs:appinfo>
  2531. <system_cache__appinfo:flat_relation_cache>
  2532. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2533. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DRAFT/ID_PROJECT"/>
  2534. </system_cache__appinfo:flat_relation_cache>
  2535. </xs:appinfo>
  2536. </xs:annotation>
  2537. </xs:element>
  2538. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_PROJEKT"
  2539. minOccurs="0"
  2540. maxOccurs="unbounded"
  2541. id="DYSTRYBUCJI___d4e7366-1">
  2542. <xs:annotation>
  2543. <xs:appinfo>
  2544. <system_cache__appinfo:flat_relation_cache>
  2545. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2546. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_PROJEKT/ID_PROJECT"/>
  2547. </system_cache__appinfo:flat_relation_cache>
  2548. </xs:appinfo>
  2549. </xs:annotation>
  2550. </xs:element>
  2551. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_REALIZ"
  2552. minOccurs="0"
  2553. maxOccurs="unbounded"
  2554. id="DYSTRYBUCJI___d4e7371-1">
  2555. <xs:annotation>
  2556. <xs:appinfo>
  2557. <system_cache__appinfo:flat_relation_cache>
  2558. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2559. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_REALIZ/ID_PROJECT"/>
  2560. </system_cache__appinfo:flat_relation_cache>
  2561. </xs:appinfo>
  2562. </xs:annotation>
  2563. </xs:element>
  2564. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_OFFER"
  2565. minOccurs="0"
  2566. maxOccurs="unbounded"
  2567. id="DYSTRYBUCJI___d4e7376-1">
  2568. <xs:annotation>
  2569. <xs:appinfo>
  2570. <system_cache__appinfo:flat_relation_cache>
  2571. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2572. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_OFFER/ID_PROJECT"/>
  2573. </system_cache__appinfo:flat_relation_cache>
  2574. </xs:appinfo>
  2575. </xs:annotation>
  2576. </xs:element>
  2577. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_UZG"
  2578. minOccurs="0"
  2579. maxOccurs="0"
  2580. id="DYSTRYBUCJI___d4e7381-1">
  2581. <xs:annotation>
  2582. <xs:appinfo>
  2583. <system_cache__appinfo:flat_relation_cache>
  2584. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2585. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_UZG/ID_PROJECT"/>
  2586. </system_cache__appinfo:flat_relation_cache>
  2587. </xs:appinfo>
  2588. </xs:annotation>
  2589. </xs:element>
  2590. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_UZG"
  2591. minOccurs="0"
  2592. maxOccurs="unbounded"
  2593. id="DYSTRYBUCJI___d4e7386-1">
  2594. <xs:annotation>
  2595. <xs:appinfo>
  2596. <system_cache__appinfo:flat_relation_cache>
  2597. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2598. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_UZG/ID_PROJECT"/>
  2599. </system_cache__appinfo:flat_relation_cache>
  2600. </xs:appinfo>
  2601. </xs:annotation>
  2602. </xs:element>
  2603. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2604. ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_UZG_ZUD"
  2605. minOccurs="0"
  2606. maxOccurs="unbounded">
  2607. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2608. <xs:appinfo>
  2609. <system_cache__appinfo:flat_relation_cache>
  2610. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2611. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_DO_UZG_ZUD/ID_PROJECT"/>
  2612. </system_cache__appinfo:flat_relation_cache>
  2613. </xs:appinfo>
  2614. </xs:annotation>
  2615. </xs:element>
  2616. <xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2617. ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_UZG_ZUD"
  2618. minOccurs="0"
  2619. maxOccurs="unbounded">
  2620. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2621. <xs:appinfo>
  2622. <system_cache__appinfo:flat_relation_cache>
  2623. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2624. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_UZG_ZUD/ID_PROJECT"/>
  2625. </system_cache__appinfo:flat_relation_cache>
  2626. </xs:appinfo>
  2627. </xs:annotation>
  2628. </xs:element>-->
  2629. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_ZLECENIE"
  2630. minOccurs="0"
  2631. maxOccurs="unbounded"
  2632. id="DYSTRYBUCJI___d4e7392-1">
  2633. <xs:annotation>
  2634. <xs:appinfo>
  2635. <system_cache__appinfo:flat_relation_cache>
  2636. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2637. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_ZLECENIE/ID_PROJECT"/>
  2638. </system_cache__appinfo:flat_relation_cache>
  2639. </xs:appinfo>
  2640. </xs:annotation>
  2641. </xs:element>
  2642. <xs:element ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_ZGL_ODB"
  2643. minOccurs="0"
  2644. maxOccurs="unbounded"
  2645. id="DYSTRYBUCJI___d4e7398-1">
  2646. <xs:annotation>
  2647. <xs:appinfo>
  2648. <system_cache__appinfo:flat_relation_cache>
  2649. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2650. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_ZGL_ODB/ID_PROJECT"/>
  2651. </system_cache__appinfo:flat_relation_cache>
  2652. </xs:appinfo>
  2653. </xs:annotation>
  2654. </xs:element>
  2655. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2656. ref="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_POM_GEOD"
  2657. minOccurs="0"
  2658. maxOccurs="unbounded">
  2659. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2660. <xs:appinfo>
  2661. <system_cache__appinfo:flat_relation_cache>
  2662. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2663. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Zabruki:Rozdzielcza_Zabruki_POM_GEOD/ID_PROJECT"/>
  2664. </system_cache__appinfo:flat_relation_cache>
  2665. </xs:appinfo>
  2666. </xs:annotation>
  2667. </xs:element>-->
  2668. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DRAFT"
  2669. minOccurs="0"
  2670. maxOccurs="unbounded"
  2671. id="DYSTRYBUCJI___d4e7404-1">
  2672. <xs:annotation>
  2673. <xs:appinfo>
  2674. <system_cache__appinfo:flat_relation_cache>
  2675. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2676. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DRAFT/ID_PROJECT"/>
  2677. </system_cache__appinfo:flat_relation_cache>
  2678. </xs:appinfo>
  2679. </xs:annotation>
  2680. </xs:element>
  2681. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_PROJEKT"
  2682. minOccurs="0"
  2683. maxOccurs="unbounded"
  2684. id="DYSTRYBUCJI___d4e7409-1">
  2685. <xs:annotation>
  2686. <xs:appinfo>
  2687. <system_cache__appinfo:flat_relation_cache>
  2688. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2689. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_PROJEKT/ID_PROJECT"/>
  2690. </system_cache__appinfo:flat_relation_cache>
  2691. </xs:appinfo>
  2692. </xs:annotation>
  2693. </xs:element>
  2694. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_REALIZ"
  2695. minOccurs="0"
  2696. maxOccurs="unbounded"
  2697. id="DYSTRYBUCJI___d4e7414-1">
  2698. <xs:annotation>
  2699. <xs:appinfo>
  2700. <system_cache__appinfo:flat_relation_cache>
  2701. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2702. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_REALIZ/ID_PROJECT"/>
  2703. </system_cache__appinfo:flat_relation_cache>
  2704. </xs:appinfo>
  2705. </xs:annotation>
  2706. </xs:element>
  2707. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_OFFER"
  2708. minOccurs="0"
  2709. maxOccurs="unbounded"
  2710. id="DYSTRYBUCJI___d4e7419-1">
  2711. <xs:annotation>
  2712. <xs:appinfo>
  2713. <system_cache__appinfo:flat_relation_cache>
  2714. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2715. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_OFFER/ID_PROJECT"/>
  2716. </system_cache__appinfo:flat_relation_cache>
  2717. </xs:appinfo>
  2718. </xs:annotation>
  2719. </xs:element>
  2720. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_UZG"
  2721. minOccurs="0"
  2722. maxOccurs="0"
  2723. id="DYSTRYBUCJI___d4e7424-1">
  2724. <xs:annotation>
  2725. <xs:appinfo>
  2726. <system_cache__appinfo:flat_relation_cache>
  2727. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2728. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_UZG/ID_PROJECT"/>
  2729. </system_cache__appinfo:flat_relation_cache>
  2730. </xs:appinfo>
  2731. </xs:annotation>
  2732. </xs:element>
  2733. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_UZG"
  2734. minOccurs="0"
  2735. maxOccurs="unbounded"
  2736. id="DYSTRYBUCJI___d4e7429-1">
  2737. <xs:annotation>
  2738. <xs:appinfo>
  2739. <system_cache__appinfo:flat_relation_cache>
  2740. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2741. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_UZG/ID_PROJECT"/>
  2742. </system_cache__appinfo:flat_relation_cache>
  2743. </xs:appinfo>
  2744. </xs:annotation>
  2745. </xs:element>
  2746. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_UZG_ZUD"
  2747. minOccurs="0"
  2748. maxOccurs="unbounded"
  2749. id="DYSTRYBUCJI___d4e7434-1">
  2750. <xs:annotation>
  2751. <xs:appinfo>
  2752. <system_cache__appinfo:flat_relation_cache>
  2753. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2754. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_DO_UZG_ZUD/ID_PROJECT"/>
  2755. </system_cache__appinfo:flat_relation_cache>
  2756. </xs:appinfo>
  2757. </xs:annotation>
  2758. </xs:element>
  2759. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_UZG_ZUD"
  2760. minOccurs="0"
  2761. maxOccurs="unbounded"
  2762. id="DYSTRYBUCJI___d4e7439-1">
  2763. <xs:annotation>
  2764. <xs:appinfo>
  2765. <system_cache__appinfo:flat_relation_cache>
  2766. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2767. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_UZG_ZUD/ID_PROJECT"/>
  2768. </system_cache__appinfo:flat_relation_cache>
  2769. </xs:appinfo>
  2770. </xs:annotation>
  2771. </xs:element>
  2772. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_ZLECENIE"
  2773. minOccurs="0"
  2774. maxOccurs="unbounded"
  2775. id="DYSTRYBUCJI___d4e7444-1">
  2776. <xs:annotation>
  2777. <xs:appinfo>
  2778. <system_cache__appinfo:flat_relation_cache>
  2779. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2780. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_ZLECENIE/ID_PROJECT"/>
  2781. </system_cache__appinfo:flat_relation_cache>
  2782. </xs:appinfo>
  2783. </xs:annotation>
  2784. </xs:element>
  2785. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_ZGL_ODB"
  2786. minOccurs="0"
  2787. maxOccurs="unbounded"
  2788. id="DYSTRYBUCJI___d4e7450-1">
  2789. <xs:annotation>
  2790. <xs:appinfo>
  2791. <system_cache__appinfo:flat_relation_cache>
  2792. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2793. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_ZGL_ODB/ID_PROJECT"/>
  2794. </system_cache__appinfo:flat_relation_cache>
  2795. </xs:appinfo>
  2796. </xs:annotation>
  2797. </xs:element>
  2798. <xs:element ref="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_POM_GEOD"
  2799. minOccurs="0"
  2800. maxOccurs="unbounded"
  2801. id="DYSTRYBUCJI___d4e7455-1">
  2802. <xs:annotation>
  2803. <xs:appinfo>
  2804. <system_cache__appinfo:flat_relation_cache>
  2805. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2806. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_Przeciski_110mm:Rozdzielcza_Przeciski_110mm_POM_GEOD/ID_PROJECT"/>
  2807. </system_cache__appinfo:flat_relation_cache>
  2808. </xs:appinfo>
  2809. </xs:annotation>
  2810. </xs:element>
  2811. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DRAFT"
  2812. minOccurs="0"
  2813. maxOccurs="unbounded"
  2814. id="DYSTRYBUCJI___d4e7460-1">
  2815. <xs:annotation>
  2816. <xs:appinfo>
  2817. <system_cache__appinfo:flat_relation_cache>
  2818. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2819. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DRAFT/ID_PROJECT"/>
  2820. </system_cache__appinfo:flat_relation_cache>
  2821. </xs:appinfo>
  2822. </xs:annotation>
  2823. </xs:element>
  2824. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_PROJEKT"
  2825. minOccurs="0"
  2826. maxOccurs="unbounded"
  2827. id="DYSTRYBUCJI___d4e7465-1">
  2828. <xs:annotation>
  2829. <xs:appinfo>
  2830. <system_cache__appinfo:flat_relation_cache>
  2831. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2832. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_PROJEKT/ID_PROJECT"/>
  2833. </system_cache__appinfo:flat_relation_cache>
  2834. </xs:appinfo>
  2835. </xs:annotation>
  2836. </xs:element>
  2837. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_REALIZ"
  2838. minOccurs="0"
  2839. maxOccurs="unbounded"
  2840. id="DYSTRYBUCJI___d4e7470-1">
  2841. <xs:annotation>
  2842. <xs:appinfo>
  2843. <system_cache__appinfo:flat_relation_cache>
  2844. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2845. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_REALIZ/ID_PROJECT"/>
  2846. </system_cache__appinfo:flat_relation_cache>
  2847. </xs:appinfo>
  2848. </xs:annotation>
  2849. </xs:element>
  2850. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_OFFER"
  2851. minOccurs="0"
  2852. maxOccurs="unbounded"
  2853. id="DYSTRYBUCJI___d4e7475-1">
  2854. <xs:annotation>
  2855. <xs:appinfo>
  2856. <system_cache__appinfo:flat_relation_cache>
  2857. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2858. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_OFFER/ID_PROJECT"/>
  2859. </system_cache__appinfo:flat_relation_cache>
  2860. </xs:appinfo>
  2861. </xs:annotation>
  2862. </xs:element>
  2863. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_UZG"
  2864. minOccurs="0"
  2865. maxOccurs="0"
  2866. id="DYSTRYBUCJI___d4e7480-1">
  2867. <xs:annotation>
  2868. <xs:appinfo>
  2869. <system_cache__appinfo:flat_relation_cache>
  2870. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2871. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_UZG/ID_PROJECT"/>
  2872. </system_cache__appinfo:flat_relation_cache>
  2873. </xs:appinfo>
  2874. </xs:annotation>
  2875. </xs:element>
  2876. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_UZG"
  2877. minOccurs="0"
  2878. maxOccurs="unbounded"
  2879. id="DYSTRYBUCJI___d4e7485-1">
  2880. <xs:annotation>
  2881. <xs:appinfo>
  2882. <system_cache__appinfo:flat_relation_cache>
  2883. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2884. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_UZG/ID_PROJECT"/>
  2885. </system_cache__appinfo:flat_relation_cache>
  2886. </xs:appinfo>
  2887. </xs:annotation>
  2888. </xs:element>
  2889. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2890. ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_UZG_ZUD"
  2891. minOccurs="0"
  2892. maxOccurs="unbounded">
  2893. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2894. <xs:appinfo>
  2895. <system_cache__appinfo:flat_relation_cache>
  2896. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2897. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_DO_UZG_ZUD/ID_PROJECT"/>
  2898. </system_cache__appinfo:flat_relation_cache>
  2899. </xs:appinfo>
  2900. </xs:annotation>
  2901. </xs:element>-->
  2902. <!--<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema"
  2903. ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_UZG_ZUD"
  2904. minOccurs="0"
  2905. maxOccurs="unbounded">
  2906. <xs:annotation xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  2907. <xs:appinfo>
  2908. <system_cache__appinfo:flat_relation_cache>
  2909. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2910. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_UZG_ZUD/ID_PROJECT"/>
  2911. </system_cache__appinfo:flat_relation_cache>
  2912. </xs:appinfo>
  2913. </xs:annotation>
  2914. </xs:element>-->
  2915. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_ZLECENIE"
  2916. minOccurs="0"
  2917. maxOccurs="unbounded"
  2918. id="DYSTRYBUCJI___d4e7492-1">
  2919. <xs:annotation>
  2920. <xs:appinfo>
  2921. <system_cache__appinfo:flat_relation_cache>
  2922. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2923. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_ZLECENIE/ID_PROJECT"/>
  2924. </system_cache__appinfo:flat_relation_cache>
  2925. </xs:appinfo>
  2926. </xs:annotation>
  2927. </xs:element>
  2928. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_ZGL_ODB"
  2929. minOccurs="0"
  2930. maxOccurs="unbounded"
  2931. id="DYSTRYBUCJI___d4e7498-1">
  2932. <xs:annotation>
  2933. <xs:appinfo>
  2934. <system_cache__appinfo:flat_relation_cache>
  2935. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2936. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_ZGL_ODB/ID_PROJECT"/>
  2937. </system_cache__appinfo:flat_relation_cache>
  2938. </xs:appinfo>
  2939. </xs:annotation>
  2940. </xs:element>
  2941. <xs:element ref="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_POM_GEOD"
  2942. minOccurs="0"
  2943. maxOccurs="unbounded"
  2944. id="DYSTRYBUCJI___d4e7503-1">
  2945. <xs:annotation>
  2946. <xs:appinfo>
  2947. <system_cache__appinfo:flat_relation_cache>
  2948. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2949. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_PionyKablowe:Rozdzielcza_PionyKablowe_POM_GEOD/ID_PROJECT"/>
  2950. </system_cache__appinfo:flat_relation_cache>
  2951. </xs:appinfo>
  2952. </xs:annotation>
  2953. </xs:element>
  2954. <xs:element maxOccurs="unbounded"
  2955. minOccurs="0"
  2956. ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DRAFT"
  2957. id="DYSTRYBUCJI___d4e7508-1">
  2958. <xs:annotation>
  2959. <xs:appinfo>
  2960. <system_cache__appinfo:flat_relation_cache>
  2961. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2962. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DRAFT/ID_PROJECT"/>
  2963. </system_cache__appinfo:flat_relation_cache>
  2964. </xs:appinfo>
  2965. </xs:annotation>
  2966. </xs:element>
  2967. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_PROJEKT"
  2968. minOccurs="0"
  2969. maxOccurs="unbounded"
  2970. id="DYSTRYBUCJI___d4e7513-1">
  2971. <xs:annotation>
  2972. <xs:appinfo>
  2973. <system_cache__appinfo:flat_relation_cache>
  2974. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2975. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_PROJEKT/ID_PROJECT"/>
  2976. </system_cache__appinfo:flat_relation_cache>
  2977. </xs:appinfo>
  2978. </xs:annotation>
  2979. </xs:element>
  2980. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_REALIZ"
  2981. minOccurs="0"
  2982. maxOccurs="unbounded"
  2983. id="DYSTRYBUCJI___d4e7518-1">
  2984. <xs:annotation>
  2985. <xs:appinfo>
  2986. <system_cache__appinfo:flat_relation_cache>
  2987. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  2988. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_REALIZ/ID_PROJECT"/>
  2989. </system_cache__appinfo:flat_relation_cache>
  2990. </xs:appinfo>
  2991. </xs:annotation>
  2992. </xs:element>
  2993. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_OFFER"
  2994. minOccurs="0"
  2995. maxOccurs="unbounded"
  2996. id="DYSTRYBUCJI___d4e7523-1">
  2997. <xs:annotation>
  2998. <xs:appinfo>
  2999. <system_cache__appinfo:flat_relation_cache>
  3000. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3001. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_OFFER/ID_PROJECT"/>
  3002. </system_cache__appinfo:flat_relation_cache>
  3003. </xs:appinfo>
  3004. </xs:annotation>
  3005. </xs:element>
  3006. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_UZG"
  3007. minOccurs="0"
  3008. maxOccurs="0"
  3009. id="DYSTRYBUCJI___d4e7528-1">
  3010. <xs:annotation>
  3011. <xs:appinfo>
  3012. <system_cache__appinfo:flat_relation_cache>
  3013. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3014. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_UZG/ID_PROJECT"/>
  3015. </system_cache__appinfo:flat_relation_cache>
  3016. </xs:appinfo>
  3017. </xs:annotation>
  3018. </xs:element>
  3019. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_UZG"
  3020. minOccurs="0"
  3021. maxOccurs="unbounded"
  3022. id="DYSTRYBUCJI___d4e7533-1">
  3023. <xs:annotation>
  3024. <xs:appinfo>
  3025. <system_cache__appinfo:flat_relation_cache>
  3026. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3027. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_UZG/ID_PROJECT"/>
  3028. </system_cache__appinfo:flat_relation_cache>
  3029. </xs:appinfo>
  3030. </xs:annotation>
  3031. </xs:element>
  3032. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_UZG_ZUD"
  3033. minOccurs="0"
  3034. maxOccurs="0"
  3035. id="DYSTRYBUCJI___d4e7538-1">
  3036. <xs:annotation>
  3037. <xs:appinfo>
  3038. <system_cache__appinfo:flat_relation_cache>
  3039. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3040. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_DO_UZG_ZUD/ID_PROJECT"/>
  3041. </system_cache__appinfo:flat_relation_cache>
  3042. </xs:appinfo>
  3043. </xs:annotation>
  3044. </xs:element>
  3045. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_UZG_ZUD"
  3046. minOccurs="0"
  3047. maxOccurs="unbounded"
  3048. id="DYSTRYBUCJI___d4e7543-1">
  3049. <xs:annotation>
  3050. <xs:appinfo>
  3051. <system_cache__appinfo:flat_relation_cache>
  3052. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3053. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_UZG_ZUD/ID_PROJECT"/>
  3054. </system_cache__appinfo:flat_relation_cache>
  3055. </xs:appinfo>
  3056. </xs:annotation>
  3057. </xs:element>
  3058. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_ZLECENIE"
  3059. minOccurs="0"
  3060. maxOccurs="unbounded"
  3061. id="DYSTRYBUCJI___d4e7548-1">
  3062. <xs:annotation>
  3063. <xs:appinfo>
  3064. <system_cache__appinfo:flat_relation_cache>
  3065. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3066. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_ZLECENIE/ID_PROJECT"/>
  3067. </system_cache__appinfo:flat_relation_cache>
  3068. </xs:appinfo>
  3069. </xs:annotation>
  3070. </xs:element>
  3071. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_ZGL_ODB"
  3072. minOccurs="0"
  3073. maxOccurs="unbounded"
  3074. id="DYSTRYBUCJI___d4e7554-1">
  3075. <xs:annotation>
  3076. <xs:appinfo>
  3077. <system_cache__appinfo:flat_relation_cache>
  3078. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3079. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_ZGL_ODB/ID_PROJECT"/>
  3080. </system_cache__appinfo:flat_relation_cache>
  3081. </xs:appinfo>
  3082. </xs:annotation>
  3083. </xs:element>
  3084. <xs:element ref="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_POM_GEOD"
  3085. minOccurs="0"
  3086. maxOccurs="unbounded"
  3087. id="DYSTRYBUCJI___d4e7559-1">
  3088. <xs:annotation>
  3089. <xs:appinfo>
  3090. <system_cache__appinfo:flat_relation_cache>
  3091. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3092. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rurociag_wsg84:Rozdzielcza_rurociag_wsg84_POM_GEOD/ID_PROJECT"/>
  3093. </system_cache__appinfo:flat_relation_cache>
  3094. </xs:appinfo>
  3095. </xs:annotation>
  3096. </xs:element>
  3097. <xs:element maxOccurs="unbounded"
  3098. minOccurs="0"
  3099. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DRAFT"
  3100. id="DYSTRYBUCJI___d4e7564-1">
  3101. <xs:annotation>
  3102. <xs:appinfo>
  3103. <system_cache__appinfo:flat_relation_cache>
  3104. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3105. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DRAFT/ID_PROJECT"/>
  3106. </system_cache__appinfo:flat_relation_cache>
  3107. </xs:appinfo>
  3108. </xs:annotation>
  3109. </xs:element>
  3110. <xs:element maxOccurs="unbounded"
  3111. minOccurs="0"
  3112. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_PROJEKT"
  3113. id="DYSTRYBUCJI___d4e7569-1">
  3114. <xs:annotation>
  3115. <xs:appinfo>
  3116. <system_cache__appinfo:flat_relation_cache>
  3117. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3118. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_PROJEKT/ID_PROJECT"/>
  3119. </system_cache__appinfo:flat_relation_cache>
  3120. </xs:appinfo>
  3121. </xs:annotation>
  3122. </xs:element>
  3123. <xs:element maxOccurs="unbounded"
  3124. minOccurs="0"
  3125. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_REALIZ"
  3126. id="DYSTRYBUCJI___d4e7574-1">
  3127. <xs:annotation>
  3128. <xs:appinfo>
  3129. <system_cache__appinfo:flat_relation_cache>
  3130. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3131. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_REALIZ/ID_PROJECT"/>
  3132. </system_cache__appinfo:flat_relation_cache>
  3133. </xs:appinfo>
  3134. </xs:annotation>
  3135. </xs:element>
  3136. <xs:element maxOccurs="unbounded"
  3137. minOccurs="0"
  3138. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_OFFER"
  3139. id="DYSTRYBUCJI___d4e7579-1">
  3140. <xs:annotation>
  3141. <xs:appinfo>
  3142. <system_cache__appinfo:flat_relation_cache>
  3143. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3144. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_OFFER/ID_PROJECT"/>
  3145. </system_cache__appinfo:flat_relation_cache>
  3146. </xs:appinfo>
  3147. </xs:annotation>
  3148. </xs:element>
  3149. <xs:element maxOccurs="0"
  3150. minOccurs="0"
  3151. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_UZG"
  3152. id="DYSTRYBUCJI___d4e7584-1">
  3153. <xs:annotation>
  3154. <xs:appinfo>
  3155. <system_cache__appinfo:flat_relation_cache>
  3156. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3157. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_UZG/ID_PROJECT"/>
  3158. </system_cache__appinfo:flat_relation_cache>
  3159. </xs:appinfo>
  3160. </xs:annotation>
  3161. </xs:element>
  3162. <xs:element maxOccurs="unbounded"
  3163. minOccurs="0"
  3164. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_UZG"
  3165. id="DYSTRYBUCJI___d4e7589-1">
  3166. <xs:annotation>
  3167. <xs:appinfo>
  3168. <system_cache__appinfo:flat_relation_cache>
  3169. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3170. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_UZG/ID_PROJECT"/>
  3171. </system_cache__appinfo:flat_relation_cache>
  3172. </xs:appinfo>
  3173. </xs:annotation>
  3174. </xs:element>
  3175. <xs:element maxOccurs="unbounded"
  3176. minOccurs="0"
  3177. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_UZG_ZUD"
  3178. id="DYSTRYBUCJI___d4e7594-1">
  3179. <xs:annotation>
  3180. <xs:appinfo>
  3181. <system_cache__appinfo:flat_relation_cache>
  3182. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3183. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_DO_UZG_ZUD/ID_PROJECT"/>
  3184. </system_cache__appinfo:flat_relation_cache>
  3185. </xs:appinfo>
  3186. </xs:annotation>
  3187. </xs:element>
  3188. <xs:element maxOccurs="unbounded"
  3189. minOccurs="0"
  3190. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_UZG_ZUD"
  3191. id="DYSTRYBUCJI___d4e7599-1">
  3192. <xs:annotation>
  3193. <xs:appinfo>
  3194. <system_cache__appinfo:flat_relation_cache>
  3195. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3196. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_UZG_ZUD/ID_PROJECT"/>
  3197. </system_cache__appinfo:flat_relation_cache>
  3198. </xs:appinfo>
  3199. </xs:annotation>
  3200. </xs:element>
  3201. <xs:element maxOccurs="unbounded"
  3202. minOccurs="0"
  3203. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_ZLECENIE"
  3204. id="DYSTRYBUCJI___d4e7604-1">
  3205. <xs:annotation>
  3206. <xs:appinfo>
  3207. <system_cache__appinfo:flat_relation_cache>
  3208. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3209. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_ZLECENIE/ID_PROJECT"/>
  3210. </system_cache__appinfo:flat_relation_cache>
  3211. </xs:appinfo>
  3212. </xs:annotation>
  3213. </xs:element>
  3214. <xs:element maxOccurs="unbounded"
  3215. minOccurs="0"
  3216. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_ZGL_ODB"
  3217. id="DYSTRYBUCJI___d4e7610-1">
  3218. <xs:annotation>
  3219. <xs:appinfo>
  3220. <system_cache__appinfo:flat_relation_cache>
  3221. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3222. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_ZGL_ODB/ID_PROJECT"/>
  3223. </system_cache__appinfo:flat_relation_cache>
  3224. </xs:appinfo>
  3225. </xs:annotation>
  3226. </xs:element>
  3227. <xs:element maxOccurs="unbounded"
  3228. minOccurs="0"
  3229. ref="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_POM_GEOD"
  3230. id="DYSTRYBUCJI___d4e7615-1">
  3231. <xs:annotation>
  3232. <xs:appinfo>
  3233. <system_cache__appinfo:flat_relation_cache>
  3234. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3235. system_cache__appinfo:xpath="default_db__x3A__Rozdzielcza_rura_oslonowa_magistralna:Rozdzielcza_rura_oslonowa_magistralna_POM_GEOD/ID_PROJECT"/>
  3236. </system_cache__appinfo:flat_relation_cache>
  3237. </xs:appinfo>
  3238. </xs:annotation>
  3239. </xs:element>
  3240. <xs:element maxOccurs="0"
  3241. minOccurs="0"
  3242. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_INVEST_ARRANGEMENT_DEAL"
  3243. id="DYSTRYBUCJI___d4e7620-1">
  3244. <xs:annotation>
  3245. <xs:appinfo>
  3246. <system_cache__appinfo:flat_relation_cache>
  3247. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3248. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_INVEST_ARRANGEMENT_DEAL/ID_PROJECT"/>
  3249. </system_cache__appinfo:flat_relation_cache>
  3250. </xs:appinfo>
  3251. </xs:annotation>
  3252. </xs:element>
  3253. <xs:element maxOccurs="unbounded"
  3254. minOccurs="0"
  3255. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_INVEST_ARRANGEMENT_DEAL_SIGNED"
  3256. id="DYSTRYBUCJI___d4e7625-1">
  3257. <xs:annotation>
  3258. <xs:appinfo>
  3259. <system_cache__appinfo:flat_relation_cache>
  3260. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view"
  3261. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_INVEST_ARRANGEMENT_DEAL_SIGNED/ID_PROJECT"/>
  3262. </system_cache__appinfo:flat_relation_cache>
  3263. </xs:appinfo>
  3264. </xs:annotation>
  3265. </xs:element>
  3266. </xs:sequence>
  3267. </xs:restriction>
  3268. </xs:complexContent>
  3269. </xs:complexType>
  3270. <xs:element name="INWESTYCJA_BUDOWA_SIECI_UZG"
  3271. type="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:INWESTYCJA_BUDOWA_SIECI_UZG"
  3272. id="DYSTRYBUCJI___d4e7630-1_INWESTYCJA"/>
  3273. <xs:element name="UMOWA"
  3274. type="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:IN7_MK_BAZA_DYSTRYBUCJI"
  3275. id="DYSTRYBUCJI___d4e7631-1_UMOWA"/>
  3276. </xs:schema>