Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. payment: {
  2.     //accounts payment list
  3.     apl: [
  4.         //account payment object
  5.         {
  6.             //account type (RA or EC): this might be replaced by an account type id if needed
  7.             at: null,
  8.             //amount
  9.             a: null,
  10.             //agreed payment
  11.             ap: null,
  12.             //turn
  13.             t: null,
  14.             //arrears
  15.             ar: null,
  16.             //last collection
  17.             lc: null,
  18.             //past due
  19.             pd: null,
  20.             //new balance
  21.             nb: null
  22.         }
  23.     ],
  24.     //payment details
  25.     pd: {
  26.         //payment type - should contain the payment type id
  27.         pt: null,
  28.         //amount
  29.         a: null,
  30.         //check name (for Check payment type)
  31.         cn: null,
  32.         //check number (for Check payment type)
  33.         cno: null
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement