mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Lots of changes:
- Added separate grid for details in each section - Enabled inline editing for items TODO: - Fix alert messages - Make editing follow buisness rules
This commit is contained in:
parent
ac46e2eb75
commit
91e41b501e
|
@ -302,7 +302,7 @@
|
|||
<div *ngIf="selected">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="col-12 align-items-end">
|
||||
<ag-grid-angular
|
||||
style="height: 500px;"
|
||||
class="ag-theme-balham"
|
||||
|
@ -319,35 +319,40 @@
|
|||
></ag-grid-angular>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<button class="btn btn-primary btn-sm w-100 mt-2 mb-2" type="button"
|
||||
(click)="createEmptyContact()">
|
||||
Add Contact
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<button class="btn btn-danger btn-sm w-100 mt-2 mb-2" type="button"
|
||||
(click)="deleteContact()">
|
||||
Delete Contact
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-danger" type="button"
|
||||
(click)="deleteContact()">
|
||||
Delete Contact
|
||||
</button>
|
||||
<button class="btn btn-primary" type="button"
|
||||
(click)="createEmptyContact()">
|
||||
Add Contact
|
||||
</button>
|
||||
<button type="button" class="btn btn-info" (click)="close(contacts)">Exit</button>
|
||||
</div>
|
||||
</div>
|
||||
<div *ngIf="!selected">
|
||||
<div class="modal-body">
|
||||
Choose a Customer First!
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-danger" type="button"
|
||||
[disabled]="true">
|
||||
Delete Contact
|
||||
</button>
|
||||
<button class="btn btn-primary" type="button"
|
||||
[disabled]="true">
|
||||
Add Contact
|
||||
</button>
|
||||
<button type="button" class="btn btn-info" (click)="close(contacts)">Exit</button>
|
||||
</div>
|
||||
<!--<div class="modal-footer">-->
|
||||
<!--<button type="button" class="btn btn-info" (click)="close(contacts)">Exit</button>-->
|
||||
<!--</div>-->
|
||||
</div>
|
||||
<!--<div *ngIf="!selected">-->
|
||||
<!--<div class="modal-body">-->
|
||||
<!--Choose a Customer First!-->
|
||||
<!--</div>-->
|
||||
<!--<div class="modal-footer">-->
|
||||
<!--<button class="btn btn-danger" type="button"-->
|
||||
<!--[disabled]="true">-->
|
||||
<!--Delete Contact-->
|
||||
<!--</button>-->
|
||||
<!--<button class="btn btn-primary" type="button"-->
|
||||
<!--[disabled]="true">-->
|
||||
<!--Add Contact-->
|
||||
<!--</button>-->
|
||||
<!--<button type="button" class="btn btn-info" (click)="close(contacts)">Exit</button>-->
|
||||
<!--</div>-->
|
||||
<!--</div>-->
|
||||
</app-modal-form>
|
|
@ -109,7 +109,7 @@ export class InvoicePaymentComponent implements OnInit {
|
|||
this.astuteClientService.getSumittedInvoices().then((data) => {
|
||||
this.invoices = data;
|
||||
});
|
||||
this.astuteClientService.getInvoiceTypes().then((data) => {
|
||||
this.astuteClientService.getInvoicePaymentTypes().then((data) => {
|
||||
this.paymentTypes = data;
|
||||
});
|
||||
|
||||
|
|
|
@ -659,7 +659,7 @@
|
|||
<!--Modal Footer-->
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-success"
|
||||
(click)="addInvoice(inNumIn.value, poNumIn.value, coNumIn.value, pmtStatusIn.value, newBillAmt, notesIn.value, certIn.value, 1, new)"
|
||||
(click)="addInvoice(inNumIn.value, poNumIn.value, coNumIn.value, pmtStatusIn.value, 0, notesIn.value, certIn.value, 1, new)"
|
||||
[disabled]="!(inNumIn.value && poNumIn.value)">
|
||||
<!--[disabled]="!(inNumIn.value && poNumIn.value && newBillAmt && certIn.value)">-->
|
||||
Confirm
|
||||
|
@ -689,14 +689,15 @@
|
|||
rowSelection="single"
|
||||
></ag-grid-angular>
|
||||
<div class="input-group mt-2">
|
||||
<select class="custom-select"
|
||||
[disabled]="!selectedPODetails.length"
|
||||
<select class="custom-select" #poDetailSelec
|
||||
[disabled]="!selectedPODetails.length || (chosenInv ? chosenInv.invoiceStatus === 2 || chosenInv.invoiceStatus === 3: false)"
|
||||
#poDetSelec>
|
||||
<option *ngFor="let po of selectedPODetails" [value]="po.lineItemNo">{{po.serviceDesc}}</option>
|
||||
<option [value]="-1">Out of Pocket Expenses</option>
|
||||
</select>
|
||||
<div class="input-group-append">
|
||||
<button class="btn btn-primary btn-sm" type="button" (click)="addEmptyDetail()">Add</button>
|
||||
<button class="btn btn-primary btn-sm" type="button" (click)="addEmptyDetail(poDetailSelec.value)"
|
||||
[disabled]="(chosenInv ? chosenInv.invoiceStatus === 2 || chosenInv.invoiceStatus === 3: false)">Add</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -43,7 +43,7 @@ export class InvoiceComponent implements OnInit {
|
|||
{headerName: '#', field: 'lineItemNum'},
|
||||
{headerName: 'PO Detail', field: 'poDetailName'},
|
||||
{headerName: 'Description', field: 'desc', editable: true, cellEditor: 'agLargeTextCellEditor'},
|
||||
{headerName: 'Fee Type', field: 'feeTypeName'},
|
||||
{headerName: 'Fee Type', field: 'rateTypeName'},
|
||||
{headerName: 'Service Type', field: 'serviceTypeName'},
|
||||
{headerName: 'Qty or Hours', field: 'qty', editable: true},
|
||||
{headerName: '(/Remaining)', field: 'remainingQty'},
|
||||
|
@ -67,7 +67,6 @@ export class InvoiceComponent implements OnInit {
|
|||
allPODetails = [];
|
||||
|
||||
newInDetails = [];
|
||||
newBillAmt = 0;
|
||||
|
||||
selectedInDetails;
|
||||
selectedPO;
|
||||
|
@ -192,6 +191,7 @@ export class InvoiceComponent implements OnInit {
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
refreshDetailsOfSelected() {
|
||||
this.setSelectedRow(null);
|
||||
}
|
||||
|
@ -216,11 +216,13 @@ export class InvoiceComponent implements OnInit {
|
|||
}
|
||||
updateDetailRow(event) {
|
||||
const eventData = event.data;
|
||||
console.log(eventData);
|
||||
this.astuteClientService.updateInvoiceDetail(eventData.invoiceNumber, eventData.lineItemNum, eventData).then((data) => {
|
||||
// console.log(eventData);
|
||||
this.astuteClientService.updateInvoiceDetail(eventData.invoiceNum, eventData.lineItemNum, eventData).then((data) => {
|
||||
if (!data) {
|
||||
this.refreshDetailsOfSelected();
|
||||
alert('Detail Updating Failed, Check Input Fields');
|
||||
} else {
|
||||
this.updateSelectedBillAmt();
|
||||
}
|
||||
}, (reason) => {
|
||||
alert('Update Detail failed: ' + reason);
|
||||
|
@ -235,6 +237,7 @@ export class InvoiceComponent implements OnInit {
|
|||
this.selectedPODetails = this.allPODetails.filter((detail) => {
|
||||
return (detail.ponum === this.chosenInv.poNum);
|
||||
});
|
||||
this.selectedInDetails = null;
|
||||
this.selectedInDetails = this.astuteClientService.getInvoiceDetail(this.chosenInv.invoiceNumber).then((data) => {
|
||||
if (data) {
|
||||
data.forEach((invDetail) => {
|
||||
|
@ -253,6 +256,7 @@ export class InvoiceComponent implements OnInit {
|
|||
invDetail.poDetailName = this.selectedPODetails[invDetail.poLineItemNum - 1].serviceDesc;
|
||||
}
|
||||
});
|
||||
this.updateSelectedBillAmt();
|
||||
return data;
|
||||
} else {
|
||||
alert('get Inv detail failed!');
|
||||
|
@ -308,14 +312,17 @@ export class InvoiceComponent implements OnInit {
|
|||
this.newInDetails.forEach((d) => {
|
||||
tot += +d.qty * +d.fee;
|
||||
});
|
||||
this.newBillAmt = tot;
|
||||
// this.newBillAmt = tot;
|
||||
}
|
||||
updateSelectedBillAmt() {
|
||||
// let tot = 0;
|
||||
// this.selectedInDetails.forEach((d) => {
|
||||
// tot += +d.qty * +d.fee;
|
||||
// });
|
||||
// this.selectedBillAmt = tot;
|
||||
this.selectedBillAmt = 0;
|
||||
if (this.selectedInDetails) {
|
||||
this.selectedInDetails.then((data) => {
|
||||
data.forEach((d) => {
|
||||
this.selectedBillAmt += +d.qty * +d.fee;
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -532,6 +539,7 @@ export class InvoiceComponent implements OnInit {
|
|||
|
||||
// creates empty line item detail
|
||||
addEmptyDetail(poLineItemNum) {
|
||||
console.log(this.chosenInv.invoiceNumber);
|
||||
const emptyData = {
|
||||
desc: '',
|
||||
fee: 0,
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
<div class="row">
|
||||
<div class="col-12">
|
||||
<ag-grid-angular
|
||||
#agGrid
|
||||
style="height: 500px;"
|
||||
class="ag-theme-balham"
|
||||
[gridOptions]="gridOptions"
|
||||
[enableColResize]="true"
|
||||
[enableSorting]="true"
|
||||
[enableFilter]="true"
|
||||
|
@ -324,7 +324,7 @@
|
|||
<!--</td>-->
|
||||
<!--<td class="p-0 m-0">-->
|
||||
<!--<select class="form-control cell" [value]="poDetail.serviceTypeId" (change)="onSelectedCellChange(i, 'serviceTypeId', serviceTypeId.value)" #serviceTypeId>-->
|
||||
<!--<option [value]="serviceType.serviceTypeId" *ngFor="let serviceType of serviceTypes">{{serviceType.desc}}</option>-->
|
||||
<!--<option [value]="serviceType.serviceTypeId" *ngFor="let serviceType of serviceNames">{{serviceType.desc}}</option>-->
|
||||
<!--<!–<option value="">Study</option>–>-->
|
||||
<!--<!–<option value="2">Design</option>–>-->
|
||||
<!--<!–<option value="3">Peer Review</option>–>-->
|
||||
|
@ -414,19 +414,15 @@
|
|||
(rowDataChanged)="resizeColumns($event)"
|
||||
rowSelection="single"
|
||||
></ag-grid-angular>
|
||||
<button class="btn btn-primary btn-sm w-100 mt-2" type="button" (click)="addEmptyDetail()" [disabled]="(selected ? selected.isFinal : false)">Add</button>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="col-12 justify-content-start">
|
||||
<h4 align="end">Total Cost: {{contractAmount | currency}}</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-primary" type="button" (click)="addEmptyDetail()">Add</button>
|
||||
<button class="btn btn-outline-danger" (click)="close(editDetails)">Exit</button>
|
||||
</div>
|
||||
</app-modal-form>
|
||||
|
|
|
@ -117,14 +117,7 @@ export class SalesOrderComponent implements OnInit {
|
|||
row.serviceTypeName = this.serviceNames[row.serviceTypeId - 1];
|
||||
row.rateTypeName = this.rateNames[row.feeTypeId - 1];
|
||||
});
|
||||
// console.log(this.selectedPODetail);
|
||||
this.updateContractAmt();
|
||||
// if (this.gridColumnApi) {
|
||||
// this.gridColumnApi.autoSizeAllColumns();
|
||||
// }
|
||||
// if (this.detailColumnApi) {
|
||||
// this.detailColumnApi.autoSizeAllColumns();
|
||||
// }
|
||||
return data;
|
||||
} else {
|
||||
alert('Get SO detail failed!');
|
||||
|
@ -163,6 +156,8 @@ export class SalesOrderComponent implements OnInit {
|
|||
if (!data) {
|
||||
alert('SO Detail updating failed, check input fields');
|
||||
this.refreshDetailsOfSelected();
|
||||
} else {
|
||||
this.updateContractAmt();
|
||||
}
|
||||
}, (reason) => {
|
||||
alert('Update SO Detail failed: ' + reason);
|
||||
|
|
|
@ -24,6 +24,7 @@ export class AstuteClientService {
|
|||
|
||||
// **************************************** AUTH Service methods
|
||||
public login(username: string, password: string): Promise<string> {
|
||||
console.log('*** In login()');
|
||||
const data = {
|
||||
'username': username,
|
||||
'password': password
|
||||
|
@ -47,6 +48,7 @@ export class AstuteClientService {
|
|||
});
|
||||
}
|
||||
public logout() {
|
||||
console.log('*** In logout()');
|
||||
return this.http
|
||||
.post(`${this.authUrl}/logout${this.sessionString}`, {})
|
||||
.toPromise()
|
||||
|
@ -57,10 +59,12 @@ export class AstuteClientService {
|
|||
});
|
||||
}
|
||||
public getSessionId(): string {
|
||||
console.log('*** In getSessionId()');
|
||||
console.log(localStorage.getItem('SESSION_ID'));
|
||||
return localStorage.getItem('SESSION_ID');
|
||||
}
|
||||
public getSessionUser(): string {
|
||||
console.log('*** In getSessionUser()');
|
||||
console.log(localStorage.getItem('SESSION_USER'));
|
||||
return localStorage.getItem('SESSION_USER');
|
||||
}
|
||||
|
@ -69,7 +73,6 @@ export class AstuteClientService {
|
|||
public getCustomers(): Promise<any> {
|
||||
console.log('*** In getCustomers()');
|
||||
const url = `${this.customerUrl}${this.sessionString}`;
|
||||
console.log(url);
|
||||
return this.http.get(url)
|
||||
.toPromise()
|
||||
.then(response => {
|
||||
|
@ -118,7 +121,6 @@ export class AstuteClientService {
|
|||
public getCustomerContacts(customerId): Promise<any> {
|
||||
console.log('*** In getCustomerContacts()');
|
||||
const url = `${this.customerContactUrl}?customerId=${customerId}&sessionId=${localStorage.getItem('SESSION_ID')}`;
|
||||
console.log(url);
|
||||
return this.http.get(url)
|
||||
.toPromise()
|
||||
.then(response => {
|
||||
|
@ -160,9 +162,8 @@ export class AstuteClientService {
|
|||
});
|
||||
}
|
||||
public getPODetail(ponum): Promise<any> {
|
||||
console.log('*** In getPODetails()');
|
||||
console.log('*** In getPODetail()');
|
||||
const url = `${this.PODetailUrl}?PONum=${ponum}&sessionId=${localStorage.getItem('SESSION_ID')}`;
|
||||
console.log(url);
|
||||
return this.http.get(url)
|
||||
.toPromise()
|
||||
.then(response => {
|
||||
|
@ -214,7 +215,7 @@ export class AstuteClientService {
|
|||
.then(response => response['entity']);
|
||||
}
|
||||
public getRateTypes(): Promise<any> {
|
||||
console.log('*** In getPOs()');
|
||||
console.log('*** In getRateTypes()');
|
||||
const url = `${this.POUrl}/feeTypes${this.sessionString}`;
|
||||
return this.http.get(url)
|
||||
.toPromise()
|
||||
|
@ -336,9 +337,9 @@ export class AstuteClientService {
|
|||
return response['entity'];
|
||||
});
|
||||
}
|
||||
public getInvoiceTypes(): Promise<any> {
|
||||
public getInvoicePaymentTypes(): Promise<any> {
|
||||
console.log('*** In getInvoicePaymentTypes()');
|
||||
const url = `${this.invoicePaymentUrl}/paymentTypes${this.sessionString}`;
|
||||
console.log('*** In getInvoiceTypes() ... calling ' + url);
|
||||
return this.http.get(url)
|
||||
.toPromise()
|
||||
.then(response => {
|
||||
|
@ -374,9 +375,8 @@ export class AstuteClientService {
|
|||
|
||||
// **************************************** Service Type methods
|
||||
public getServiceTypes(): Promise<any> {
|
||||
console.log('*** In getPOServiceTypes()');
|
||||
console.log('*** In getServiceTypes()');
|
||||
const url = `${this.serviceTypeUrl}${this.sessionString}`;
|
||||
// console.log(url);
|
||||
return this.http.get(url)
|
||||
.toPromise()
|
||||
.then(response => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user