/** Get a service caller to call a service synchronously. */
        //ServiceCallSync sync();
        /** Map of name, value pairs that make up the context (in parameters) passed to the service. */
       // ServiceCallSync parameters(Map<String, ?> context);
        /** Call the service synchronously and immediately get the result.
         * @return Map containing the result (out parameters) from the service call.
         */
        //Map<String, Object> call() throws ServiceException;
        Map priceMap = ec.service.sync().name("mantle.product.PriceServices.get#ProductPrice")
                .parameters([productId:'DEMO_1_1', priceUomId:priceUomId, quantity:1,
                    vendorPartyId:vendorPartyId, customerPartyId:customerPartyId]).call()

 

相关文章:

  • 2022-01-08
  • 2021-10-05
  • 2021-11-13
  • 2022-12-23
  • 2021-10-27
  • 2021-12-10
  • 2021-04-02
猜你喜欢
  • 2022-12-23
  • 2021-05-28
  • 2021-12-30
  • 2021-12-18
  • 2022-12-23
  • 2021-06-22
  • 2021-09-20
相关资源
相似解决方案