mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
add server to monorepo.
This commit is contained in:
17
packages/server/src/services/Accounting/JournalFinancial.ts
Normal file
17
packages/server/src/services/Accounting/JournalFinancial.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import moment from 'moment';
|
||||
import { IJournalPoster } from '@/interfaces';
|
||||
|
||||
export default class JournalFinancial {
|
||||
journal: IJournalPoster;
|
||||
|
||||
accountsDepGraph: any;
|
||||
|
||||
/**
|
||||
* Journal poster.
|
||||
* @param {IJournalPoster} journal
|
||||
*/
|
||||
constructor(journal: IJournalPoster) {
|
||||
this.journal = journal;
|
||||
this.accountsDepGraph = this.journal.accountsDepGraph;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user