Add field to Owner model

This commit is contained in:
Rene Vergara 2022-08-03 14:52:09 -05:00
parent 9c6bd6f8a6
commit 80798093dd
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
10 changed files with 21 additions and 10 deletions

View File

@ -67,7 +67,8 @@ export class BusinessComponent implements OnInit {
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
}
public countriesUpdate: Observable<Country[]>;
public ownerUpdate: Observable<Owner>;
@ -175,7 +176,8 @@ export class BusinessComponent implements OnInit {
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
};
this.userService.addOwner(this.owner);
this.stepper!.next();

View File

@ -48,7 +48,8 @@ export class FullnodeService{
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
};
constructor(private http: HttpClient, public userService: UserService){

View File

@ -41,7 +41,8 @@ export class HeaderComponent implements OnInit, OnDestroy {
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
};
private session: string | null = '';
public heightUpdate: Observable<number>;

View File

@ -54,7 +54,8 @@ export class ItemListComponent implements OnInit{
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
};
public ownerUpdate: Observable<Owner>;

View File

@ -61,7 +61,8 @@ export class LoginComponent implements OnInit, AfterViewInit {
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
};
private FullnodeSub: Subscription = new Subscription();
private UserSub: Subscription = new Subscription();

View File

@ -50,7 +50,8 @@ export class OrderService {
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
},
order: {
address: '',

View File

@ -23,4 +23,5 @@ export interface Owner {
expiration: string;
payconf: boolean;
viewkey: string;
crmToken: string;
}

View File

@ -39,7 +39,8 @@ export class ReceiptService {
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
},
order: {
address: '',

View File

@ -49,7 +49,8 @@ export class UserService{
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
},
txs : [],
countries: []

View File

@ -51,7 +51,8 @@ export class ViewerComponent implements OnInit {
invoices: false,
expiration: new Date(Date.now()).toISOString(),
payconf: false,
viewkey: ''
viewkey: '',
crmToken: ''
};
public price: number = 1;
public addrUpdate: Observable<string>;