|
@@ -764,6 +764,7 @@ $(document).ready(() => {
|
|
|
postData(window.location.pathname + '/month/save', { type:'updateOrigin', updateData: { mb_id: select.mb_id, value: validText } }, function (result) {
|
|
|
SpreadJsObj.reLoadRowData(info.sheet, info.row);
|
|
|
materialBillsData = result.materialBillsData;
|
|
|
+ SpreadJsObj.loadSheetData(materialSpread.getActiveSheet(), SpreadJsObj.DataType.Data, materialBillsData);
|
|
|
}, function () {
|
|
|
select[col.field] = orgValue;
|
|
|
SpreadJsObj.reLoadRowData(info.sheet, info.row);
|
|
@@ -900,6 +901,7 @@ $(document).ready(() => {
|
|
|
SpreadJsObj.reLoadRowData(info.sheet, info.cellRange.row, info.cellRange.rowCount);
|
|
|
return;
|
|
|
}
|
|
|
+ // console.log(data);
|
|
|
if (pasteOrigin) {
|
|
|
// 更新至服务器
|
|
|
postData(window.location.pathname + '/month/save', { type:'pasteOrigin', updateData: data }, function (result) {
|