|
@@ -740,7 +740,7 @@ $(document).ready(() => {
|
|
|
const sheet = ledgerSpread.getActiveSheet();
|
|
|
const select = SpreadJsObj.getSelectObject(sheet);
|
|
|
const index = gclGatherData.indexOf(select);
|
|
|
- const gcl = gclGatherData[index].leafXmjs.filter(item => item.gather_qty !== null && item.gather_qty !== undefined);
|
|
|
+ const gcl = gclGatherData[index].leafXmjs;
|
|
|
const ms_id = isStageSelf ? parseInt($('#myTab').find('.active').data('msid')) : null;
|
|
|
const datas = [];
|
|
|
for (const xmj of gcl) {
|
|
@@ -1064,7 +1064,7 @@ $(document).ready(() => {
|
|
|
const index = gclGatherData.indexOf(select);
|
|
|
// const leafXmjSheet = leafXmjSpread.getActiveSheet();
|
|
|
// const leafXmjSelect = SpreadJsObj.getSelectObject(leafXmjSheet);
|
|
|
- const gcl = gclGatherData[index].leafXmjs.filter(item => item.gather_qty !== null && item.gather_qty !== undefined);
|
|
|
+ const gcl = gclGatherData[index].leafXmjs;
|
|
|
// const leafXmjIndex = gcl.indexOf(leafXmjSelect);
|
|
|
const datas = [];
|
|
|
for (const xmj of gcl) {
|
|
@@ -1187,7 +1187,7 @@ $(document).ready(() => {
|
|
|
const ledgerSheet = ledgerSpread.getActiveSheet();
|
|
|
const ledgerSelect = SpreadJsObj.getSelectObject(ledgerSheet);
|
|
|
const index = gclGatherData.indexOf(ledgerSelect);
|
|
|
- const gcl = gclGatherData[index].leafXmjs.filter(item => item.gather_qty !== null && item.gather_qty !== undefined);
|
|
|
+ const gcl = gclGatherData[index].leafXmjs;
|
|
|
// const xmjSheet = leafXmjSpread.getActiveSheet();
|
|
|
// const xmjSelect = SpreadJsObj.getSelectObject(xmjSheet);
|
|
|
// const xmjIndex = gcl.indexOf(xmjSelect);
|
|
@@ -1339,7 +1339,7 @@ $(document).ready(() => {
|
|
|
const ledgerSheet = ledgerSpread.getActiveSheet();
|
|
|
const ledgerSelect = SpreadJsObj.getSelectObject(ledgerSheet);
|
|
|
const index = gclGatherData.indexOf(ledgerSelect);
|
|
|
- const gcl = gclGatherData[index].leafXmjs.filter(item => item.gather_qty !== null && item.gather_qty !== undefined);
|
|
|
+ const gcl = gclGatherData[index].leafXmjs;
|
|
|
// const xmjSheet = leafXmjSpread.getActiveSheet();
|
|
|
// const xmjSelect = SpreadJsObj.getSelectObject(xmjSheet);
|
|
|
// const xmjIndex = gcl.indexOf(xmjSelect);
|