Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <service name="getDetailProductById" bean="" output="outputDto">
- <informations>
- <description>Get Detail Product By 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.productId" type="Long" description="Product Id" />
- </info-in>
- <info-out>
- <info name="result.product" type="List" description="list of product (id, productCode, productName)"/>
- <info name="result.stock" type="List" description="list of stock (qty,uomName,warehouseCode,warehouseName)"/>
- <info name="result.price" type="List" description="list of price (code,price, currCode)"/>
- </info-out>
- </informations>
- <mod-dto output="inputDto">
- <key name="tenantId" type="Long" from="${result.header.tenantLoginId}" />
- <key name="productId" type="Long" from="${result.payload.productId}" />
- </mod-dto>
- <call-bf name="getDetailProductById" input="${inputDto}" output="outputDto">
- <onsuccess />
- <onerror />
- </call-bf>
- </service>
Advertisement
Add Comment
Please, Sign In to add comment