Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Tia-dev
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dida Adams Arizona
Tia-dev
Commits
f35dc347
Commit
f35dc347
authored
1 year ago
by
Riri Novita
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ENV-DEV' into 'ENV-STAGING'
update settingan See merge request
!2105
parents
92da6227
46d9f5ed
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
47 additions
and
21 deletions
+47
-21
BalanceSheet.js
src/container/BudgetTahunan/BalanceSheet.js
+2
-1
CashFlow.js
src/container/BudgetTahunan/CashFlow.js
+2
-1
ProfitLoss.js
src/container/BudgetTahunan/ProfitLoss.js
+1
-1
TaxPlanning.js
src/container/BudgetTahunan/TaxPlanning.js
+10
-2
CorporateAnnualTargetMR.js
src/container/MonthlyReport/CorporateAnnualTargetMR.js
+4
-2
ListOfCreditFacilitiesMR.js
src/container/MonthlyReport/ListOfCreditFacilitiesMR.js
+4
-2
OperatingIndicatorMR.js
src/container/MonthlyReport/OperatingIndicatorMR.js
+2
-1
ProfitLossMR.js
src/container/MonthlyReport/ProfitLossMR.js
+2
-1
BalanceSheetOLPA.js
src/container/OutlookPA/BalanceSheetOLPA.js
+2
-1
CashFlowOLPA.js
src/container/OutlookPA/CashFlowOLPA.js
+2
-1
CorporateAnnualTargetOLPA.js
src/container/OutlookPA/CorporateAnnualTargetOLPA.js
+4
-2
TaxPlanningOLPA.js
src/container/OutlookPA/TaxPlanningOLPA.js
+2
-1
BalanceSheetRO.js
src/container/RollingOutlook/BalanceSheetRO.js
+2
-1
CashFlowRO.js
src/container/RollingOutlook/CashFlowRO.js
+2
-1
CorporateAnnualTargetRO.js
src/container/RollingOutlook/CorporateAnnualTargetRO.js
+4
-2
TaxPlanningRO.js
src/container/RollingOutlook/TaxPlanningRO.js
+2
-1
No files found.
src/container/BudgetTahunan/BalanceSheet.js
View file @
f35dc347
...
...
@@ -76,7 +76,8 @@ export default class BalanceSheet extends Component {
let
body
=
{
group
:
'THRESHOLD_CONTROL'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'BALANCE_SHEET'
type
:
'BALANCE_SHEET'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/container/BudgetTahunan/CashFlow.js
View file @
f35dc347
...
...
@@ -59,7 +59,8 @@ export default class CashFlow extends Component {
let
body
=
{
group
:
'THRESHOLD_CONTROL'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'CASH_FLOW'
type
:
'CASH_FLOW'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/container/BudgetTahunan/ProfitLoss.js
View file @
f35dc347
...
...
@@ -84,7 +84,7 @@ export default class ProfitLoss extends Component {
let
body
=
{
group
:
'CURRENCY_MONEY_FORMAT'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
this
.
props
.
defaultCurrency
.
value
type
:
this
.
props
.
defaultCurrency
.
value
,
}
console
.
log
(
body
);
...
...
This diff is collapsed.
Click to expand it.
src/container/BudgetTahunan/TaxPlanning.js
View file @
f35dc347
...
...
@@ -74,7 +74,8 @@ export default class TaxPlanning extends Component {
let
body
=
{
group
:
'THRESHOLD_CONTROL'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'TAX_PLANNING'
type
:
'TAX_PLANNING'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
@@ -1533,7 +1534,14 @@ export default class TaxPlanning extends Component {
}
}
total
=
R
.
equals
(
total
,
NaN
)
?
"0.0"
:
total
if
(
tableMeta
.
rowData
[
8
]
==
"Control (should be nil)"
)
{
total
=
R
.
equals
(
total
,
NaN
)
?
"0.0"
:
fixNumber
(
Number
(
total
),
1
)
if
(
tableMeta
.
rowData
[
4
]
==
3163752
&&
tableMeta
.
columnIndex
==
10
)
{
console
.
log
(
total
);
}
}
else
{
total
=
R
.
equals
(
total
,
NaN
)
?
"0.0"
:
total
}
// if (tableMeta.rowData[8] == "Corporate Income Tax") {
// console.log(tableMeta.rowData[8])
// // console.log(splitFormula)
...
...
This diff is collapsed.
Click to expand it.
src/container/MonthlyReport/CorporateAnnualTargetMR.js
View file @
f35dc347
...
...
@@ -557,7 +557,8 @@ export default class CorporateAnnualTargetMR extends Component {
let
body
=
{
group
:
'CAT'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'KPI_TYPE'
type
:
'KPI_TYPE'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
console
.
log
(
response
)
...
...
@@ -602,7 +603,8 @@ export default class CorporateAnnualTargetMR extends Component {
let
body
=
{
group
:
'CAT'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'MAX_ACHIEVEMENT'
type
:
'MAX_ACHIEVEMENT'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
console
.
log
(
response
);
...
...
This diff is collapsed.
Click to expand it.
src/container/MonthlyReport/ListOfCreditFacilitiesMR.js
View file @
f35dc347
...
...
@@ -858,7 +858,8 @@ export default class ListOfCreditFacilities extends Component {
let
body
=
{
group
:
'BANK'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'BANK_NAME'
type
:
'BANK_NAME'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
this
.
setState
({
dataLoaded
:
false
})
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
@@ -904,7 +905,8 @@ export default class ListOfCreditFacilities extends Component {
let
body
=
{
group
:
'BANK'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'TYPE_OF_CREDIT'
type
:
'TYPE_OF_CREDIT'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
console
.
log
(
response
)
...
...
This diff is collapsed.
Click to expand it.
src/container/MonthlyReport/OperatingIndicatorMR.js
View file @
f35dc347
...
...
@@ -142,7 +142,8 @@ export default class OperatingIndicatorMR extends Component {
let
body
=
{
group
:
'THRESHOLD_VARIANCE'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'BALANCE_SHEET'
type
:
'BALANCE_SHEET'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/container/MonthlyReport/ProfitLossMR.js
View file @
f35dc347
...
...
@@ -155,7 +155,8 @@ export default class ProfitLossMR extends Component {
let
body
=
{
group
:
'THRESHOLD_VARIANCE'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'PNL'
type
:
'PNL'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/container/OutlookPA/BalanceSheetOLPA.js
View file @
f35dc347
...
...
@@ -113,7 +113,8 @@ export default class BalanceSheetOLPA extends Component {
let
body
=
{
group
:
'THRESHOLD_CONTROL'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'BALANCE_SHEET'
type
:
'BALANCE_SHEET'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/container/OutlookPA/CashFlowOLPA.js
View file @
f35dc347
...
...
@@ -108,7 +108,8 @@ export default class CashFlow extends Component {
let
body
=
{
group
:
'THRESHOLD_CONTROL'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'CASH_FLOW'
type
:
'CASH_FLOW'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/container/OutlookPA/CorporateAnnualTargetOLPA.js
View file @
f35dc347
...
...
@@ -257,7 +257,8 @@ export default class CorporateAnnualTargetRO extends Component {
let
body
=
{
group
:
'CAT'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'KPI_TYPE'
type
:
'KPI_TYPE'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
// console.log(response)
...
...
@@ -302,7 +303,8 @@ export default class CorporateAnnualTargetRO extends Component {
let
body
=
{
group
:
'CAT'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'MAX_ACHIEVEMENT'
type
:
'MAX_ACHIEVEMENT'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
if
(
response
.
data
)
{
...
...
This diff is collapsed.
Click to expand it.
src/container/OutlookPA/TaxPlanningOLPA.js
View file @
f35dc347
...
...
@@ -115,7 +115,8 @@ export default class TaxPlanningOLPA extends Component {
let
body
=
{
group
:
'THRESHOLD_CONTROL'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'TAX_PLANNING'
type
:
'TAX_PLANNING'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/container/RollingOutlook/BalanceSheetRO.js
View file @
f35dc347
...
...
@@ -118,7 +118,8 @@ export default class BalanceSheetRO extends Component {
let
body
=
{
group
:
'THRESHOLD_CONTROL'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'BALANCE_SHEET'
type
:
'BALANCE_SHEET'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/container/RollingOutlook/CashFlowRO.js
View file @
f35dc347
...
...
@@ -108,7 +108,8 @@ export default class CashFlow extends Component {
let
body
=
{
group
:
'THRESHOLD_CONTROL'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'CASH_FLOW'
type
:
'CASH_FLOW'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
src/container/RollingOutlook/CorporateAnnualTargetRO.js
View file @
f35dc347
...
...
@@ -261,7 +261,8 @@ export default class CorporateAnnualTargetRO extends Component {
let
body
=
{
group
:
'CAT'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'KPI_TYPE'
type
:
'KPI_TYPE'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
// console.log(response)
...
...
@@ -306,7 +307,8 @@ export default class CorporateAnnualTargetRO extends Component {
let
body
=
{
group
:
'CAT'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'MAX_ACHIEVEMENT'
type
:
'MAX_ACHIEVEMENT'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
if
(
response
.
data
)
{
...
...
This diff is collapsed.
Click to expand it.
src/container/RollingOutlook/TaxPlanningRO.js
View file @
f35dc347
...
...
@@ -115,7 +115,8 @@ export default class TaxPlanning extends Component {
let
body
=
{
group
:
'THRESHOLD_CONTROL'
,
company_id
:
this
.
props
.
company
.
company_id
,
type
:
'TAX_PLANNING'
type
:
'TAX_PLANNING'
,
currency_id
:
this
.
props
.
defaultCurrency
.
id
,
}
api
.
create
().
getAllSettingByType
(
body
).
then
(
response
=>
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment