Examples of PurchaseOrder

  • org.apache.camel.converter.PurchaseOrder
    @version $Revision: 901136 $
  • org.apache.camel.dataformat.bindy.model.tab.PurchaseOrder
    @version
  • org.apache.camel.example.PurchaseOrder
    @version $Revision: 563665 $
  • org.blueoxygen.postila.requisitiontoinvoice.entity.PurchaseOrder
  • org.dom4j.test.primer.PurchaseOrder
  • org.jboss.test.xml.po.PurchaseOrder
    @author Alexey Loubyansky @version $Revision: 37406 $
  • org.multibit.mbm.client.domain.model.model.PurchaseOrder

    DTO to provide the following to the application

    A PurchaseOrder provides the mechanism for temporary storage of {@link Item}s. A {@link Supplier} maintains a single PurchaseOrder(created on demand)

  • org.sab.invsys.persistence.model.order.purchase.PurchaseOrder

  • Examples of openbook.domain.PurchaseOrder

         *
         * @param cart a non-null Shopping cart.
         */
        public PurchaseOrder placeOrder(ShoppingCart cart) {
            EntityManager em = begin();
            PurchaseOrder order = new PurchaseOrder(cart);
            em.persist(order);
            commit();
            cart.clear();
            return order;
        }
    View Full Code Here

    Examples of openbook.domain.PurchaseOrder

                        protected List<PurchaseOrder> doInBackground() throws Exception {
                            List<PurchaseOrder> updated = new ArrayList<PurchaseOrder>();
                            EntityDataModel<PurchaseOrder> orders = _orders.getDataModel();
                            int n = orders.getRowCount();
                            for (int i = 0; i < n; i++) {
                                PurchaseOrder order = orders.getRow(i);
                                if (order.getStatus() == PurchaseOrder.Status.PENDING) {
                                    updated.add(_service.deliver(order));
                                }
                            }
                            return updated;
                        }
    View Full Code Here

    Examples of openbook.domain.PurchaseOrder

         *
         * @param cart a non-null Shopping cart.
         */
        public PurchaseOrder placeOrder(ShoppingCart cart) {
            EntityManager em = begin();
            PurchaseOrder order = new PurchaseOrder(cart);
            em.persist(order);
            commit();
            cart.clear();
            return order;
        }
    View Full Code Here

    Examples of org.apache.camel.converter.PurchaseOrder

            BigDecimal price = new BigDecimal(s2);
            price.setScale(2);

            Integer amount = converter.convertTo(Integer.class, s3);

            PurchaseOrder order = new PurchaseOrder(name, price, amount);
            return order;
        }
    View Full Code Here

    Examples of org.apache.camel.dataformat.bindy.model.tab.PurchaseOrder

            template.sendBody("direct:unmarshal", "123\tCamel in Action\t2\tPlease hurry\tJane Doe\tJohn Doe\n");

            assertMockEndpointsSatisfied();

            List<Map> rows = CastUtils.cast(mock.getReceivedExchanges().get(0).getIn().getBody(List.class));
            PurchaseOrder order = (PurchaseOrder) rows.get(0).get(PurchaseOrder.class.getName());

            assertEquals(123, order.getId());
            assertEquals("Camel in Action", order.getName());
            assertEquals(2, order.getAmount());
            assertEquals("Please hurry", order.getOrderText());
            assertEquals("Jane Doe", order.getSalesRef());
            assertEquals("John Doe", order.getCustomerRef());
        }
    View Full Code Here

    Examples of org.apache.camel.dataformat.bindy.model.tab.PurchaseOrder

        @Test
        public void testMarshal() throws Exception {
            MockEndpoint mock = getMockEndpoint("mock:marshal");
            mock.expectedBodiesReceived("123\tCamel in Action\t2\tPlease hurry\tJane Doe\tJohn Doe\n");

            PurchaseOrder order = new PurchaseOrder();
            order.setId(123);
            order.setName("Camel in Action");
            order.setAmount(2);
            order.setOrderText("Please hurry");
            order.setSalesRef("Jane Doe");
            order.setCustomerRef("John Doe");

            template.sendBody("direct:marshal", order);

            assertMockEndpointsSatisfied();
        }
    View Full Code Here

    Examples of org.apache.camel.dataformat.bindy.model.tab.PurchaseOrder

                            + "456\tCamel in Action\t2\t\t\n456\tCamel in Action\t1\t\t\t\n", Exchange.CONTENT_ENCODING, "iso8859-1");

            assertMockEndpointsSatisfied();

            List<Map<?, PurchaseOrder>> rows = CastUtils.cast(mock.getReceivedExchanges().get(0).getIn().getBody(List.class));
            PurchaseOrder order = rows.get(0).get(PurchaseOrder.class.getName());

            assertEquals(123, order.getId());
            assertEquals("Camel in Action", order.getName());
            assertEquals(2, order.getAmount());
            assertNull(order.getOrderText());
            assertNull(order.getSalesRef());
            assertNull(order.getCustomerRef());
        }
    View Full Code Here

    Examples of org.apache.camel.dataformat.bindy.model.tab.PurchaseOrder

        @Test
        public void testMarshalEmptyTrailingNoneRequiredFields() throws Exception {
            MockEndpoint mock = getMockEndpoint("mock:marshal");
            mock.expectedBodiesReceived("123\tCamel in Action\t2\t\t\t\n");

            PurchaseOrder order = new PurchaseOrder();
            order.setId(123);
            order.setName("Camel in Action");
            order.setAmount(2);
            order.setOrderText("");
            order.setSalesRef("");
            order.setCustomerRef("");

            template.sendBody("direct:marshal", order);

            assertMockEndpointsSatisfied();
        }
    View Full Code Here

    Examples of org.apache.camel.dataformat.bindy.model.tab.PurchaseOrder

            template.sendBody("direct:unmarshal", "123\tCamel in Action\t2");

            assertMockEndpointsSatisfied();

            List<Map> rows = mock.getReceivedExchanges().get(0).getIn().getBody(List.class);
            PurchaseOrder order = (PurchaseOrder) rows.get(0).get(PurchaseOrder.class.getName());

            assertEquals(123, order.getId());
            assertEquals("Camel in Action", order.getName());
            assertEquals(2, order.getAmount());
        }
    View Full Code Here

    Examples of org.apache.camel.dataformat.bindy.model.tab.PurchaseOrder

        @Test
        public void testMarshal() throws Exception {
            MockEndpoint mock = getMockEndpoint("mock:marshal");
            mock.expectedBodiesReceived("123\tCamel in Action\t2\n");

            PurchaseOrder order = new PurchaseOrder();
            order.setId(123);
            order.setName("Camel in Action");
            order.setAmount(2);

            template.sendBody("direct:marshal", order);

            assertMockEndpointsSatisfied();
        }
    View Full Code Here
    TOP
    Copyright © 2018 www.massapi.com. All rights reserved.
    All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.