build_taxpayer_check.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:p5bztpc="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/taxpayer_check/p5bztpc.xsd"
  3. basedir="../../."
  4. default="default"
  5. name="taxpayer_check">
  6. <include as="PRODUCT" file="build.p5bztpc.PRODUCT.xml"/>
  7. <include as="SYSTEM" file="build.p5bztpc.SYSTEM.xml"/>
  8. <include as="INSTALL" file="build.p5bztpc.INSTALL.xml"/>
  9. <include as="WPS_Functions" file="../build.WPS_Functions.PRODUCT.xml"/>
  10. <include file="../system_ui_info_speech/build.system_ui_info_speech.PRODUCT.xml"/>
  11. <target depends="PRODUCT.PRODUCT,INSTALL.INSTALL" name="default"/>
  12. <target name="complete_task" description="wykoanie wsyzstkich akcji">
  13. <input addproperty="p5bztpc.input.GLOBAL.NIP" message="p5bztpc.input.NIP podaj nip" defaultvalue="5932268672"/>
  14. <antcall target="sprawdzenie_poprawno_ci_nipu_wej_ciowego">
  15. <param name="p5bztpc.input.NIP" value="${p5bztpc.input.GLOBAL.NIP}"/>
  16. </antcall>
  17. <echo> zauwazmy, ze $p5bztpc.input.GLOBAL.NIP = ${p5bztpc.input.GLOBAL.NIP}
  18. a $p5bztpc.input.NIP = ${p5bztpc.input.NIP}
  19. </echo>
  20. </target>
  21. <target name="przekazanie_argumentu_z_input">
  22. <input addproperty="p5bztpc.input.GLOBAL.NIP" message="p5bztpc.input.NIP podaj nip" defaultvalue="5932268672"/>
  23. </target>
  24. <extension-point name="sprawdzenie_poprawno_ci_nipu_wej_ciowego.dita"/>
  25. <extension-point name="pobranie_danych_o_statusie_vat_dla_danego_numeru_nip.dita"/>
  26. <extension-point name="pobranie_danych_ze_strony_finanse.mf.gov.pl.dita"/>
  27. <extension-point name="przetworzenie_danych.dita"/>
  28. <extension-point name="zapisanie_do_bazy.dita"/>
  29. <target name="sprawdzenie_poprawno_ci_nipu_wej_ciowego">
  30. <description> podany nip sprawdzamy</description>
  31. <input addproperty="p5bztpc.input.NIP" message="p5bztpc.input.NIP podaj nip" defaultvalue="5932268672"/>
  32. <echo> #30 todo
  33. some task to check NIP
  34. wygdnie uzyc klasy xsd
  35. zmienna $p5bztpc.input.NIP ${p5bztpc.input.NIP}
  36. </echo>
  37. <exec executable="echo">
  38. <arg line="daj jakiegos grepa"/>
  39. </exec>
  40. </target>
  41. <target name="pobranie_danych_o_statusie_vat_dla_danego_numeru_nip">
  42. <description> tutaj na podstawie nipu walimy do http </description>
  43. <input addproperty="p5bztpc.input.NIP" message="p5bztpc.input.NIP podaj nip" defaultvalue="5932268672"/>
  44. </target>
  45. </project>