Blacked and isorted the python files
Prettied and eslinted the typescript/html files
This commit is contained in:
15
bookie/src/app/sales/bills/kot.ts
Normal file
15
bookie/src/app/sales/bills/kot.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { User } from '../../core/user';
|
||||
|
||||
import { Inventory } from './inventory';
|
||||
|
||||
export class Kot {
|
||||
id: string;
|
||||
code: number;
|
||||
date: string;
|
||||
user: User;
|
||||
inventories: Inventory[];
|
||||
|
||||
public constructor(init?: Partial<Kot>) {
|
||||
Object.assign(this, init);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user