minor bug fixes

This commit is contained in:
Akash Shah 2019-07-14 23:05:12 -04:00
parent 3a1c9a45e7
commit 90ce18f698
4 changed files with 16 additions and 12 deletions

View File

@ -18,7 +18,6 @@
(rowDataChanged)="resizeColumns($event)"
rowSelection="single"
rowDeselection="true"
suppressHorizontalScroll="false"
></ag-grid-angular>
</div>
</div>

View File

@ -120,6 +120,7 @@ export class CustomerComponent implements OnInit {
// callback for grid selection
setSelectedRow(event) {
this.selected = event.data;
this.contactsData = this.astuteClientService.getCustomerContacts(this.selected.customerId);
}
// wrappers for customer service methods
@ -306,10 +307,13 @@ export class CustomerComponent implements OnInit {
// opening and closing modal-form components
open(ref) {
// this.getSelectedRows();
if (this.selected) {
this.contactsData = this.astuteClientService.getCustomerContacts(this.selected.customerId);
}
ref.open();
if (this.gridColumnApi) {
this.gridColumnApi.autoSizeAllColumns();
}
if (this.contactColumnApi) {
this.contactColumnApi.autoSizeAllColumns();
}
}
close(ref) {
ref.close();
@ -325,6 +329,7 @@ export class CustomerComponent implements OnInit {
}
refreshContactData(customerId) {
this.contactsData = this.astuteClientService.getCustomerContacts(customerId);
this.contactColumnApi.autoSizeColumns();
}
// on each grid ready: sets api's and enable auto-resizing

View File

@ -384,13 +384,13 @@ export class InvoiceComponent implements OnInit {
// open(content, indexPO, indexINV) {
open(content) {
// this.setCorrespondingCustomer();
content.open();
if (this.gridColumnApi) {
this.gridColumnApi.autoSizeAllColumns();
}
if (this.detailColumnApi) {
this.detailColumnApi.autoSizeAllColumns();
}
content.open();
// this.detailDescription = ViewChild('detailDescription');
// this.detailAmount = ViewChild('detailAmount');
// this.detailRate = ViewChild('detailRate');
@ -414,10 +414,10 @@ export class InvoiceComponent implements OnInit {
}
getCurrDate() {
let d = new Date(),
month = '' + (d.getMonth() + 1),
day = '' + d.getDate(),
year = d.getFullYear();
const d = new Date();
let month = '' + (d.getMonth() + 1),
day = '' + d.getDate();
const year = d.getFullYear();
if (month.length < 2) month = '0' + month;
if (day.length < 2) day = '0' + day;
@ -428,8 +428,8 @@ export class InvoiceComponent implements OnInit {
formatDate(d: Date) {
let month = '' + (d.getMonth() + 1),
day = '' + d.getDate(),
year = d.getFullYear();
day = '' + d.getDate();
const year = d.getFullYear();
if (month.length < 2) {
month = '0' + month;

View File

@ -276,13 +276,13 @@ export class SalesOrderComponent implements OnInit {
// open and closing modal-form components
open(ref) {
// this.getSelectedRows();
ref.open();
if (this.gridColumnApi) {
this.gridColumnApi.autoSizeAllColumns();
}
if (this.detailColumnApi) {
this.detailColumnApi.autoSizeAllColumns();
}
ref.open();
}
close(ref) {
// this.newPODetail = [];