mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
Merge branch 'frappe:master' into batch-wise-item
This commit is contained in:
commit
56ebc57d76
@ -232,7 +232,7 @@ export class Importer {
|
||||
const doc = this.fyo.doc.getNewDoc(this.schemaName, data, false);
|
||||
for (const schemaName in targetFieldnameMap) {
|
||||
const fieldname = targetFieldnameMap[schemaName];
|
||||
const childTable = childTableMap[name][schemaName];
|
||||
const childTable = childTableMap[name]?.[schemaName];
|
||||
if (!childTable) {
|
||||
continue;
|
||||
}
|
||||
|
@ -64,4 +64,4 @@ test('import SalesInvoices', async (t) => {
|
||||
);
|
||||
});
|
||||
|
||||
closeTestFyo(fyo, __filename);
|
||||
closeTestFyo(fyo, __filename);
|
Loading…
Reference in New Issue
Block a user