| Line 651... |
Line 651... |
| 651 |
|
651 |
|
| 652 |
return t_PaginatedUserSanction
|
652 |
return t_PaginatedUserSanction
|
| 653 |
|
653 |
|
| 654 |
def to_t_OutstandingPayments(outstandingPayment,counterName):
|
654 |
def to_t_OutstandingPayments(outstandingPayment,counterName):
|
| 655 |
t_OutstandingPayment = TOutstandingPayments()
|
655 |
t_OutstandingPayment = TOutstandingPayments()
|
| 656 |
print outstandingPayment.user_id
|
- |
|
| 657 |
print counterName
|
- |
|
| 658 |
print outstandingPayment.creditor_id
|
- |
|
| 659 |
print outstandingPayment.payment_id
|
- |
|
| 660 |
print outstandingPayment.totalAmount
|
- |
|
| 661 |
print outstandingPayment.createdDate
|
- |
|
| 662 |
t_OutstandingPayment.user_id = outstandingPayment.user_id
|
656 |
t_OutstandingPayment.user_id = outstandingPayment.user_id
|
| 663 |
t_OutstandingPayment.counter_name = counterName
|
657 |
t_OutstandingPayment.counter_name = counterName
|
| 664 |
t_OutstandingPayment.creditor_id = outstandingPayment.creditor_id
|
658 |
t_OutstandingPayment.creditor_id = outstandingPayment.creditor_id
|
| 665 |
t_OutstandingPayment.payment_id = outstandingPayment.payment_id
|
659 |
t_OutstandingPayment.payment_id = outstandingPayment.payment_id
|
| 666 |
t_OutstandingPayment.totalAmount = outstandingPayment.totalAmount
|
660 |
t_OutstandingPayment.totalAmount = outstandingPayment.totalAmount
|
| 667 |
t_OutstandingPayment.created = outstandingPayment.createdDate
|
661 |
t_OutstandingPayment.created = to_java_date(outstandingPayment.createdDate)
|
| 668 |
return t_OutstandingPayment
|
662 |
return t_OutstandingPayment
|
| 669 |
|
663 |
|
| 670 |
def to_t_ShipmentLogisticsCostDetail(shipmentLogisticsCostDetail):
|
664 |
def to_t_ShipmentLogisticsCostDetail(shipmentLogisticsCostDetail):
|
| 671 |
t_ShipmentLogisticsCostDetail = TShipmentLogisticsCostDetail()
|
665 |
t_ShipmentLogisticsCostDetail = TShipmentLogisticsCostDetail()
|
| 672 |
t_ShipmentLogisticsCostDetail.logisticsTransactionId = shipmentLogisticsCostDetail.logisticsTransactionId
|
666 |
t_ShipmentLogisticsCostDetail.logisticsTransactionId = shipmentLogisticsCostDetail.logisticsTransactionId
|