2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00

fix: remove console.logs 🤦

This commit is contained in:
18alantom 2021-11-10 19:20:20 +05:30
parent 735bf3f830
commit 9339efe951
2 changed files with 0 additions and 2 deletions

View File

@ -25,7 +25,6 @@ async function importAccounts(children, parentAccount, rootType, rootAccount) {
const { accountType, accountNumber } = child;
const accountName = getAccountName(rootName, accountNumber);
const isGroup = identifyIsGroup(child);
console.log('inserting account: ', accountName);
const doc = frappe.newDoc({
doctype: 'Account',
name: accountName,

View File

@ -87,7 +87,6 @@ async function setupChartOfAccounts(bankName, country) {
method: 'import-coa',
});
const parentAccount = await getBankAccountParentName(country);
console.log('parent account gonna be', parentAccount, ` for ${country} `);
const docObject = {
doctype: 'Account',
name: bankName,