Commit 5d08bd3c authored by rifkaki's avatar rifkaki

upload

parent fa223e16
......@@ -399,9 +399,9 @@ export default class BalanceSheetMR extends Component {
// 0,
// 0,
// 0,
item.mtd_vs_previous_month,
item.mtd_vs_mb,
item.mtd_vs_rb,
item.mtd_vs_previous_month === null ? "" : item.mtd_vs_previous_month === undefined ? "" : item.mtd_vs_previous_month,
item.mtd_vs_mb === null ? "" : item.mtd_vs_mb === undefined ? "" : item.mtd_vs_mb,
item.mtd_vs_rb === null ? "" : item.mtd_vs_rb === undefined ? "" : item.mtd_vs_rb,
item.actual_formula,
item.order,
item.condition_it_should_be,
......@@ -515,6 +515,7 @@ export default class BalanceSheetMR extends Component {
"balance_sheet": data
}
api.create('UPLOAD').createMonthlyReportBS(payload).then(response => {
console.log(payload);
console.log(response);
console.log(JSON.stringify(payload))
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