2022-04-24 06:48:44 +00:00
|
|
|
import { Doc } from 'fyo/model/doc';
|
2022-04-19 05:59:36 +00:00
|
|
|
import { FiltersMap, FormulaMap } from 'fyo/model/types';
|
2022-04-11 09:41:49 +00:00
|
|
|
import Money from 'pesa/dist/types/src/money';
|
|
|
|
|
|
|
|
export class JournalEntryAccount extends Doc {
|
|
|
|
getAutoDebitCredit(type: 'debit' | 'credit') {
|
|
|
|
const otherType = type === 'debit' ? 'credit' : 'debit';
|
|
|
|
|
|
|
|
const otherTypeValue = this.get(otherType) as Money;
|
|
|
|
if (!otherTypeValue.isZero()) {
|
2022-04-19 05:59:36 +00:00
|
|
|
return this.fyo.pesa(0);
|
2022-04-11 09:41:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const totalType = this.parentdoc!.getSum('accounts', type, false) as Money;
|
|
|
|
const totalOtherType = this.parentdoc!.getSum(
|
|
|
|
'accounts',
|
|
|
|
otherType,
|
|
|
|
false
|
|
|
|
) as Money;
|
|
|
|
|
|
|
|
if (totalType.lt(totalOtherType)) {
|
|
|
|
return totalOtherType.sub(totalType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
formulas: FormulaMap = {
|
2022-04-29 13:00:24 +00:00
|
|
|
debit: {
|
|
|
|
formula: async () => this.getAutoDebitCredit('debit'),
|
|
|
|
dependsOn: ['credit'],
|
|
|
|
},
|
|
|
|
credit: {
|
|
|
|
formula: async () => this.getAutoDebitCredit('credit'),
|
|
|
|
dependsOn: ['debit'],
|
|
|
|
},
|
2022-04-11 09:41:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static filters: FiltersMap = {
|
|
|
|
account: () => ({ isGroup: false }),
|
|
|
|
};
|
|
|
|
}
|