Subversion Repositories SmartDukaan

Rev

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

Rev 26817 Rev 26924
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.fofo;
1
package com.spice.profitmandi.dao.entity.fofo;
2
 
2
 
3
import java.io.Serializable;
3
import java.io.Serializable;
4
import java.time.LocalDateTime;
4
import java.time.LocalDateTime;
-
 
5
import java.util.List;
5
 
6
 
6
import javax.persistence.Column;
7
import javax.persistence.Column;
7
import javax.persistence.Convert;
8
import javax.persistence.Convert;
8
import javax.persistence.Entity;
9
import javax.persistence.Entity;
9
import javax.persistence.GeneratedValue;
10
import javax.persistence.GeneratedValue;
Line 64... Line 65...
64
	private double refundedAmount;
65
	private double refundedAmount;
65
	@Column(name = "paid_amount")
66
	@Column(name = "paid_amount")
66
	private double paidAmount;
67
	private double paidAmount;
67
	@Column(name = "billed_amount")
68
	@Column(name = "billed_amount")
68
	private double billedAmount;
69
	private double billedAmount;
-
 
70
	
-
 
71
	@Transient
-
 
72
	private List<PendingOrderItem> pendingOrderItems;
-
 
73
	
-
 
74
	
-
 
75
	public List<PendingOrderItem> getPendingOrderItems() {
-
 
76
		return pendingOrderItems;
-
 
77
	}
-
 
78
	public void setPendingOrderItems(List<PendingOrderItem> pendingOrderItems) {
-
 
79
		this.pendingOrderItems = pendingOrderItems;
-
 
80
	}
69
	@Override
81
	@Override
70
	public String toString() {
82
	public String toString() {
71
		return "PendingOrder [id=" + id + ", fofoId=" + fofoId + ", customerId=" + customerId + ", payMethod="
83
		return "PendingOrder [id=" + id + ", fofoId=" + fofoId + ", customerId=" + customerId + ", payMethod="
72
				+ payMethod + ", customerGstNumber=" + customerGstNumber + ", customerAddressId=" + customerAddressId
84
				+ payMethod + ", customerGstNumber=" + customerGstNumber + ", customerAddressId=" + customerAddressId
73
				+ ", status=" + status + ", createTimestamp=" + createTimestamp + ", totalAmount=" + totalAmount
85
				+ ", status=" + status + ", createTimestamp=" + createTimestamp + ", totalAmount=" + totalAmount