modify parameter name
This commit is contained in:
+18
-18
@@ -375,25 +375,25 @@ export class Account implements AccountInfoResponse {
|
|||||||
export class AccountWithDisplayBalance extends Account {
|
export class AccountWithDisplayBalance extends Account {
|
||||||
public displayBalance: string;
|
public displayBalance: string;
|
||||||
|
|
||||||
private constructor(Account: Account, displayBalance: string) {
|
private constructor(account: Account, displayBalance: string) {
|
||||||
super(
|
super(
|
||||||
Account.id,
|
account.id,
|
||||||
Account.name,
|
account.name,
|
||||||
Account.parentId,
|
account.parentId,
|
||||||
Account.category,
|
account.category,
|
||||||
Account.type,
|
account.type,
|
||||||
Account.icon,
|
account.icon,
|
||||||
Account.color,
|
account.color,
|
||||||
Account.currency,
|
account.currency,
|
||||||
Account.balance,
|
account.balance,
|
||||||
Account.comment,
|
account.comment,
|
||||||
Account.displayOrder,
|
account.displayOrder,
|
||||||
Account.visible,
|
account.visible,
|
||||||
Account.balanceTime,
|
account.balanceTime,
|
||||||
Account.creditCardStatementDate,
|
account.creditCardStatementDate,
|
||||||
Account.isAsset,
|
account.isAsset,
|
||||||
Account.isLiability,
|
account.isLiability,
|
||||||
Account.subAccounts
|
account.subAccounts
|
||||||
);
|
);
|
||||||
|
|
||||||
this.displayBalance = displayBalance;
|
this.displayBalance = displayBalance;
|
||||||
|
|||||||
Reference in New Issue
Block a user