Vendor allocated changes

This commit is contained in:
sriram-at-840620226347 2020-06-24 18:58:59 +05:30
parent aa4227c7be
commit 79e572751c
228 changed files with 224 additions and 17 deletions

0
.vscode/settings.json vendored Normal file → Executable file
View File

0
bitbucket-pipelines.yml Normal file → Executable file
View File

0
ng6-seed/proxy.conf.json Normal file → Executable file
View File

0
ng6-seed/report.20200113.185903.16771.0.001.json Normal file → Executable file
View File

0
ng6-seed/report.20200114.144401.11726.0.001.json Normal file → Executable file
View File

View File

View File

View File

View File

0
ng6-seed/src/app/layouts/role-menu-items.pipe.spec.ts Normal file → Executable file
View File

0
ng6-seed/src/app/layouts/role-menu-items.pipe.ts Normal file → Executable file
View File

View File

@ -3,6 +3,7 @@
{{pageTitle}}
</div>
<div fxFlex="30" align="end" style="padding: 10px !important;">
<button *ngIf="data.fk_pd_type == 2" mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" matTooltip="Allocate Vendor" matTooltipPosition="above" (click)="viewVendorOfficer()"><mat-icon>verified_user</mat-icon></button>
<button mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" (click)="closeAllocationComponent()" matTooltip="Close" matTooltipPosition="below"><mat-icon>close</mat-icon></button>
</div>

View File

@ -4,6 +4,7 @@ import { FormBuilder, FormGroup, Validators, FormControl, FormArray } from '@ang
import { NotifierService } from 'angular-notifier';
import { PdTrigerService } from '../../../pd-service/pd-triger.service';
import { AllocationViewMoreComponent } from './../allocation-view-more/allocation-view-more.component';
import { VendorPdAllocationComponent } from '../vendor-pd-allocation/VendorPdAllocationComponent';
@Component({
selector: 'app-pd-allocation',
@ -102,5 +103,21 @@ export class PdAllocationComponent implements OnInit {
this.notifier.notify('warning', 'No PD In Hand');
}
}
// pd Vendor officer
viewVendorOfficer(){
const dialogSchedule = this.dialog.open(VendorPdAllocationComponent, {
// data: details,
disableClose: true,
position: { right: '0'},
width:'100%',
// hasBackdrop:false
});
// dialogSchedule.afterClosed()
// .subscribe(dataresult => {
// });
// this.notifier.notify('warning', 'No PD In Hand');
}
}

Some files were not shown because too many files have changed in this diff Show More