Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <services-flow xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns="http://www.jleaf.org/jleaf/service-flow"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.jleaf.org/jleaf/service-flow service-flow-scheme-jleaf.xsd">
- <service name="getTodaySummarySaldoHutangByCustomerId" output="outputDto">
- <informations>
- <description>Get Today Summary Saldo Hutang By Customer Id</description>
- <info-in>
- <info name="result.header.userLoginId" type="Long" description="User login id"/>
- <info name="result.header.tenantLoginId" type="Long" description="Tenant login id"/>
- <info name="result.header.roleLoginId" type="Long" description="Role login id"/>
- <info name="result.header.datetime" type="String" description="Datetime"/>
- <info name="result.header.taskName" type="String" description="Task name"/>
- <info name="result.payload.customerId" type="Long" description="customer Id" />
- <info name="result.payload.apiKey" type="String" description="apiKey" />
- </info-in>
- <info-out>
- <info name="summarySaldoHutangCustomer" type="" description="summarySaldoHutangCustomer {totalDebt, totalDebtDueDate, totalDebtNotDueDate, totalInvoice , totalInvoiceDueDate, totalInvoiceNotDueDate}" />
- </info-out>
- </informations>
- <mod-dto output="inputDto">
- <key name="userLoginId" type="Long" from="${result.header.userLoginId}" />
- <key name="roleLoginId" type="Long" from="${result.header.roleLoginId}" />
- <key name="tenantLoginId" type="Long" from="${result.header.tenantLoginId}" />
- <key name="datetime" type="String" from="${result.header.datetime}" />
- <key name="customerId" type="Long" from="${result.payload.customerId}" />
- </mod-dto>
- <call-bf name="getTodaySummarySaldoHutangByCustomerId" input="${inputDto}" output="outputDto">
- <onsuccess />
- <onerror />
- </call-bf>
- </service>
- </services-flow>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement