cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

i have created one item extending AbstractOrderEntry...and added one attribute quotedPrice to it , how can i fetch the value from ordermodel for setting it to orderdata? Also this attribute is not visible in orderentry

Former Member
0 Likes
804
     <attributes>
        <attribute qualifier="quotedPrice" type="java.lang.Double" autocreate="true" generate="true">
             <persistence type="property"></persistence>
         <modifiers read="true" write="true" search="true" optional="true"/>
       </attribute>    
     </attributes>
 </itemtype>

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member1320010
Participant
0 Likes

if you want your custom order entry object as part of order.getOrderEntries , shouldn't you extend it with OrderEntry rather than AbstractOrderEntry ? Eg : - ReturnOrderEntry