Advertisement
Fanadia_Friska

Service

Jul 5th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <services-flow xmlns:xs="http://www.w3.org/2001/XMLSchema"
  3. xmlns="http://www.jleaf.org/jleaf/service-flow">
  4.  
  5. <service name="getCashBankListForBankAndOverdraftTypeAdvance" output="outputDto">
  6. <informations>
  7. <description>Get CashBank List For Bank And Overdraft Type Advance</description>
  8. <info-in>
  9. <info name="result.header.userLoginId" description="user login id" type="Long" />
  10. <info name="result.header.roleLoginId" description="role login id" type="Long" />
  11. <info name="result.header.tenantLoginId" description="tenant login id" type="Long" />
  12. <info name="result.header.datetime" description="datetime" type="String" />
  13. <info name="result.header.sessionId" description="session id" type="String" />
  14. <info name="result.header.secureKey" description="secure key" type="String" />
  15. <info name="result.header.taskName" description="task name" type="String" />
  16.  
  17. <info name="result.payload.tenantId" description="tenant id" type="Long" />
  18. <info name="result.payload.code" description="code" type="String" />
  19. <info name="result.payload.name" description="name" type="String" />
  20. <info name="result.payload.bankCode" description="bank code" type="String" />
  21. <info name="result.payload.currencyCode" description="currency code" type="String" />
  22. <info name="result.payload.active" description="active" type="String" />
  23. </info-in>
  24. <info-out>
  25. <info name="result.cashBankList" description="list of cash bank (id, tenantId, code, name, flagCashBank, flagCashBankPropKey, bankCode, bankPropKey, accountNo, currencyCode, currencyPropKey, accountName1, accountName2, address1, address2, address3, coaId, active)" type="List" />
  26. </info-out>
  27. </informations>
  28. <mod-dto output="inputDto">
  29. <key name="tenantId" type="Long" from="${result.header.tenantLoginId}" />
  30. <key name="code" type="String" from="${result.payload.code}" />
  31. <key name="name" type="String" from="${result.payload.name}" />
  32. <key name="bankCode" type="String" from="${result.payload.bankCode}" />
  33. <key name="currencyCode" type="String" from="${result.payload.currencyCode}" />
  34. <key name="active" type="String" from="${result.payload.active}" />
  35. </mod-dto>
  36. <call-bf name="getCashBankListForBankAndOverdraftTypeAdvance" input="${inputDto}" output="outputDto">
  37. <onsuccess />
  38. <onerror />
  39. </call-bf>
  40. </service>
  41.  
  42. </services-flow>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement