Attendance and Employee Attendance done!!

Journal Done!!
But there is issue of validation in purchase due to lack of proper journals when getting data from the frontend.
The proposed solution is to create different schemas for various vouchers and then reexport and import them in a master schema for persisting

Also, change "Supplier" to vendor in Purchase, etc.
Also, convert all date field to date from datetime

Rename "Salary Deduction" to "Employee Benefits" across the board
This commit is contained in:
tanshu
2020-05-17 15:38:13 +05:30
parent cda157f05c
commit a0f27fe364
34 changed files with 734 additions and 631 deletions

View File

@ -17,7 +17,7 @@ export class IssueResolver implements Resolve<Voucher> {
if (id === null) {
return this.ser.getOfType('Issue');
} else {
return this.ser.get(id);
return this.ser.get(id, 'Issue');
}
}
}