Subversion Repositories SmartDukaan

Rev

Rev 8657 | Rev 9456 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8657 Rev 8660
Line 231... Line 231...
231
        protected double sellingPricePerItem;
231
        protected double sellingPricePerItem;
232
        @XmlElement(name = "InvoiceCode", required = true)
232
        @XmlElement(name = "InvoiceCode", required = true)
233
        protected String invoiceCode;
233
        protected String invoiceCode;
234
        @XmlElement(name = "ShipByDate", required = true)
234
        @XmlElement(name = "ShipByDate", required = true)
235
        @XmlSchemaType(name = "date")
235
        @XmlSchemaType(name = "date")
236
        protected XMLGregorianCalendar shipByDate;
236
        protected String shipByDate;
237
 
237
 
238
        /**
238
        /**
239
         * Gets the value of the courier property.
239
         * Gets the value of the courier property.
240
         * 
240
         * 
241
         * @return
241
         * @return
Line 537... Line 537...
537
         * @return
537
         * @return
538
         *     possible object is
538
         *     possible object is
539
         *     {@link XMLGregorianCalendar }
539
         *     {@link XMLGregorianCalendar }
540
         *     
540
         *     
541
         */
541
         */
542
        public XMLGregorianCalendar getShipByDate() {
542
        public String getShipByDate() {
543
            return shipByDate;
543
            return shipByDate;
544
        }
544
        }
545
 
545
 
546
        /**
546
        /**
547
         * Sets the value of the shipByDate property.
547
         * Sets the value of the shipByDate property.
Line 549... Line 549...
549
         * @param value
549
         * @param value
550
         *     allowed object is
550
         *     allowed object is
551
         *     {@link XMLGregorianCalendar }
551
         *     {@link XMLGregorianCalendar }
552
         *     
552
         *     
553
         */
553
         */
554
        public void setShipByDate(XMLGregorianCalendar value) {
554
        public void setShipByDate(String value) {
555
            this.shipByDate = value;
555
            this.shipByDate = value;
556
        }
556
        }
557
 
557
 
558
    }
558
    }
559
 
559