Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 2 gadiem
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. Accounts module contains masters and transactions to manage a traditional
  2. double entry accounting system.
  3. Accounting heads are called "Accounts" and they can be groups in a tree like
  4. "Chart of Accounts"
  5. Entries are:
  6. - Journal Entries
  7. - Sales Invoice (Itemised)
  8. - Purchase Invoice (Itemised)
  9. All accounting entries are stored in the `General Ledger`
  10. ## Payment Ledger
  11. Transactions on Receivable and Payable Account types will also be stored in `Payment Ledger`. This is so that payment reconciliation process only requires update on this ledger.
  12. ### Key Fields
  13. | Field | Description |
  14. |----------------------|----------------------------------|
  15. | `account_type` | Receivable/Payable |
  16. | `account` | Accounting head |
  17. | `party` | Party Name |
  18. | `voucher_no` | Voucher No |
  19. | `against_voucher_no` | Linked voucher(secondary effect) |
  20. | `amount` | can be +ve/-ve |
  21. ### Design
  22. `debit` and `credit` have been replaced with `account_type` and `amount`. `against_voucher_no` is populated for all entries. So, outstanding amount can be calculated by summing up amount only using `against_voucher_no`.
  23. Ex:
  24. 1. Consider an invoice for ₹100 and a partial payment of ₹80 against that invoice. Payment Ledger will have following entries.
  25. | voucher_no | against_voucher_no | amount |
  26. |------------|--------------------|--------|
  27. | SINV-01 | SINV-01 | 100 |
  28. | PAY-01 | SINV-01 | -80 |
  29. 2. Reconcile a Credit Note against an invoice using a Journal Entry
  30. An invoice for ₹100 partially reconciled against a credit of ₹70 using a Journal Entry. Payment Ledger will have the following entries.
  31. | voucher_no | against_voucher_no | amount |
  32. |------------|--------------------|--------|
  33. | SINV-01 | SINV-01 | 100 |
  34. | | | |
  35. | CR-NOTE-01 | CR-NOTE-01 | -70 |
  36. | | | |
  37. | JE-01 | CR-NOTE-01 | +70 |
  38. | JE-01 | SINV-01 | -70 |