mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
minor bug fixes
This commit is contained in:
parent
3a1c9a45e7
commit
90ce18f698
|
@ -18,7 +18,6 @@
|
|||
(rowDataChanged)="resizeColumns($event)"
|
||||
rowSelection="single"
|
||||
rowDeselection="true"
|
||||
suppressHorizontalScroll="false"
|
||||
></ag-grid-angular>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 = [];
|
||||
|
|
Loading…
Reference in New Issue
Block a user