Renamed Report permissions to make more sense

Removed the void and reprints report and added it to the bill settlement report
updated the import to add a new sql to be executed later to update the settlements and report permission names
Export works on all reports
This commit is contained in:
Amritanshu
2019-08-25 15:08:59 +05:30
parent 05860fb0b9
commit 6d0f30503a
98 changed files with 527 additions and 1079 deletions

View File

@ -5,7 +5,7 @@ import { DiscountReportResolver } from './discount-report-resolver.service';
import { AuthGuard } from '../auth/auth-guard.service';
import { DiscountReportComponent } from './discount-report.component';
const DiscountReportRoutes: Routes = [
const discountReportRoutes: Routes = [
{
path: '',
component: DiscountReportComponent,
@ -23,7 +23,7 @@ const DiscountReportRoutes: Routes = [
@NgModule({
imports: [
CommonModule,
RouterModule.forChild(DiscountReportRoutes)
RouterModule.forChild(discountReportRoutes)
],
exports: [

View File

@ -70,14 +70,8 @@ export class DiscountReportComponent implements OnInit {
exportCsv() {
const headers = {
Date: 'date',
Name: 'name',
Type: 'type',
Narration: 'narration',
Debit: 'debit',
Credit: 'credit',
Running: 'running',
Posted: 'posted'
Amount: 'amount'
};
const csvData = new Blob([this.toCsv.toCsv(headers, this.dataSource.data)], {type: 'text/csv;charset=utf-8;'});
const link = document.createElement('a');