mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-18 16:54:25 +08:00
support sub account
This commit is contained in:
@@ -8,6 +8,7 @@ import (
|
|||||||
"github.com/mayswind/lab/pkg/log"
|
"github.com/mayswind/lab/pkg/log"
|
||||||
"github.com/mayswind/lab/pkg/models"
|
"github.com/mayswind/lab/pkg/models"
|
||||||
"github.com/mayswind/lab/pkg/services"
|
"github.com/mayswind/lab/pkg/services"
|
||||||
|
"github.com/mayswind/lab/pkg/validators"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AccountsApi struct {
|
type AccountsApi struct {
|
||||||
@@ -86,6 +87,25 @@ func (a *AccountsApi) AccountCreateHandler(c *core.Context) (interface{}, *errs.
|
|||||||
log.WarnfWithRequestId(c, "[accounts.AccountCreateHandler] account does not have any sub accounts")
|
log.WarnfWithRequestId(c, "[accounts.AccountCreateHandler] account does not have any sub accounts")
|
||||||
return nil, errs.ErrAccountHaveNoSubAccount
|
return nil, errs.ErrAccountHaveNoSubAccount
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if accountCreateReq.Currency != validators.PARENT_ACCOUNT_CURRENCY_PLACEHODLER {
|
||||||
|
log.WarnfWithRequestId(c, "[accounts.AccountCreateHandler] parent account cannot set currency")
|
||||||
|
return nil, errs.ErrParentAccountCannotSetCurrency
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := 0; i < len(accountCreateReq.SubAccounts); i++ {
|
||||||
|
subAccount := accountCreateReq.SubAccounts[i]
|
||||||
|
|
||||||
|
if subAccount.Category != accountCreateReq.Category {
|
||||||
|
log.WarnfWithRequestId(c, "[accounts.AccountCreateHandler] category of sub account not equals to parent")
|
||||||
|
return nil, errs.ErrSubAccountCategoryNotEqualsToParent
|
||||||
|
}
|
||||||
|
|
||||||
|
if subAccount.Type != models.ACCOUNT_TYPE_SINGLE_ACCOUNT {
|
||||||
|
log.WarnfWithRequestId(c, "[accounts.AccountCreateHandler] sub account type invalid")
|
||||||
|
return nil, errs.ErrSubAccountTypeInvalid
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
log.WarnfWithRequestId(c, "[accounts.AccountCreateHandler] account type invalid, type is %d", accountCreateReq.Type)
|
log.WarnfWithRequestId(c, "[accounts.AccountCreateHandler] account type invalid, type is %d", accountCreateReq.Type)
|
||||||
return nil, errs.ErrAccountTypeInvalid
|
return nil, errs.ErrAccountTypeInvalid
|
||||||
@@ -206,6 +226,7 @@ func (a *AccountsApi) createNewAccount(uid int64, accountCreateReq *models.Accou
|
|||||||
Name: accountCreateReq.Name,
|
Name: accountCreateReq.Name,
|
||||||
DisplayOrder: order,
|
DisplayOrder: order,
|
||||||
Category: accountCreateReq.Category,
|
Category: accountCreateReq.Category,
|
||||||
|
Type: accountCreateReq.Type,
|
||||||
Icon: accountCreateReq.Icon,
|
Icon: accountCreateReq.Icon,
|
||||||
Currency: accountCreateReq.Currency,
|
Currency: accountCreateReq.Currency,
|
||||||
Comment: accountCreateReq.Comment,
|
Comment: accountCreateReq.Comment,
|
||||||
|
|||||||
+8
-5
@@ -3,9 +3,12 @@ package errs
|
|||||||
import "net/http"
|
import "net/http"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
ErrAccountIdInvalid = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 0, http.StatusBadRequest, "account id is invalid")
|
ErrAccountIdInvalid = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 0, http.StatusBadRequest, "account id is invalid")
|
||||||
ErrAccountNotFound = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 1, http.StatusBadRequest, "account not found")
|
ErrAccountNotFound = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 1, http.StatusBadRequest, "account not found")
|
||||||
ErrAccountTypeInvalid = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 2, http.StatusBadRequest, "account type is invalid")
|
ErrAccountTypeInvalid = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 2, http.StatusBadRequest, "account type is invalid")
|
||||||
ErrAccountHaveNoSubAccount = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 3, http.StatusBadRequest, "account must have at least one sub account")
|
ErrAccountHaveNoSubAccount = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 3, http.StatusBadRequest, "account must have at least one sub account")
|
||||||
ErrAccountCannotHaveSubAccounts = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 4, http.StatusBadRequest, "account cannot have sub accounts")
|
ErrAccountCannotHaveSubAccounts = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 4, http.StatusBadRequest, "account cannot have sub accounts")
|
||||||
|
ErrParentAccountCannotSetCurrency = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 5, http.StatusBadRequest, "parent account cannot set currency")
|
||||||
|
ErrSubAccountCategoryNotEqualsToParent = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 6, http.StatusBadRequest, "sub account category not equals to parent")
|
||||||
|
ErrSubAccountTypeInvalid = NewNormalError(NORMAL_SUBCATEGORY_ACCOUNT, 7, http.StatusBadRequest, "sub account type invalid")
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -4,6 +4,8 @@ import (
|
|||||||
"github.com/go-playground/validator/v10"
|
"github.com/go-playground/validator/v10"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const PARENT_ACCOUNT_CURRENCY_PLACEHODLER = "---"
|
||||||
|
|
||||||
// ISO 4217
|
// ISO 4217
|
||||||
var ALL_CURRENCY_NAMES = map[string]bool {
|
var ALL_CURRENCY_NAMES = map[string]bool {
|
||||||
"AED": true, //UAE Dirham
|
"AED": true, //UAE Dirham
|
||||||
@@ -167,6 +169,10 @@ var ALL_CURRENCY_NAMES = map[string]bool {
|
|||||||
|
|
||||||
func ValidCurrency(fl validator.FieldLevel) bool {
|
func ValidCurrency(fl validator.FieldLevel) bool {
|
||||||
if value, ok := fl.Field().Interface().(string); ok {
|
if value, ok := fl.Field().Interface().(string); ok {
|
||||||
|
if value == PARENT_ACCOUNT_CURRENCY_PLACEHODLER {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
_, ok := ALL_CURRENCY_NAMES[value]
|
_, ok := ALL_CURRENCY_NAMES[value]
|
||||||
return ok
|
return ok
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,12 @@ const allAccountCategories = [
|
|||||||
defaultAccountIconId: '6'
|
defaultAccountIconId: '6'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
const allAccountTypes = {
|
||||||
|
SingleAccount: 1,
|
||||||
|
MultiSubAccounts: 2
|
||||||
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
allCategories: allAccountCategories
|
allCategories: allAccountCategories,
|
||||||
|
allAccountTypes: allAccountTypes,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
const parentAccountCurrencyPlacehodler = '---';
|
||||||
|
|
||||||
// ISO 4217
|
// ISO 4217
|
||||||
const allCurrencies = [
|
const allCurrencies = [
|
||||||
'AED', //UAE Dirham
|
'AED', //UAE Dirham
|
||||||
@@ -160,5 +162,6 @@ const allCurrencies = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
parentAccountCurrencyPlacehodler: parentAccountCurrencyPlacehodler,
|
||||||
all: allCurrencies
|
all: allCurrencies
|
||||||
};
|
};
|
||||||
|
|||||||
+3
-4
@@ -1,7 +1,5 @@
|
|||||||
const totalAccountIconCount = 22;
|
const totalAccountIconCount = 22;
|
||||||
const defaultAccountIcon = {
|
const defaultAccountIconId = '1';
|
||||||
f7Icon: 'bag'
|
|
||||||
};
|
|
||||||
const allAccountIcons = {
|
const allAccountIcons = {
|
||||||
'1': {
|
'1': {
|
||||||
f7Icon: 'bag'
|
f7Icon: 'bag'
|
||||||
@@ -70,6 +68,7 @@ const allAccountIcons = {
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
allAccountIcons: allAccountIcons,
|
allAccountIcons: allAccountIcons,
|
||||||
defaultAccountIcon: defaultAccountIcon,
|
defaultAccountIconId: defaultAccountIconId,
|
||||||
|
defaultAccountIcon: allAccountIcons[defaultAccountIconId],
|
||||||
totalAccountIconCount: totalAccountIconCount,
|
totalAccountIconCount: totalAccountIconCount,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -210,6 +210,9 @@ export default {
|
|||||||
'account type is invalid': 'Account type is invalid',
|
'account type is invalid': 'Account type is invalid',
|
||||||
'account must have at least one sub account': 'Account must have at least one sub account',
|
'account must have at least one sub account': 'Account must have at least one sub account',
|
||||||
'account cannot have sub accounts': 'Account cannot have sub accounts',
|
'account cannot have sub accounts': 'Account cannot have sub accounts',
|
||||||
|
'parent account cannot set currency': 'Parent account cannot set currency',
|
||||||
|
'sub account category not equals to parent': 'Sub account category does not equal to parent',
|
||||||
|
'sub account type invalid': 'Sub account type is invalid',
|
||||||
},
|
},
|
||||||
'parameter': {
|
'parameter': {
|
||||||
'id': 'ID',
|
'id': 'ID',
|
||||||
@@ -315,10 +318,16 @@ export default {
|
|||||||
'Account Type': 'Account Type',
|
'Account Type': 'Account Type',
|
||||||
'Account Name': 'Account Name',
|
'Account Name': 'Account Name',
|
||||||
'Your account name': 'Your account name',
|
'Your account name': 'Your account name',
|
||||||
|
'Sub Account Name': 'Sub Account Name',
|
||||||
|
'Your sub account name': 'Your sub account name',
|
||||||
'Account Icon': 'Account Icon',
|
'Account Icon': 'Account Icon',
|
||||||
|
'Sub Account Icon': 'Sub Account Icon',
|
||||||
'Currency': 'Currency',
|
'Currency': 'Currency',
|
||||||
'Description': 'Description',
|
'Description': 'Description',
|
||||||
'Your account description (optional)': 'Your account description (optional)',
|
'Your account description (optional)': 'Your account description (optional)',
|
||||||
|
'Your sub account description (optional)': 'Your sub account description (optional)',
|
||||||
|
'Add Sub Account': 'Add Sub Account',
|
||||||
|
'Remove Sub Account': 'Remove Sub Account',
|
||||||
'Account category cannot be empty': 'Account category cannot be empty',
|
'Account category cannot be empty': 'Account category cannot be empty',
|
||||||
'Account type cannot be empty': 'Account type cannot be empty',
|
'Account type cannot be empty': 'Account type cannot be empty',
|
||||||
'Account name cannot be empty': 'Account name cannot be empty',
|
'Account name cannot be empty': 'Account name cannot be empty',
|
||||||
|
|||||||
@@ -210,6 +210,9 @@ export default {
|
|||||||
'account type is invalid': '账户类型无效',
|
'account type is invalid': '账户类型无效',
|
||||||
'account must have at least one sub account': '账户必须包含至少一个子账户',
|
'account must have at least one sub account': '账户必须包含至少一个子账户',
|
||||||
'account cannot have sub accounts': '账户不能包含子账户',
|
'account cannot have sub accounts': '账户不能包含子账户',
|
||||||
|
'parent account cannot set currency': '父账户不能设置货币',
|
||||||
|
'sub account category not equals to parent': '子账户类别与父账户不同',
|
||||||
|
'sub account type invalid': '子账户类型无效',
|
||||||
},
|
},
|
||||||
'parameter': {
|
'parameter': {
|
||||||
'id': 'ID',
|
'id': 'ID',
|
||||||
@@ -315,10 +318,16 @@ export default {
|
|||||||
'Account Type': '账户类型',
|
'Account Type': '账户类型',
|
||||||
'Account Name': '账户名称',
|
'Account Name': '账户名称',
|
||||||
'Your account name': '你的账户名称',
|
'Your account name': '你的账户名称',
|
||||||
|
'Sub Account Name': '子账户名称',
|
||||||
|
'Your sub account name': '你的子账户名称',
|
||||||
'Account Icon': '账户图标',
|
'Account Icon': '账户图标',
|
||||||
|
'Sub Account Icon': '子账户图标',
|
||||||
'Currency': '货币',
|
'Currency': '货币',
|
||||||
'Description': '描述',
|
'Description': '描述',
|
||||||
'Your account description (optional)': '你的账户描述 (可选)',
|
'Your account description (optional)': '你的账户描述 (可选)',
|
||||||
|
'Your sub account description (optional)': '你的子账户描述 (可选)',
|
||||||
|
'Add Sub Account': '添加子账户',
|
||||||
|
'Remove Sub Account': '删除子账户',
|
||||||
'Account category cannot be empty': '账户分类不能为空',
|
'Account category cannot be empty': '账户分类不能为空',
|
||||||
'Account type cannot be empty': '账户类型不能为空',
|
'Account type cannot be empty': '账户类型不能为空',
|
||||||
'Account name cannot be empty': '账户名称不能为空',
|
'Account name cannot be empty': '账户名称不能为空',
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ const i18n = new VueI18n(getI18nOptions());
|
|||||||
|
|
||||||
Vue.prototype.$version = version.getVersion;
|
Vue.prototype.$version = version.getVersion;
|
||||||
Vue.prototype.$constants = {
|
Vue.prototype.$constants = {
|
||||||
|
currency: currency,
|
||||||
icons: icons,
|
icons: icons,
|
||||||
account: account,
|
account: account,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<f7-nav-left :back-link="$t('Back')"></f7-nav-left>
|
<f7-nav-left :back-link="$t('Back')"></f7-nav-left>
|
||||||
<f7-nav-title :title="$t('Add Account')"></f7-nav-title>
|
<f7-nav-title :title="$t('Add Account')"></f7-nav-title>
|
||||||
<f7-nav-right>
|
<f7-nav-right>
|
||||||
<f7-link :class="{ 'disabled': inputIsEmpty || submitting }" :text="$t('Add')" @click="add"></f7-link>
|
<f7-link :class="{ 'disabled': isInputEmpty() || submitting }" :text="$t('Add')" @click="add"></f7-link>
|
||||||
</f7-nav-right>
|
</f7-nav-right>
|
||||||
</f7-navbar>
|
</f7-navbar>
|
||||||
|
|
||||||
@@ -24,7 +24,6 @@
|
|||||||
|
|
||||||
<f7-list-input
|
<f7-list-input
|
||||||
type="select"
|
type="select"
|
||||||
disabled
|
|
||||||
:label="$t('Account Type')"
|
:label="$t('Account Type')"
|
||||||
:value="account.type"
|
:value="account.type"
|
||||||
@input="account.type = $event.target.value"
|
@input="account.type = $event.target.value"
|
||||||
@@ -36,7 +35,7 @@
|
|||||||
</f7-card-content>
|
</f7-card-content>
|
||||||
</f7-card>
|
</f7-card>
|
||||||
|
|
||||||
<f7-card v-if="account.type === '1'">
|
<f7-card v-if="account.type === $constants.account.allAccountTypes.SingleAccount.toString()">
|
||||||
<f7-card-content :padding="false">
|
<f7-card-content :padding="false">
|
||||||
<f7-list>
|
<f7-list>
|
||||||
<f7-list-input
|
<f7-list-input
|
||||||
@@ -49,7 +48,7 @@
|
|||||||
></f7-list-input>
|
></f7-list-input>
|
||||||
|
|
||||||
<f7-list-item :header="$t('Account Icon')" link="#"
|
<f7-list-item :header="$t('Account Icon')" link="#"
|
||||||
@click="showIconSelection = true">
|
@click="showIconSelectionSheet(account)">
|
||||||
<f7-icon slot="after" :f7="account.icon | accountIcon"></f7-icon>
|
<f7-icon slot="after" :f7="account.icon | accountIcon"></f7-icon>
|
||||||
</f7-list-item>
|
</f7-list-item>
|
||||||
|
|
||||||
@@ -71,14 +70,86 @@
|
|||||||
:value="account.comment"
|
:value="account.comment"
|
||||||
@input="account.comment = $event.target.value"
|
@input="account.comment = $event.target.value"
|
||||||
></f7-list-input>
|
></f7-list-input>
|
||||||
|
|
||||||
<f7-list-item class="lab-list-item-error-info" v-if="inputIsInvalid" :footer="$t(inputInvalidProblemMessage)"></f7-list-item>
|
|
||||||
</f7-list>
|
</f7-list>
|
||||||
</f7-card-content>
|
</f7-card-content>
|
||||||
</f7-card>
|
</f7-card>
|
||||||
|
|
||||||
|
<f7-card v-else-if="account.type === $constants.account.allAccountTypes.MultiSubAccounts.toString()">
|
||||||
|
<f7-card-content :padding="false">
|
||||||
|
<f7-list>
|
||||||
|
<f7-list-input
|
||||||
|
type="text"
|
||||||
|
clear-button
|
||||||
|
:label="$t('Account Name')"
|
||||||
|
:placeholder="$t('Your account name')"
|
||||||
|
:value="account.name"
|
||||||
|
@input="account.name = $event.target.value"
|
||||||
|
></f7-list-input>
|
||||||
|
|
||||||
<f7-sheet :opened="showIconSelection" @sheet:closed="showIconSelection = false">
|
<f7-list-item :header="$t('Account Icon')" link="#"
|
||||||
|
@click="showIconSelectionSheet(account)">
|
||||||
|
<f7-icon slot="after" :f7="account.icon | accountIcon"></f7-icon>
|
||||||
|
</f7-list-item>
|
||||||
|
|
||||||
|
<f7-list-input
|
||||||
|
type="textarea"
|
||||||
|
:label="$t('Description')"
|
||||||
|
:placeholder="$t('Your account description (optional)')"
|
||||||
|
:value="account.comment"
|
||||||
|
@input="account.comment = $event.target.value"
|
||||||
|
></f7-list-input>
|
||||||
|
</f7-list>
|
||||||
|
</f7-card-content>
|
||||||
|
<f7-card-footer>
|
||||||
|
<f7-button large fill :text="$t('Add Sub Account')" @click="addSubAccount"></f7-button>
|
||||||
|
</f7-card-footer>
|
||||||
|
</f7-card>
|
||||||
|
|
||||||
|
<f7-block class="no-padding no-margin" v-if="account.type === $constants.account.allAccountTypes.MultiSubAccounts.toString()">
|
||||||
|
<f7-card v-for="(subAccount, idx) in subAccounts" :key="idx">
|
||||||
|
<f7-card-content :padding="false">
|
||||||
|
<f7-list>
|
||||||
|
<f7-list-input
|
||||||
|
type="text"
|
||||||
|
clear-button
|
||||||
|
:label="$t('Sub Account Name')"
|
||||||
|
:placeholder="$t('Your sub account name')"
|
||||||
|
:value="subAccount.name"
|
||||||
|
@input="subAccount.name = $event.target.value"
|
||||||
|
></f7-list-input>
|
||||||
|
|
||||||
|
<f7-list-item :header="$t('Sub Account Icon')" link="#"
|
||||||
|
@click="showIconSelectionSheet(subAccount)">
|
||||||
|
<f7-icon slot="after" :f7="subAccount.icon | accountIcon"></f7-icon>
|
||||||
|
</f7-list-item>
|
||||||
|
|
||||||
|
<f7-list-input
|
||||||
|
type="select"
|
||||||
|
:label="$t('Currency')"
|
||||||
|
:value="subAccount.currency"
|
||||||
|
@input="subAccount.currency = $event.target.value"
|
||||||
|
>
|
||||||
|
<option v-for="currency in allCurrencies"
|
||||||
|
:key="currency.code"
|
||||||
|
:value="currency.code">{{ currency.displayName }}</option>
|
||||||
|
</f7-list-input>
|
||||||
|
|
||||||
|
<f7-list-input
|
||||||
|
type="textarea"
|
||||||
|
:label="$t('Description')"
|
||||||
|
:placeholder="$t('Your sub account description (optional)')"
|
||||||
|
:value="subAccount.comment"
|
||||||
|
@input="subAccount.comment = $event.target.value"
|
||||||
|
></f7-list-input>
|
||||||
|
</f7-list>
|
||||||
|
</f7-card-content>
|
||||||
|
<f7-card-footer>
|
||||||
|
<f7-button large fill color="red" :text="$t('Remove Sub Account')" @click="removeSubAccount(subAccount)"></f7-button>
|
||||||
|
</f7-card-footer>
|
||||||
|
</f7-card>
|
||||||
|
</f7-block>
|
||||||
|
|
||||||
|
<f7-sheet :opened="showIconSelection" @sheet:closed="hideIconSelectionSheet">
|
||||||
<f7-toolbar>
|
<f7-toolbar>
|
||||||
<div class="left"></div>
|
<div class="left"></div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
@@ -89,8 +160,8 @@
|
|||||||
<f7-block>
|
<f7-block>
|
||||||
<f7-row class="padding-vertical-half padding-horizontal-half" v-for="(row, idx) in allAccountIconRows" :key="idx">
|
<f7-row class="padding-vertical-half padding-horizontal-half" v-for="(row, idx) in allAccountIconRows" :key="idx">
|
||||||
<f7-col v-for="accountIcon in row" :key="accountIcon.id">
|
<f7-col v-for="accountIcon in row" :key="accountIcon.id">
|
||||||
<f7-icon :f7="accountIcon.f7Icon" @click.native="account.icon = accountIcon.id; showIconSelection = false">
|
<f7-icon :f7="accountIcon.f7Icon" @click.native="setSelectedIcon(accountIcon)">
|
||||||
<f7-badge color="default" class="right-bottom-icon" v-if="account.icon === accountIcon.id">
|
<f7-badge color="default" class="right-bottom-icon" v-if="accountChoosingIcon && accountChoosingIcon.icon === accountIcon.id">
|
||||||
<f7-icon f7="checkmark_alt"></f7-icon>
|
<f7-icon f7="checkmark_alt"></f7-icon>
|
||||||
</f7-badge>
|
</f7-badge>
|
||||||
</f7-icon>
|
</f7-icon>
|
||||||
@@ -110,12 +181,14 @@ export default {
|
|||||||
return {
|
return {
|
||||||
account: {
|
account: {
|
||||||
category: '1',
|
category: '1',
|
||||||
type: '1',
|
type: self.$constants.account.allAccountTypes.SingleAccount.toString(),
|
||||||
name: '',
|
name: '',
|
||||||
icon: "1",
|
icon: self.$constants.icons.defaultAccountIconId,
|
||||||
currency: self.$user.getUserInfo() ? self.$user.getUserInfo().defaultCurrency : self.$t('default.currency'),
|
currency: self.$user.getUserInfo() ? self.$user.getUserInfo().defaultCurrency : self.$t('default.currency'),
|
||||||
comment: ''
|
comment: ''
|
||||||
},
|
},
|
||||||
|
subAccounts: [],
|
||||||
|
accountChoosingIcon: null,
|
||||||
submitting: false,
|
submitting: false,
|
||||||
showIconSelection: false
|
showIconSelection: false
|
||||||
};
|
};
|
||||||
@@ -154,36 +227,54 @@ export default {
|
|||||||
},
|
},
|
||||||
allCurrencies() {
|
allCurrencies() {
|
||||||
return this.$getAllCurrencies();
|
return this.$getAllCurrencies();
|
||||||
},
|
|
||||||
inputIsEmpty() {
|
|
||||||
return !!this.inputEmptyProblemMessage;
|
|
||||||
},
|
|
||||||
inputIsInvalid() {
|
|
||||||
return !!this.inputInvalidProblemMessage;
|
|
||||||
},
|
|
||||||
inputEmptyProblemMessage() {
|
|
||||||
if (!this.account.category) {
|
|
||||||
return 'Account category cannot be empty';
|
|
||||||
} else if (!this.account.type) {
|
|
||||||
return 'Account type cannot be empty';
|
|
||||||
} else if (!this.account.name) {
|
|
||||||
return 'Account name cannot be empty';
|
|
||||||
} else if (!this.account.currency) {
|
|
||||||
return 'Account currency cannot be empty';
|
|
||||||
} else {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
inputInvalidProblemMessage() {
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
addSubAccount() {
|
||||||
|
const self = this;
|
||||||
|
|
||||||
|
if (self.account.type !== self.$constants.account.allAccountTypes.MultiSubAccounts.toString()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.subAccounts.push({
|
||||||
|
category: null,
|
||||||
|
type: null,
|
||||||
|
name: '',
|
||||||
|
icon: this.account.icon,
|
||||||
|
currency: self.$user.getUserInfo() ? self.$user.getUserInfo().defaultCurrency : self.$t('default.currency'),
|
||||||
|
comment: ''
|
||||||
|
});
|
||||||
|
},
|
||||||
|
removeSubAccount(subAccount) {
|
||||||
|
for (let i = 0; i < this.subAccounts.length; i++) {
|
||||||
|
if (this.subAccounts[i] === subAccount) {
|
||||||
|
this.subAccounts.splice(i, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
showIconSelectionSheet(account) {
|
||||||
|
this.accountChoosingIcon = account;
|
||||||
|
this.showIconSelection = true
|
||||||
|
},
|
||||||
|
setSelectedIcon(accountIcon) {
|
||||||
|
if (!this.accountChoosingIcon) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.accountChoosingIcon.icon = accountIcon.id;
|
||||||
|
this.accountChoosingIcon = null;
|
||||||
|
this.showIconSelection = false;
|
||||||
|
},
|
||||||
|
hideIconSelectionSheet() {
|
||||||
|
this.accountChoosingIcon = null;
|
||||||
|
this.showIconSelection = false;
|
||||||
|
},
|
||||||
add() {
|
add() {
|
||||||
const self = this;
|
const self = this;
|
||||||
const router = self.$f7router;
|
const router = self.$f7router;
|
||||||
|
|
||||||
let problemMessage = self.inputEmptyProblemMessage || self.inputInvalidProblemMessage;
|
let problemMessage = self.inputEmptyProblemMessage;
|
||||||
|
|
||||||
if (problemMessage) {
|
if (problemMessage) {
|
||||||
self.$alert(problemMessage);
|
self.$alert(problemMessage);
|
||||||
@@ -193,13 +284,31 @@ export default {
|
|||||||
self.submitting = true;
|
self.submitting = true;
|
||||||
self.$showLoading(() => self.submitting);
|
self.$showLoading(() => self.submitting);
|
||||||
|
|
||||||
|
const subAccounts = [];
|
||||||
|
|
||||||
|
if (self.account.type === self.$constants.account.allAccountTypes.MultiSubAccounts.toString()) {
|
||||||
|
for (let i = 0; i < self.subAccounts.length; i++) {
|
||||||
|
const subAccount = self.subAccounts[i];
|
||||||
|
|
||||||
|
subAccounts.push({
|
||||||
|
category: parseInt(self.account.category),
|
||||||
|
type: self.$constants.account.allAccountTypes.SingleAccount,
|
||||||
|
name: subAccount.name,
|
||||||
|
icon: subAccount.icon,
|
||||||
|
currency: subAccount.currency,
|
||||||
|
comment: subAccount.comment
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
self.$services.addAccount({
|
self.$services.addAccount({
|
||||||
category: parseInt(self.account.category),
|
category: parseInt(self.account.category),
|
||||||
type: parseInt(self.account.type),
|
type: parseInt(self.account.type),
|
||||||
name: self.account.name,
|
name: self.account.name,
|
||||||
icon: self.account.icon,
|
icon: self.account.icon,
|
||||||
currency: self.account.currency,
|
currency: self.account.type === self.$constants.account.allAccountTypes.SingleAccount.toString() ? self.account.currency : self.$constants.currency.parentAccountCurrencyPlacehodler,
|
||||||
comment: self.account.comment
|
comment: self.account.comment,
|
||||||
|
subAccounts: self.account.type === self.$constants.account.allAccountTypes.SingleAccount.toString() ? null : subAccounts,
|
||||||
}).then(response => {
|
}).then(response => {
|
||||||
self.submitting = false;
|
self.submitting = false;
|
||||||
self.$hideLoading();
|
self.$hideLoading();
|
||||||
@@ -241,6 +350,38 @@ export default {
|
|||||||
this.account.icon = allCategories[i].defaultAccountIconId;
|
this.account.icon = allCategories[i].defaultAccountIconId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
isInputEmpty() {
|
||||||
|
const isAccountEmpty = !!this.getInputEmptyProblemMessage(this.account, false);
|
||||||
|
|
||||||
|
if (isAccountEmpty) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.account.type === this.$constants.account.allAccountTypes.MultiSubAccounts.toString()) {
|
||||||
|
for (let i = 0; i < this.subAccounts.length; i++) {
|
||||||
|
const isSubAccountEmpty = !!this.getInputEmptyProblemMessage(this.subAccounts[i], true);
|
||||||
|
|
||||||
|
if (isSubAccountEmpty) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
getInputEmptyProblemMessage(account, isSubAccount) {
|
||||||
|
if (!isSubAccount && !account.category) {
|
||||||
|
return 'Account category cannot be empty';
|
||||||
|
} else if (!isSubAccount && !account.type) {
|
||||||
|
return 'Account type cannot be empty';
|
||||||
|
} else if (!account.name) {
|
||||||
|
return 'Account name cannot be empty';
|
||||||
|
} else if (account.type === this.$constants.account.allAccountTypes.SingleAccount.toString() && !account.currency) {
|
||||||
|
return 'Account currency cannot be empty';
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user