| 1 | |
| 2 | export interface JournalEntryAccount{ |
| 3 | name: string |
| 4 | creation: string |
| 5 | modified: string |
| 6 | owner: string |
| 7 | modified_by: string |
| 8 | docstatus: 0 | 1 | 2 |
| 9 | parent?: string |
| 10 | parentfield?: string |
| 11 | parenttype?: string |
| 12 | idx?: number |
| 13 | /** Account : Link - Account */ |
| 14 | account: string |
| 15 | /** Account Type : Data */ |
| 16 | account_type?: string |
| 17 | /** Bank Account : Link - Bank Account */ |
| 18 | bank_account?: string |
| 19 | /** Party Type : Link - DocType */ |
| 20 | party_type?: string |
| 21 | /** Party : Dynamic Link */ |
| 22 | party?: string |
| 23 | /** Cost Center : Link - Cost Center - If Income or Expense */ |
| 24 | cost_center?: string |
| 25 | /** Project : Link - Project */ |
| 26 | project?: string |
| 27 | /** Account Currency : Link - Currency */ |
| 28 | account_currency?: string |
| 29 | /** Exchange Rate : Float */ |
| 30 | exchange_rate?: number |
| 31 | /** Debit : Currency */ |
| 32 | debit_in_account_currency?: number |
| 33 | /** Debit in Company Currency : Currency */ |
| 34 | debit?: number |
| 35 | /** Credit : Currency */ |
| 36 | credit_in_account_currency?: number |
| 37 | /** Credit in Company Currency : Currency */ |
| 38 | credit?: number |
| 39 | /** Reference Type : Select */ |
| 40 | reference_type?: "" | "Sales Invoice" | "Purchase Invoice" | "Journal Entry" | "Sales Order" | "Purchase Order" | "Expense Claim" | "Asset" | "Loan" | "Payroll Entry" | "Employee Advance" | "Exchange Rate Revaluation" | "Invoice Discounting" | "Fees" | "Full and Final Statement" | "Payment Entry" |
| 41 | /** Reference Name : Dynamic Link */ |
| 42 | reference_name?: string |
| 43 | /** Reference Due Date : Date */ |
| 44 | reference_due_date?: string |
| 45 | /** Reference Detail No : Data */ |
| 46 | reference_detail_no?: string |
| 47 | /** Is Advance : Select */ |
| 48 | is_advance?: "No" | "Yes" |
| 49 | /** User Remark : Small Text */ |
| 50 | user_remark?: string |
| 51 | /** Against Account : Text */ |
| 52 | against_account?: string |
| 53 | } |
nothing calls this directly
no outgoing calls
no test coverage detected