Commit 3ad69405 authored by Rifka Kurnia's avatar Rifka Kurnia

Merge branch 'rifka' into 'master'

upload

See merge request !944
parents f64b8d53 01a69d6d
...@@ -399,9 +399,9 @@ export default class BalanceSheetMR extends Component { ...@@ -399,9 +399,9 @@ export default class BalanceSheetMR extends Component {
// 0, // 0,
// 0, // 0,
// 0, // 0,
item.mtd_vs_previous_month, item.mtd_vs_previous_month === null ? "" : item.mtd_vs_previous_month === undefined ? "" : item.mtd_vs_previous_month,
item.mtd_vs_mb, item.mtd_vs_mb === null ? "" : item.mtd_vs_mb === undefined ? "" : item.mtd_vs_mb,
item.mtd_vs_rb, item.mtd_vs_rb === null ? "" : item.mtd_vs_rb === undefined ? "" : item.mtd_vs_rb,
item.actual_formula, item.actual_formula,
item.order, item.order,
item.condition_it_should_be, item.condition_it_should_be,
...@@ -515,6 +515,7 @@ export default class BalanceSheetMR extends Component { ...@@ -515,6 +515,7 @@ export default class BalanceSheetMR extends Component {
"balance_sheet": data "balance_sheet": data
} }
api.create('UPLOAD').createMonthlyReportBS(payload).then(response => { api.create('UPLOAD').createMonthlyReportBS(payload).then(response => {
console.log(payload);
console.log(response); console.log(response);
console.log(JSON.stringify(payload)) console.log(JSON.stringify(payload))
if (response.data) { if (response.data) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment