|
@@ -1915,7 +1915,7 @@ const masterCross = {
|
|
|
prefix: 's_',
|
|
|
fields: ['code', 'name', 'units'],
|
|
|
quoteFields: ['quantity'],
|
|
|
- gatherFields: ['quantity'],
|
|
|
+ gatherFields: [],
|
|
|
},
|
|
|
target: 'master_converse'
|
|
|
},
|
|
@@ -1938,7 +1938,7 @@ const masterCross = {
|
|
|
for (const f of options.main.fields) {
|
|
|
temp[options.main.prefix + f] = m[f];
|
|
|
}
|
|
|
- const rela = subTable.filter(x => { return x[options.sub.subKey] === m[options.masterKey]; });
|
|
|
+ const rela = subTable.filter(x => { return x[options.sub.subKey] === m[options.sub.masterKey]; });
|
|
|
for (const cd of converseData) {
|
|
|
const nd = JSON.parse(JSON.stringify(temp));
|
|
|
nd.quote = false;
|