Compare commits

..

6 Commits

Author SHA1 Message Date
63d4561980 1.0.50 2018-09-04 00:19:59 +02:00
8befdba50a fix(core): update 2018-09-04 00:19:59 +02:00
24a0fb1a8a 1.0.49 2018-09-03 11:28:54 +02:00
b4ac1242e4 fix(IExpense): update contactRef to be of type IContact 2018-09-03 11:28:53 +02:00
fb26eec4c6 1.0.48 2018-08-07 21:54:07 +02:00
3912ed3167 fix(update IExpense): update 2018-08-07 21:54:06 +02:00
3 changed files with 6 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@tsclass/tsclass",
"version": "1.0.47",
"version": "1.0.50",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@tsclass/tsclass",
"version": "1.0.47",
"version": "1.0.50",
"private": false,
"description": "common classes for TypeScript",
"main": "dist/index.js",

View File

@ -2,6 +2,9 @@ import { IInvoice } from './invoice';
import { IContact } from '../business/contact';
export interface IExpenseItem {
description: string,
asset?: boolean,
accountingType?: any,
amount: number;
taxPercentage: number;
}
@ -11,6 +14,6 @@ export interface IExpense {
date: Date;
description: string;
expenseItems: IExpenseItem[];
contactRef: string;
contactRef: IContact;
accountRef: string;
}