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
0402a3cf
Commit
0402a3cf
authored
Sep 16, 2020
by
EKSAD
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://103.44.149.204/d.arizona/tia-dev
into riri
parents
9dfaf10a
56a6e542
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
2608 additions
and
1508 deletions
+2608
-1508
index.js
src/api/index.js
+3
-1
BalanceSheet.js
src/container/BudgetTahunan/BalanceSheet.js
+415
-140
ProfitLoss.js
src/container/BudgetTahunan/ProfitLoss.js
+16
-1
TaxPlanning.js
src/container/BudgetTahunan/TaxPlanning.js
+2158
-1349
CreateManagementDoc.js
src/container/DocumentManagement/CreateManagementDoc.js
+3
-3
DocumentManagement.js
src/container/DocumentManagement/DocumentManagement.js
+1
-3
ManualBookTia.js
src/container/DocumentManagement/ManualBookTia.js
+2
-1
QReview.js
src/container/DocumentManagement/QReview.js
+6
-6
Upload.js
src/library/Upload.js
+4
-4
No files found.
src/api/index.js
View file @
0402a3cf
...
...
@@ -168,6 +168,7 @@ const create = (baseURL = 'https://tia.eksad.com/tia-reporting-dev/public/') =>
const
getDetailReportMB
=
(
body
)
=>
api
.
post
(
'/transaction/master_budget/get_report_hierarki'
,
body
)
const
createSubmitReport
=
(
body
)
=>
api
.
post
(
'transaction/master_budget/create_submission_report'
,
body
)
const
getSubmission
=
(
body
)
=>
api
.
post
(
'transaction/get_submission_id'
,
body
)
const
checkUploadMB
=
(
body
)
=>
api
.
post
(
'transaction/master_budget/check_import'
,
body
)
//Template
const
downloadTemplate
=
(
fileName
,
fileType
)
=>
api
.
get
(
`attachment/download_file?fileName=
${
fileName
}
&&fileType=
${
fileType
}
`
)
...
...
@@ -291,7 +292,8 @@ const create = (baseURL = 'https://tia.eksad.com/tia-reporting-dev/public/') =>
updateDocument
,
downloadDocument
,
createSubmitReport
,
getSubmission
getSubmission
,
checkUploadMB
}
}
...
...
src/container/BudgetTahunan/BalanceSheet.js
View file @
0402a3cf
This diff is collapsed.
Click to expand it.
src/container/BudgetTahunan/ProfitLoss.js
View file @
0402a3cf
...
...
@@ -777,6 +777,21 @@ export default class ProfitLoss extends Component {
this
.
props
.
onClickClose
()
}
downloadTemplate
=
async
()
=>
{
let
res
=
await
fetch
(
`https://tia.eksad.com/tia-reporting-dev/public/transaction/master_budget/download_template?report_id=
${
this
.
props
.
report_id
}
&&company_id=
${
this
.
props
.
company
.
company_id
}
&&year=
${
this
.
props
.
periode
}
`
)
res
=
await
res
.
blob
()
console
.
log
(
res
)
if
(
res
.
size
>
0
)
{
let
url
=
window
.
URL
.
createObjectURL
(
res
);
let
a
=
document
.
createElement
(
'a'
);
a
.
href
=
url
;
a
.
download
=
'Template Profit Loss.xlsx'
;
a
.
click
();
}
}
render
()
{
let
dataTable2
=
this
.
state
.
dataTable
const
handleChange
=
(
value
,
tableMeta
)
=>
{
...
...
@@ -2357,7 +2372,7 @@ export default class ProfitLoss extends Component {
borderColor
:
'transparent'
,
margin
:
5
}}
onClick
=
{()
=>
null
}
onClick
=
{()
=>
this
.
downloadTemplate
()
}
>
<
img
src
=
{
Images
.
template
}
/
>
<
/button
>
...
...
src/container/BudgetTahunan/TaxPlanning.js
View file @
0402a3cf
This diff is collapsed.
Click to expand it.
src/container/DocumentManagement/CreateManagementDoc.js
View file @
0402a3cf
...
...
@@ -168,11 +168,11 @@ export default class CreateManagementDoc extends Component {
validasi
()
{
if
(
R
.
isNil
(
this
.
state
.
getPerusahaan
))
{
this
.
setState
({
errorPerusahaan
:
true
,
msgErrorPerusahaan
:
'Company Cannot be Empty
.
'
})
this
.
setState
({
errorPerusahaan
:
true
,
msgErrorPerusahaan
:
'Company Cannot be Empty'
})
}
else
if
(
R
.
isNil
(
this
.
state
.
getDocument
))
{
this
.
setState
({
errorDocument
:
true
,
msgErrorDocument
:
'Category Cannot be Empty
.
'
})
this
.
setState
({
errorDocument
:
true
,
msgErrorDocument
:
'Category Cannot be Empty'
})
}
else
if
(
R
.
isNil
(
this
.
state
.
file
))
{
this
.
setState
({
alert
:
true
,
messageAlert
:
'File Cannot be Empty
.
'
,
tipeAlert
:
'warning'
})
this
.
setState
({
alert
:
true
,
messageAlert
:
'File Cannot be Empty'
,
tipeAlert
:
'warning'
})
}
else
{
const
formData
=
new
FormData
();
formData
.
append
(
"file"
,
this
.
state
.
file
);
...
...
src/container/DocumentManagement/DocumentManagement.js
View file @
0402a3cf
...
...
@@ -162,9 +162,7 @@ export default class DocumentManagement extends Component {
onClick
=
{()
=>
this
.
setState
({
visibleCreate
:
true
,
refresh
:
''
})}
style
=
{{
marginRight
:
25
}}
>
<
div
style
=
{{
width
:
150
,
height
:
30
,
backgroundColor
:
'#354960'
,
borderRadius
:
5
,
alignItems
:
'center'
,
display
:
'flex'
,
justifyContent
:
'center'
}}
>
<
span
style
=
{{
color
:
'#fff'
,
fontSize
:
11
}}
>
Add
<
/span
>
<
/div
>
<
img
src
=
{
Images
.
add
}
/
>
<
/button
>
<
/div
>
<
div
style
=
{{
display
:
'flex'
}}
>
...
...
src/container/DocumentManagement/ManualBookTia.js
View file @
0402a3cf
...
...
@@ -15,7 +15,8 @@ export default class ManualBookTia extends Component {
this
.
state
=
{
dataTable
:
[],
visibleCreate
:
false
,
refresh
:
''
refresh
:
''
,
alert
:
false
,
}
}
...
...
src/container/DocumentManagement/QReview.js
View file @
0402a3cf
...
...
@@ -23,7 +23,8 @@ export default class QReview extends Component {
this
.
state
=
{
dataTable
:
[],
visibleCreate
:
false
,
refresh
:
''
refresh
:
''
,
alert
:
false
,
}
}
...
...
@@ -47,9 +48,6 @@ export default class QReview extends Component {
api
.
create
().
getAllDocument
(
payload
).
then
((
response
)
=>
{
console
.
log
(
response
)
if
(
response
.
problem
){
alert
(
response
.
problem
)
}
if
(
response
.
data
)
{
if
(
response
.
ok
)
{
if
(
response
.
data
.
status
==
'success'
)
{
...
...
@@ -94,7 +92,6 @@ export default class QReview extends Component {
openPopUp
=
async
(
index
,
val
,
type
)
=>
{
if
(
type
===
'download'
)
{
console
.
log
(
this
.
state
.
docPath
[
val
])
let
res
=
await
fetch
(
"https://tia.eksad.com/tia-reporting-dev/public/document/download_document?documentName="
+
this
.
state
.
docPath
[
val
]
+
"&&fileType="
+
index
[
5
]
)
...
...
@@ -110,6 +107,10 @@ export default class QReview extends Component {
}
}
closeAlert
()
{
this
.
setState
({
alert
:
false
})
}
render
()
{
let
columns
=
[{
name
:
"Action"
,
...
...
@@ -117,7 +118,6 @@ export default class QReview extends Component {
filter
:
false
,
sort
:
false
,
customBodyRender
:
(
val
,
tableMeta
)
=>
{
console
.
log
(
tableMeta
)
return
(
<
div
style
=
{{
display
:
'flex'
}}
>
{
/* {this.state.btnedit && <span> */
}
...
...
src/library/Upload.js
View file @
0402a3cf
...
...
@@ -70,7 +70,7 @@ class Upload extends Component {
// alert('File Tidak Boleh Lebih Dari 1MB')
}
}
else
{
this
.
setState
({
alertMessage
:
'File extension not allowed
.
'
,
alert
:
true
})
this
.
setState
({
alertMessage
:
'File extension not allowed'
,
alert
:
true
})
// alert('File Tidak Mendukung')
}
}
...
...
@@ -81,7 +81,7 @@ class Upload extends Component {
uploadProgress
:
false
,
percentage
:
'0'
})
this
.
setState
({
alertMessage
:
"File extension not allowed
.
"
,
alert
:
true
})
this
.
setState
({
alertMessage
:
"File extension not allowed"
,
alert
:
true
})
// alert("Unsupported Media Type")
}
}
else
{
...
...
@@ -105,7 +105,7 @@ class Upload extends Component {
uploadProgress
:
false
,
percentage
:
'0'
})
this
.
setState
({
alertMessage
:
"File extension not allowed
.
"
,
alert
:
true
})
this
.
setState
({
alertMessage
:
"File extension not allowed"
,
alert
:
true
})
// alert("Unsupported Media Type")
}
}
...
...
@@ -154,7 +154,7 @@ class Upload extends Component {
}
}
}
else
{
this
.
setState
({
alertMessage
:
'File extension not allowed
.
'
,
alert
:
true
})
this
.
setState
({
alertMessage
:
'File extension not allowed'
,
alert
:
true
})
// alert('File Tidak Mendukung')
}
}
...
...
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