From 3ba902bfe41ac45c86c693d14e8adc64588f7d2e Mon Sep 17 00:00:00 2001 From: Akash Shah Date: Wed, 19 Jun 2019 21:18:23 -0400 Subject: [PATCH] changed alot of things --- AstuteClient2/package-lock.json | 6 +- AstuteClient2/package.json | 8 +- .../src/app/customer/customer.component.ts | 21 +- .../src/app/invoice/invoice.component.html | 728 ++++++++++-------- .../src/app/invoice/invoice.component.ts | 625 +++++++++------ .../app/sales-order/sales-order.component.ts | 36 +- .../src/main/java/com/astute/dao/SqlDAO.java | 44 +- .../astute/requests/ServiceTypeRequest.java | 2 + .../com/astute/resources/AuthResource.java | 2 +- AstuteSystem/src/main/main.iml | 23 - 10 files changed, 846 insertions(+), 649 deletions(-) delete mode 100644 AstuteSystem/src/main/main.iml diff --git a/AstuteClient2/package-lock.json b/AstuteClient2/package-lock.json index 3874e39..2047139 100644 --- a/AstuteClient2/package-lock.json +++ b/AstuteClient2/package-lock.json @@ -8510,9 +8510,9 @@ } }, "semver-intersect": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/semver-intersect/-/semver-intersect-1.3.1.tgz", - "integrity": "sha1-j6hKnhAovSOeRTDRo+GB5pjYhLo=", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/semver-intersect/-/semver-intersect-1.4.0.tgz", + "integrity": "sha512-d8fvGg5ycKAq0+I6nfWeCx6ffaWJCsBYU0H2Rq56+/zFePYfT8mXkB3tWBSjR5BerkHNZ5eTPIk1/LBYas35xQ==", "dev": true, "requires": { "semver": "^5.0.0" diff --git a/AstuteClient2/package.json b/AstuteClient2/package.json index 6dcb660..6a0b2ac 100644 --- a/AstuteClient2/package.json +++ b/AstuteClient2/package.json @@ -32,10 +32,9 @@ "zone.js": "^0.8.26" }, "devDependencies": { - "@angular/compiler-cli": "^6.0.2", "@angular-devkit/build-angular": "~0.6.3", - "typescript": "~2.7.2", - "@angular/cli": "~6.0.3", + "@angular/cli": "^6.0.8", + "@angular/compiler-cli": "^6.0.2", "@angular/language-service": "^6.0.2", "@types/jasmine": "~2.8.6", "@types/jasminewd2": "~2.0.3", @@ -50,6 +49,7 @@ "karma-jasmine-html-reporter": "^0.2.2", "protractor": "~5.3.0", "ts-node": "~5.0.1", - "tslint": "~5.9.1" + "tslint": "~5.9.1", + "typescript": "~2.7.2" } } diff --git a/AstuteClient2/src/app/customer/customer.component.ts b/AstuteClient2/src/app/customer/customer.component.ts index 9300dac..6a9665d 100644 --- a/AstuteClient2/src/app/customer/customer.component.ts +++ b/AstuteClient2/src/app/customer/customer.component.ts @@ -157,7 +157,6 @@ export class CustomerComponent implements OnInit { }); } } - editCustomer(id, name, billTo, add1, add2, city, state, zip, zip4, email, phone, phExt, fax, ref) { if (fax.length > 0 && fax.length < 14) { alert('Invalid fax.'); @@ -194,7 +193,6 @@ export class CustomerComponent implements OnInit { }); } } - deleteCustomer(customerId) { if (customerId) { if (confirm('Are you sure you want to delete customer, ' + customerId)) { @@ -236,7 +234,6 @@ export class CustomerComponent implements OnInit { alert('Create customer failed: ' + reason); }); } - deleteContact() { const selectedNodes = this.contactGridApi.getSelectedNodes(); if (selectedNodes.length > 0) { @@ -262,25 +259,25 @@ export class CustomerComponent implements OnInit { const eventData = event.data; console.log(eventData); if (eventData.fax.length > 0 && eventData.fax.length < 14) { + this.refreshData(); alert('Invalid fax.'); } else if (eventData.phone.length > 0 && eventData.phone.length < 14) { + this.refreshData(); alert('Invalid phone.'); } else if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(eventData.email) === false) { + this.refreshData(); alert('You have entered an invalid email address!'); } else { this.astuteClientService.updateCustomer(eventData.customerId, eventData).then((data) => { - if (data) { + if (!data) { this.refreshData(); - } else { alert('Customer Updating Failed, Check Input Fields'); } }, (reason) => { alert('Update customer failed: ' + reason); }); } - this.refreshData(); } - updateContactRow(event) { console.log(event); @@ -293,19 +290,18 @@ export class CustomerComponent implements OnInit { // alert('Invalid work phone.'); // } else if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(eventData.email) === false) { + this.contactsData = this.astuteClientService.getCustomerContacts(eventData.customerId); alert('You have entered an invalid email address!'); } else { this.astuteClientService.updateCustomerContact(eventData.customerId, eventData).then((data) => { if (!data) { - alert('Customer Updating Failed, Check Input Fields'); - } else { this.contactsData = this.astuteClientService.getCustomerContacts(eventData.customerId); + alert('Customer Updating Failed, Check Input Fields'); } }, (reason) => { alert('Update customer failed: ' + reason); }); } - this.contactsData = this.astuteClientService.getCustomerContacts(eventData.customerId); } // opening and closing modal-form components @@ -316,7 +312,6 @@ export class CustomerComponent implements OnInit { } ref.open(); } - close(ref) { ref.close(); } @@ -329,23 +324,19 @@ export class CustomerComponent implements OnInit { this.customers = data; }); } - refreshContactData(customerId) { this.contactsData = this.astuteClientService.getCustomerContacts(customerId); } - // on each grid ready: sets api's and enable auto-resizing onGridReady(evt) { this.gridApi = evt.api; this.gridColumnApi = evt.columnApi; } - onContactGridReady(evt) { this.contactGridApi = evt.api; this.contactColumnApi = evt.columnApi; } - resizeColumns(evt) { evt.columnApi.autoSizeAllColumns(); } diff --git a/AstuteClient2/src/app/invoice/invoice.component.html b/AstuteClient2/src/app/invoice/invoice.component.html index a2266c5..4b92dd8 100644 --- a/AstuteClient2/src/app/invoice/invoice.component.html +++ b/AstuteClient2/src/app/invoice/invoice.component.html @@ -5,7 +5,6 @@
@@ -22,15 +24,20 @@
-
-
+
+ +
- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +