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

Fixes for new Customer and new DB bugs

Follow-up on 72c6d7f6c7
This commit is contained in:
Prssanna Desai 2019-02-18 11:52:20 +05:30
parent 72c6d7f6c7
commit 5bae1a54ec
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ module.exports = {
AccountingSettings: require('./doctype/AccountingSettings/AccountingSettings'),
CompanySettings: require('./doctype/CompanySettings/CompanySettings'),
AccountingLedgerEntry: require('./doctype/AccountingLedgerEntry/AccountingLedgerEntry.js'),
// Party: require('./doctype/Party/Party.js'),
Party: require('./doctype/Party/Party.js'),
Payment: require('./doctype/Payment/Payment.js'),
PaymentFor: require('./doctype/PaymentFor/PaymentFor.js'),

View File

@ -41,7 +41,7 @@ export default {
name: 'SetupWizard',
data() {
return {
meta: null,
meta: frappe.getMeta('SetupWizard'),
currentSection: 0
};
},