Add AccountCode field in settings component's integration tab
This commit is contained in:
parent
0eb84b8f7c
commit
ab11c949eb
2 changed files with 92 additions and 53 deletions
|
@ -77,7 +77,20 @@
|
||||||
<mat-tab *ngIf="proVersion"
|
<mat-tab *ngIf="proVersion"
|
||||||
label="Integrations"
|
label="Integrations"
|
||||||
style="align-items: center;">
|
style="align-items: center;">
|
||||||
<div style="height: 20px;
|
<div class="container" style="margin-bottom: 20px;">
|
||||||
|
<mat-dialog-content [formGroup]="settingsForm">
|
||||||
|
<div style="height: 10px;
|
||||||
|
margin-top: 10px;">
|
||||||
|
</div>
|
||||||
|
<mat-form-field class="settings-field" [style.width.%]="100">
|
||||||
|
<mat-label>Account Code</mat-label>
|
||||||
|
<input matInput
|
||||||
|
width="100%"
|
||||||
|
placeholder="9999999999"
|
||||||
|
formControlName="xeroAccCod"
|
||||||
|
(change)="xeroAccCodChanged($event)">
|
||||||
|
</mat-form-field>
|
||||||
|
<div style="height: 10px;
|
||||||
margin-top: 10px;">
|
margin-top: 10px;">
|
||||||
</div>
|
</div>
|
||||||
<div class="container"
|
<div class="container"
|
||||||
|
@ -91,8 +104,8 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<table *ngIf="linked2Xero"
|
<table *ngIf="linked2Xero"
|
||||||
style="width:100%;
|
[style.width.%]="100"
|
||||||
margin-top: 10px;">
|
style="margin-top: 10px;">
|
||||||
<thead style="width: 100%;">
|
<thead style="width: 100%;">
|
||||||
<tr>
|
<tr>
|
||||||
<th class="urlLabel"
|
<th class="urlLabel"
|
||||||
|
@ -127,19 +140,25 @@
|
||||||
</fa-icon>
|
</fa-icon>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
</mat-dialog-content>
|
||||||
</div>
|
</div>
|
||||||
<div class="container"
|
<div class="container"
|
||||||
style="display: flex;
|
style="display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;">
|
align-items: center;">
|
||||||
<button mat-raised-button
|
<button mat-raised-button
|
||||||
(click)="close()">
|
(click)="closeIntegration()">
|
||||||
Close
|
Close
|
||||||
</button>
|
</button>
|
||||||
|
<button *ngIf="saveAccOk"
|
||||||
|
mat-raised-button
|
||||||
|
color="primary"
|
||||||
|
(click)="saveAccCod()">
|
||||||
|
Save Code
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div style="height: 20px;
|
<div style="height: 20px;
|
||||||
margin-top: 10px;">
|
margin-top: 10px;">
|
||||||
|
|
|
@ -28,6 +28,8 @@ export class SettingsComponent implements OnInit {
|
||||||
proVersion: boolean = false;
|
proVersion: boolean = false;
|
||||||
useVKey: boolean = false;
|
useVKey: boolean = false;
|
||||||
linkMsg: String = 'Link to Xero';
|
linkMsg: String = 'Link to Xero';
|
||||||
|
xeroAccCod: String = '';
|
||||||
|
saveAccOk: boolean = false;
|
||||||
|
|
||||||
coins = [
|
coins = [
|
||||||
{
|
{
|
||||||
|
@ -103,6 +105,14 @@ export class SettingsComponent implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
close() {
|
close() {
|
||||||
|
|
||||||
|
this.dialogRef.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
closeIntegration() {
|
||||||
|
if ( this.xeroAccCod == '' )
|
||||||
|
this.notifierService
|
||||||
|
.showNotification("Warning: Payment confirmation disabled","Close",'success');
|
||||||
this.dialogRef.close();
|
this.dialogRef.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -137,6 +147,10 @@ export class SettingsComponent implements OnInit {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
saveAccCod() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
copyUrl() {
|
copyUrl() {
|
||||||
// console.log("Inside copyUrl()");
|
// console.log("Inside copyUrl()");
|
||||||
if (navigator.clipboard) {
|
if (navigator.clipboard) {
|
||||||
|
@ -152,6 +166,12 @@ export class SettingsComponent implements OnInit {
|
||||||
.showNotification("Functionality not available for your browser. Use send button instead.","Close",'error');
|
.showNotification("Functionality not available for your browser. Use send button instead.","Close",'error');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
xeroAccCodChanged( arg: any ) {
|
||||||
|
// console.log("Account Code changed: " + arg.target.value);
|
||||||
|
// console.log(arg);
|
||||||
|
this.saveAccOk = (arg.target.value !== '');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue