mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
Merge pull request #443 from 18alantom/minor-fixes-four
fix: minor fixes four
This commit is contained in:
commit
60a95cb53a
@ -1,5 +1,6 @@
|
||||
import { ipcRenderer } from 'electron';
|
||||
import { t } from 'fyo';
|
||||
import { ConfigKeys } from 'fyo/core/types';
|
||||
import { Doc } from 'fyo/model/doc';
|
||||
import { BaseError } from 'fyo/utils/errors';
|
||||
import { ErrorLog } from 'fyo/utils/types';
|
||||
@ -176,6 +177,11 @@ function getIssueUrlQuery(errorLogObj?: ErrorLog): string {
|
||||
body.push(`**Platform**: \`${fyo.store.platform}\``);
|
||||
body.push(`**Path**: \`${router.currentRoute.value.fullPath}\``);
|
||||
|
||||
body.push(`**Language**: \`${fyo.config.get(ConfigKeys.Language)}\``);
|
||||
if (fyo.singles.SystemSettings?.countryCode) {
|
||||
body.push(`**Country**: \`${fyo.singles.SystemSettings.countryCode}\``);
|
||||
}
|
||||
|
||||
const url = [baseUrl, `body=${body.join('\n')}`].join('&');
|
||||
return encodeURI(url);
|
||||
}
|
||||
|
@ -101,7 +101,6 @@
|
||||
type="text"
|
||||
v-model="newAccountName"
|
||||
:disabled="insertingAccount"
|
||||
|
||||
/>
|
||||
<button
|
||||
v-if="!insertingAccount"
|
||||
@ -164,7 +163,7 @@ export default {
|
||||
if (fyo.store.isDevelopment) {
|
||||
window.coa = this;
|
||||
}
|
||||
docsPath.value = docsPathMap.ChartOfAccounts
|
||||
docsPath.value = docsPathMap.ChartOfAccounts;
|
||||
},
|
||||
deactivated() {
|
||||
docsPath.value = '';
|
||||
@ -184,28 +183,44 @@ export default {
|
||||
};
|
||||
this.accounts = await this.getChildren();
|
||||
},
|
||||
onClick(account) {
|
||||
if (!account.isGroup) {
|
||||
openQuickEdit({
|
||||
async onClick(account) {
|
||||
let shouldOpen = !account.isGroup;
|
||||
if (account.isGroup) {
|
||||
shouldOpen = !(await this.toggleChildren(account));
|
||||
}
|
||||
|
||||
if (!shouldOpen) {
|
||||
return;
|
||||
}
|
||||
|
||||
await openQuickEdit({
|
||||
schemaName: ModelNameEnum.Account,
|
||||
name: account.name,
|
||||
});
|
||||
} else {
|
||||
this.toggleChildren(account);
|
||||
}
|
||||
|
||||
const doc = await fyo.doc.getDoc(ModelNameEnum.Account, account.name);
|
||||
doc.once('afterDelete', () => this.fetchAccounts());
|
||||
},
|
||||
async toggleChildren(account) {
|
||||
await this.fetchChildren(account);
|
||||
const hasChildren = await this.fetchChildren(account);
|
||||
if (!hasChildren) {
|
||||
return false;
|
||||
}
|
||||
|
||||
account.expanded = !account.expanded;
|
||||
if (!account.expanded) {
|
||||
account.addingAccount = 0;
|
||||
account.addingGroupAccount = 0;
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
async fetchChildren(account, force = false) {
|
||||
if (account.children == null || force) {
|
||||
account.children = await this.getChildren(account.name);
|
||||
}
|
||||
|
||||
return !!account?.children?.length;
|
||||
},
|
||||
async getChildren(parent = null) {
|
||||
const children = await fyo.db.getAll(ModelNameEnum.Account, {
|
||||
|
@ -207,24 +207,26 @@ export async function createDiscountAccount(fyo: Fyo) {
|
||||
}
|
||||
|
||||
async function setDefaultAccounts(fyo: Fyo) {
|
||||
const accountMap: Record<string, string> = {
|
||||
writeOffAccount: fyo.t`Write Off`,
|
||||
roundOffAccount: fyo.t`Rounded Off`,
|
||||
};
|
||||
|
||||
for (const key in accountMap) {
|
||||
const accountName = accountMap[key];
|
||||
const accountExists = await fyo.db.exists(
|
||||
ModelNameEnum.Account,
|
||||
accountName
|
||||
await setDefaultAccount('writeOffAccount', fyo.t`Write Off`, fyo);
|
||||
const isSet = await setDefaultAccount(
|
||||
'roundOffAccount',
|
||||
fyo.t`Rounded Off`,
|
||||
fyo
|
||||
);
|
||||
|
||||
if (!isSet) {
|
||||
await setDefaultAccount('roundOffAccount', fyo.t`Round Off`, fyo);
|
||||
}
|
||||
}
|
||||
|
||||
async function setDefaultAccount(key: string, accountName: string, fyo: Fyo) {
|
||||
const accountExists = await fyo.db.exists(ModelNameEnum.Account, accountName);
|
||||
if (!accountExists) {
|
||||
continue;
|
||||
return false;
|
||||
}
|
||||
|
||||
await fyo.singles.AccountingSettings!.setAndSync(key, accountName);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
async function completeSetup(companyName: string, fyo: Fyo) {
|
||||
|
@ -21,8 +21,8 @@ Account,Konto,
|
||||
"Accounting Ledger Entry",,
|
||||
"Accounting Settings",Buchhaltungseinstellungen,
|
||||
Accounts,Konten,
|
||||
"Accounts Payable",Kreditoren,
|
||||
"Accounts Receivable",Debitoren,
|
||||
"Accounts Payable",Verbindlichkeiten,
|
||||
"Accounts Receivable",Forderungen,
|
||||
"Accumulated Depreciation","Kumulierte Abschreibung",
|
||||
"Add Account","Konto hinzufügen",
|
||||
"Add Customers","Kunden hinzufügen",
|
||||
|
|
Loading…
Reference in New Issue
Block a user