You've already forked openaccounting-web
forked from cybercinch/openaccounting-web
initial commit
This commit is contained in:
14
src/app/transaction/txitem.ts
Normal file
14
src/app/transaction/txitem.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Transaction, Split} from '../shared/transaction';
|
||||
import { FormGroup } from '@angular/forms';
|
||||
import { Subject } from 'rxjs';
|
||||
|
||||
export class TxItem {
|
||||
tx: Transaction;
|
||||
activeSplit: Split;
|
||||
activeSplitIndex: number;
|
||||
form: FormGroup;
|
||||
balance: number;
|
||||
editing: boolean;
|
||||
preventBlur: boolean;
|
||||
edit$: Subject<any>;
|
||||
}
|
||||
Reference in New Issue
Block a user