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
8f79221a
Commit
8f79221a
authored
Sep 22, 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
291a1f4f
9aa6dd57
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1510 additions
and
959 deletions
+1510
-959
index.js
src/api/index.js
+2
-0
FixedAssetsMovement.js
src/container/BudgetTahunan/FixedAssetsMovement.js
+30
-67
TaxPlanning.js
src/container/BudgetTahunan/TaxPlanning.js
+1113
-715
AllDocument.js
src/container/DocumentManagement/AllDocument.js
+7
-1
CreateManagementDoc.js
src/container/DocumentManagement/CreateManagementDoc.js
+69
-12
EditManagementDoc.js
src/container/DocumentManagement/EditManagementDoc.js
+257
-164
Upload.js
src/library/Upload.js
+32
-0
No files found.
src/api/index.js
View file @
8f79221a
...
...
@@ -196,6 +196,7 @@ const create = (type = "") => {
const
checkUploadMB
=
(
body
)
=>
api
.
post
(
'transaction/master_budget/check_import'
,
body
)
const
uploadMasterBudget
=
(
body
)
=>
api
.
post
(
'transaction/master_budget/import_master_budget'
,
body
)
const
validateSubmitReport
=
(
body
)
=>
api
.
post
(
'transaction/master_budget/validate_save'
,
body
)
const
getMonthTransaction
=
()
=>
api
.
get
(
'transaction/get_default_month'
)
const
getOpetratingIndID
=
(
body
)
=>
api
.
post
(
'transaction/get_operating_indicator_id'
,
body
)
const
getAllOperatingInd
=
(
body
)
=>
api
.
post
(
'transaction/get_all_operating_indicator_report'
,
body
)
...
...
@@ -315,6 +316,7 @@ const create = (type = "") => {
getMasterBudgetAtt
,
uploadAttachment
,
getPeriodeTransaction
,
getMonthTransaction
,
getRevision
,
deleteAttachment
,
getDetailReportMB
,
...
...
src/container/BudgetTahunan/FixedAssetsMovement.js
View file @
8f79221a
...
...
@@ -81,7 +81,7 @@ export default class FixedAssetsMovement extends Component {
item
.
formula
,
item
.
level
,
item
.
description
,
item
.
fixed_asset_movement
.
total_actual_before
,
item
.
fixed_asset_movement
.
total_actual_before
===
null
?
"0"
:
item
.
fixed_asset_movement
.
total_actual_before
===
""
?
"0"
:
item
.
fixed_asset_movement
.
total_actual_before
,
item
.
fixed_asset_movement
.
january
,
item
.
fixed_asset_movement
.
february
,
item
.
fixed_asset_movement
.
march
,
...
...
@@ -115,7 +115,7 @@ export default class FixedAssetsMovement extends Component {
item
.
formula
,
item
.
level
,
item
.
description
,
item
.
fixed_asset_movement
.
total_actual_before
,
item
.
fixed_asset_movement
.
total_actual_before
===
null
?
"0"
:
item
.
fixed_asset_movement
.
total_actual_before
===
""
?
"0"
:
item
.
fixed_asset_movement
.
total_actual_before
,
item
.
fixed_asset_movement
.
january
,
item
.
fixed_asset_movement
.
february
,
item
.
fixed_asset_movement
.
march
,
...
...
@@ -402,6 +402,18 @@ export default class FixedAssetsMovement extends Component {
}
}
}
const
handleTotal
=
(
tableMeta
)
=>
{
let
total
=
0
dataTable2
[
tableMeta
.
rowIndex
].
map
((
item
,
index
)
=>
{
if
(
index
>=
7
&&
index
<=
18
)
{
let
valItem
=
item
==
undefined
||
item
==
""
?
0
:
item
total
+=
Number
(
valItem
)
}
})
dataTable2
[
tableMeta
.
rowIndex
][
19
]
=
total
return
total
// console.log(total);
}
const
handleValue
=
(
data
)
=>
{
let
total
=
0
dataTable2
.
map
((
item
,
index
)
=>
{
...
...
@@ -535,6 +547,8 @@ export default class FixedAssetsMovement extends Component {
customBodyRender
:
(
value
,
tableMeta
,
updateValue
)
=>
{
return
(
<
div
style
=
{{
textAlign
:
'right'
}}
>
{
console
.
log
(
tableMeta
)}
{
console
.
log
(
value
)}
{
tableMeta
.
rowData
[
0
]
===
4
?
null
:
...
...
@@ -1637,29 +1651,19 @@ export default class FixedAssetsMovement extends Component {
setCellProps
:
()
=>
({
style2
}),
customBodyRender
:
(
value
,
tableMeta
,
updateValue
)
=>
{
return
(
<
div
style
=
{{
textAlign
:
'right'
}}
>
{
tableMeta
.
rowData
[
0
]
===
3
?
<
div
style
=
{{
flex
:
1
}}
>
<
FormControlLabel
style
=
{{
margin
:
0
}}
value
=
{
value
}
control
=
{
<
div
style
=
{{
width
:
96
,
textAlign
:
'right'
}}
>
{
tableMeta
.
rowData
[
0
]
===
1
||
tableMeta
.
rowData
[
0
]
===
4
?
null
:
tableMeta
.
rowData
[
0
]
===
2
?
<
span
style
=
{{
fontSize
:
12
,
textAlign
:
'right'
}}
>
<
NumberFormat
thousandSeparator
=
{
true
}
style
=
{{
color
:
"#5198ea"
,
fontSize
:
12
,
textAlign
:
'right'
,
borderColor
:
'transparent'
,
margin
:
0
,
width
:
96
,
backgroundColor
:
'transparent'
}}
style
=
{{
fontSize
:
12
,
textAlign
:
'right'
,
borderColor
:
'transparent'
,
margin
:
0
,
width
:
96
,
backgroundColor
:
'transparent'
}}
type
=
"text"
placeholder
=
""
value
=
{
value
}
onBlur
=
{(
event
)
=>
{
// updateValue(event.target.value)
handleChange
(
event
.
target
.
value
,
tableMeta
)
console
.
log
(
dataTable2
)
}}
/
>
}
disabled
=
{
true
}
value
=
{
handleValue
(
tableMeta
)}
/
>
<
/div>
:
tableMeta
.
rowData
[
0
]
===
5
?
<
/span>
:
<
span
style
=
{{
fontSize
:
12
,
textAlign
:
'right'
}}
>
<
NumberFormat
thousandSeparator
=
{
true
}
...
...
@@ -1667,50 +1671,9 @@ export default class FixedAssetsMovement extends Component {
type
=
"text"
placeholder
=
""
disabled
=
{
true
}
value
=
{
handle
Value
(
tableMeta
)}
value
=
{
handle
Total
(
tableMeta
)}
/
>
<
/span
>
:
tableMeta
.
rowData
[
0
]
===
4
?
null
:
tableMeta
.
rowData
[
0
]
===
6
?
// <NumberFormat
// thousandSeparator={true}
// style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
// type="text"
// placeholder=""
// disabled={true}
// value={handleFormula(value, tableMeta)}
// />
null
:
tableMeta
.
rowData
[
0
]
===
5
?
// <NumberFormat
// thousandSeparator={true}
// style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
// type="text"
// placeholder=""
// disabled={true}
// value={handleFormula(value, tableMeta)}
// />
null
:
tableMeta
.
rowData
[
0
]
===
1
?
// value === "" ?
// null :
// <NumberFormat
// thousandSeparator={true}
// style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
// type="text"
// placeholder=""
// disabled={true}
// value={Number(value)}
// />
null
:
null
}
<
/span>
}
<
/div
>
)
}
...
...
src/container/BudgetTahunan/TaxPlanning.js
View file @
8f79221a
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/container/DocumentManagement/AllDocument.js
View file @
8f79221a
...
...
@@ -63,6 +63,7 @@ export default class getAllDocument extends Component {
item
.
document_name
,
item
.
description
,
item
.
company_name
,
item
.
document_month
,
item
.
document_periode
,
item
.
document_type
,
String
(
Number
(
item
.
document_size
)
/
1000
+
' KB'
),
...
...
@@ -200,7 +201,6 @@ export default class getAllDocument extends Component {
filter
:
false
,
sort
:
false
,
customBodyRender
:
(
val
,
tableMeta
)
=>
{
console
.
log
(
tableMeta
)
return
(
<
div
style
=
{{
display
:
'flex'
}}
>
{
/* {this.state.btnedit && <span> */
}
...
...
@@ -258,6 +258,12 @@ export default class getAllDocument extends Component {
}
}
},
"File Name"
,
"Description"
,
"Company Name"
,
{
name
:
"Monthly"
,
options
:
{
display
:
String
(
this
.
props
.
data
.
value
).
includes
(
'Manual Book TIA'
)
?
false
:
true
}
},
{
name
:
"Period"
,
options
:
{
...
...
src/container/DocumentManagement/CreateManagementDoc.js
View file @
8f79221a
...
...
@@ -29,6 +29,8 @@ export default class CreateManagementDoc extends Component {
msgErrorDocument
:
''
,
listPeriode
:
null
,
periode
:
null
,
listMonth
:
null
,
monthId
:
null
,
description
:
''
,
errorDesc
:
false
,
msgErrorDesc
:
''
,
...
...
@@ -46,6 +48,7 @@ export default class CreateManagementDoc extends Component {
this
.
getDataCompany
()
this
.
getDataDocument
()
this
.
getPeriode
()
this
.
getMonth
()
}
getDataCompany
()
{
...
...
@@ -85,13 +88,13 @@ export default class CreateManagementDoc extends Component {
}
getDataDocument
()
{
let
payload
=
{
"setting_group_id"
:
7
,
"setting_type_id"
:
167
,
"company_id"
:
0
//
let payload = {
//
"setting_group_id": 7,
//
"setting_type_id": 167,
//
"company_id": 0
}
api
.
create
().
getDocumentCategory
(
payload
).
then
(
response
=>
{
//
}
api
.
create
().
getDocumentCategory
().
then
(
response
=>
{
console
.
log
(
response
);
if
(
response
.
data
)
{
if
(
response
.
data
.
status
==
'success'
)
{
...
...
@@ -126,6 +129,7 @@ export default class CreateManagementDoc extends Component {
getPeriode
()
{
api
.
create
().
getPeriodeTransaction
().
then
(
response
=>
{
let
dateNow
=
new
Date
console
.
log
(
dateNow
)
let
year
=
format
(
dateNow
,
'yyyy'
)
if
(
response
.
data
)
{
if
(
response
.
data
.
status
===
"success"
)
{
...
...
@@ -146,6 +150,32 @@ export default class CreateManagementDoc extends Component {
})
}
getMonth
(){
api
.
create
().
getMonthTransaction
().
then
(
response
=>
{
let
dateNow
=
new
Date
console
.
log
(
dateNow
)
// let bulan = format(dateNow, 'MMMM')
if
(
response
.
data
)
{
if
(
response
.
data
.
status
===
"success"
)
{
let
data
=
response
.
data
.
data
let
monthData
=
data
.
map
((
item
)
=>
{
return
{
month_id
:
item
.
month_id
,
month_name
:
item
.
month_name
}
})
let
defaultProps
=
{
options
:
monthData
,
getOptionLabel
:
(
option
)
=>
option
.
month_name
,
};
// let index = data.sort((a, b) => a - b).findIndex((val) => val == bulan)
// this.setState({ listMonth: defaultProps, month: index == -1 ? monthData[0] : monthData[index] })
this
.
setState
({
listMonth
:
defaultProps
})
}
}
})
}
clearMessage
()
{
this
.
setState
({
errorPerusahaan
:
false
,
...
...
@@ -171,11 +201,18 @@ export default class CreateManagementDoc extends Component {
}
validasi
()
{
console
.
log
(
this
.
state
.
monthId
.
month_id
)
if
(
R
.
isNil
(
this
.
state
.
getPerusahaan
))
{
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'
})
}
else
if
(
R
.
isNil
(
this
.
state
.
file
))
{
}
// else if (R.isNil(this.state.periode)) {
// this.setState({ errorPeriode: true, msgErrorPeriode: 'Period Cannot be Empty' })
// } else if (R.isNil(this.state.monthId)) {
// this.setState({ errorMonth: true, msgErrorMonth: 'Month Cannot be Empty' })
// }
else
if
(
R
.
isNil
(
this
.
state
.
file
))
{
this
.
setState
({
alert
:
true
,
messageAlert
:
'File Cannot be Empty'
,
tipeAlert
:
'warning'
})
}
else
{
const
formData
=
new
FormData
();
...
...
@@ -183,6 +220,7 @@ export default class CreateManagementDoc extends Component {
formData
.
append
(
"companyId"
,
this
.
state
.
getPerusahaan
.
company_id
);
formData
.
append
(
"settingId"
,
this
.
state
.
getDocument
.
document_category_id
);
formData
.
append
(
"documentPeriode"
,
this
.
state
.
periode
.
periode
);
formData
.
append
(
"documentMonth"
,
this
.
state
.
monthId
.
month_id
);
formData
.
append
(
"description"
,
this
.
state
.
description
);
formData
.
append
(
"extension"
,
this
.
state
.
fileType
);
this
.
setState
({
formData
},
()
=>
{
...
...
@@ -243,20 +281,20 @@ export default class CreateManagementDoc extends Component {
<
div
className
=
"margin-top-10px"
style
=
{{
padding
:
10
,
borderRadius
:
5
}}
>
<
Autocomplete
{...
this
.
state
.
list
Periode
}
{...
this
.
state
.
list
Month
}
// debug
clearOnEscape
id
=
"
periode
"
onChange
=
{(
event
,
newInputValue
)
=>
this
.
setState
({
periode
:
newInputValue
},
()
=>
{
id
=
"
month
"
onChange
=
{(
event
,
newInputValue
)
=>
this
.
setState
({
monthId
:
newInputValue
},
()
=>
{
this
.
clearMessage
()
})}
style
=
{{
width
:
250
}}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"
Period
"
margin
=
"normal"
style
=
{{
marginTop
:
7
}}
<
TextField
{...
params
}
label
=
"
Monthly
"
margin
=
"normal"
style
=
{{
marginTop
:
7
}}
InputProps
=
{{
...
params
.
InputProps
,
style
:
{
fontSize
:
11
}
}}
InputLabelProps
=
{{
style
:
{
fontSize
:
11
,
color
:
'#7e8085'
}
}}
/>
}
value
=
{
this
.
state
.
periode
}
value
=
{
this
.
state
.
monthId
}
/
>
<
/div
>
<
/div
>
...
...
@@ -278,6 +316,25 @@ export default class CreateManagementDoc extends Component {
value
=
{
this
.
state
.
getDocument
}
/
>
<
/div
>
<
div
className
=
"margin-top-10px"
style
=
{{
padding
:
10
,
borderRadius
:
5
}}
>
<
Autocomplete
{...
this
.
state
.
listPeriode
}
// debug
clearOnEscape
id
=
"periode"
onChange
=
{(
event
,
newInputValue
)
=>
this
.
setState
({
periode
:
newInputValue
},
()
=>
{
this
.
clearMessage
()
})}
style
=
{{
width
:
250
}}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"Period"
margin
=
"normal"
style
=
{{
marginTop
:
7
}}
InputProps
=
{{
...
params
.
InputProps
,
style
:
{
fontSize
:
11
}
}}
InputLabelProps
=
{{
style
:
{
fontSize
:
11
,
color
:
'#7e8085'
}
}}
/>
}
value
=
{
this
.
state
.
periode
}
/
>
<
/div
>
<
/div
>
<
/div
>
<
div
style
=
{{
paddingLeft
:
30
,
paddingRight
:
30
}}
>
...
...
src/container/DocumentManagement/EditManagementDoc.js
View file @
8f79221a
...
...
@@ -29,6 +29,8 @@ export default class EditManagementDoc extends Component {
msgErrorDocument
:
''
,
listPeriode
:
null
,
periode
:
null
,
listMonth
:
null
,
monthId
:
null
,
description
:
''
,
errorDesc
:
false
,
msgErrorDesc
:
''
,
...
...
@@ -38,7 +40,10 @@ export default class EditManagementDoc extends Component {
messageAlert
:
''
,
fileType
:
''
,
konfirmasi
:
false
,
docId
:
''
docId
:
''
,
document_name
:
""
,
document_size
:
0
,
loadUpload
:
false
}
}
...
...
@@ -48,7 +53,7 @@ export default class EditManagementDoc extends Component {
}
}
getDetailDoc
(){
getDetailDoc
()
{
api
.
create
().
getDetailDocument
(
this
.
props
.
idoc
).
then
(
response
=>
{
console
.
log
(
response
)
if
(
response
.
data
)
{
...
...
@@ -61,15 +66,21 @@ export default class EditManagementDoc extends Component {
categoryId
:
data
.
setting_id
,
categoryName
:
data
.
values
,
period
:
data
.
document_periode
,
getMonthName
:
data
.
document_month
,
description
:
data
.
description
,
document_name
:
data
.
document_name
,
document_size
:
data
.
document_size
,
// id: data.approval_matrix_id,
// status: data.status,
created
:
data
.
created
,
updated
:
data
.
updated
===
null
?
""
:
data
.
updated
updated
:
data
.
updated
===
null
?
""
:
data
.
updated
,
loadUpload
:
true
},
()
=>
{
this
.
getDataCompany
()
this
.
getDataDocument
()
this
.
getPeriode
()})
this
.
getPeriode
()
this
.
getMonth
()
})
}
else
{
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
data
.
message
,
tipeAlert
:
'warning'
},
()
=>
{
if
(
response
.
data
.
message
.
includes
(
"Someone Logged In"
))
{
...
...
@@ -105,7 +116,7 @@ export default class EditManagementDoc extends Component {
getOptionLabel
:
(
option
)
=>
option
.
company_name
,
};
let
index
=
typeData
.
findIndex
((
val
)
=>
val
.
company_id
==
this
.
state
.
companyId
)
this
.
setState
({
perusahaan
:
typeProps
,
perusahaanData
:
response
.
data
.
data
,
getPerusahaan
:
index
===
-
1
?
typeData
[
0
]:
typeData
[
index
]
})
this
.
setState
({
perusahaan
:
typeProps
,
perusahaanData
:
response
.
data
.
data
,
getPerusahaan
:
index
===
-
1
?
typeData
[
0
]
:
typeData
[
index
]
})
}
else
{
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
data
.
message
,
tipeAlert
:
'warning'
},
()
=>
{
if
(
response
.
data
.
message
.
includes
(
"Someone Logged In"
))
{
...
...
@@ -123,13 +134,13 @@ export default class EditManagementDoc extends Component {
}
getDataDocument
()
{
let
payload
=
{
"setting_group_id"
:
7
,
"setting_type_id"
:
167
,
"company_id"
:
0
//
let payload = {
//
"setting_group_id": 7,
//
"setting_type_id": 167,
//
"company_id": 0
}
api
.
create
().
getDocumentCategory
(
payload
).
then
(
response
=>
{
//
}
api
.
create
().
getDocumentCategory
().
then
(
response
=>
{
console
.
log
(
response
);
if
(
response
.
data
)
{
if
(
response
.
data
.
status
==
'success'
)
{
...
...
@@ -145,7 +156,7 @@ export default class EditManagementDoc extends Component {
getOptionLabel
:
(
option
)
=>
option
.
document_category_name
,
};
let
index
=
typeData
.
findIndex
((
val
)
=>
val
.
document_category_id
==
this
.
state
.
categoryId
)
this
.
setState
({
document
:
typeProps
,
documentData
:
response
.
data
.
data
,
getDocument
:
index
===
-
1
?
typeData
[
0
]
:
typeData
[
index
]
})
this
.
setState
({
document
:
typeProps
,
documentData
:
response
.
data
.
data
,
getDocument
:
index
===
-
1
?
typeData
[
0
]
:
typeData
[
index
]
})
}
else
{
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
data
.
message
,
tipeAlert
:
'warning'
},
()
=>
{
if
(
response
.
data
.
message
.
includes
(
"Someone Logged In"
))
{
...
...
@@ -185,6 +196,31 @@ export default class EditManagementDoc extends Component {
})
}
getMonth
()
{
api
.
create
().
getMonthTransaction
().
then
(
response
=>
{
let
dateNow
=
new
Date
// let bulan = format(dateNow, 'MMMM')
if
(
response
.
data
)
{
if
(
response
.
data
.
status
===
"success"
)
{
let
data
=
response
.
data
.
data
let
monthData
=
data
.
map
((
item
)
=>
{
return
{
month_name
:
item
.
month_name
,
month_id
:
item
.
month_id
}
})
let
index
=
monthData
.
findIndex
((
val
)
=>
val
.
month_name
==
this
.
state
.
getMonthName
)
let
defaultProps
=
{
options
:
monthData
,
getOptionLabel
:
(
option
)
=>
option
.
month_name
,
};
// let index = data.sort((a, b) => a - b).findIndex((val) => val.month_name == this.state.getMonth)
this
.
setState
({
listMonth
:
defaultProps
,
monthId
:
index
==
-
1
?
monthData
[
0
]
:
monthData
[
index
]
})
}
}
})
}
clearMessage
()
{
this
.
setState
({
errorPerusahaan
:
false
,
...
...
@@ -195,6 +231,7 @@ export default class EditManagementDoc extends Component {
}
fileHandler
=
(
event
)
=>
{
console
.
log
(
event
)
let
fileObj
=
event
let
length
=
event
.
name
.
split
(
"."
).
length
let
fileType
=
event
.
name
.
split
(
"."
)[
length
-
1
]
...
...
@@ -222,18 +259,19 @@ export default class EditManagementDoc extends Component {
formData
.
append
(
"file"
,
this
.
state
.
file
);
formData
.
append
(
"companyId"
,
this
.
state
.
getPerusahaan
.
company_id
);
formData
.
append
(
"settingId"
,
this
.
state
.
getDocument
.
document_category_id
);
formData
.
append
(
"documentMonth"
,
this
.
state
.
monthId
.
month_id
);
formData
.
append
(
"documentPeriode"
,
this
.
state
.
periode
.
periode
);
formData
.
append
(
"description"
,
this
.
state
.
description
);
formData
.
append
(
"extension"
,
this
.
state
.
fileType
);
formData
.
append
(
"documentId"
,
this
.
props
.
idoc
);
this
.
setState
({
formData
},
()
=>
{
this
.
setState
({
formData
},
()
=>
{
this
.
props
.
updateDocument
(
this
.
state
.
formData
)
})
}
}
deleteFile
(
e
){
this
.
setState
({
file
:
null
})
deleteFile
(
e
)
{
this
.
setState
({
file
:
null
})
}
closeAlert
()
{
...
...
@@ -284,20 +322,20 @@ export default class EditManagementDoc extends Component {
<
div
className
=
"margin-top-10px"
style
=
{{
padding
:
10
,
borderRadius
:
5
}}
>
<
Autocomplete
{...
this
.
state
.
listPeriode
}
{...
this
.
state
.
listMonth
}
// debug
clearOnEscape
id
=
"periode
"
onChange
=
{(
event
,
newInputValue
)
=>
this
.
setState
({
periode
:
newInputValue
},
()
=>
{
id
=
"month
"
onChange
=
{(
event
,
newInputValue
)
=>
this
.
setState
({
monthId
:
newInputValue
},
()
=>
{
this
.
clearMessage
()
})}
style
=
{{
width
:
250
}}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"Period
"
margin
=
"normal"
style
=
{{
marginTop
:
7
}}
<
TextField
{...
params
}
label
=
"Monthly
"
margin
=
"normal"
style
=
{{
marginTop
:
7
}}
InputProps
=
{{
...
params
.
InputProps
,
style
:
{
fontSize
:
11
}
}}
InputLabelProps
=
{{
style
:
{
fontSize
:
11
,
color
:
'#7e8085'
}
}}
/>
}
value
=
{
this
.
state
.
periode
}
value
=
{
this
.
state
.
monthId
}
/
>
<
/div
>
<
/div
>
...
...
@@ -319,9 +357,29 @@ export default class EditManagementDoc extends Component {
value
=
{
this
.
state
.
getDocument
}
/
>
<
/div
>
<
div
className
=
"margin-top-10px"
style
=
{{
padding
:
10
,
borderRadius
:
5
}}
>
<
Autocomplete
{...
this
.
state
.
listPeriode
}
// debug
clearOnEscape
id
=
"periode"
onChange
=
{(
event
,
newInputValue
)
=>
this
.
setState
({
periode
:
newInputValue
},
()
=>
{
this
.
clearMessage
()
})}
style
=
{{
width
:
250
}}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"Period"
margin
=
"normal"
style
=
{{
marginTop
:
7
}}
InputProps
=
{{
...
params
.
InputProps
,
style
:
{
fontSize
:
11
}
}}
InputLabelProps
=
{{
style
:
{
fontSize
:
11
,
color
:
'#7e8085'
}
}}
/>
}
value
=
{
this
.
state
.
periode
}
/
>
<
/div
>
<
/div
>
<
/div
>
<
div
style
=
{{
paddingLeft
:
30
,
paddingRight
:
30
}}
>
{
this
.
state
.
loadUpload
&&
(
<
UploadFile
type
=
{
this
.
state
.
uploadStatus
}
percentage
=
{
this
.
state
.
percentage
}
...
...
@@ -336,7 +394,42 @@ export default class EditManagementDoc extends Component {
this
.
deleteFile
(
e
)
}}
onUpload
=
{()
=>
alert
(
'sukses'
)}
value
=
{
this
.
state
.
file
}
docSize
=
{
this
.
state
.
document_size
}
docName
=
{
this
.
state
.
document_name
}
/
>
)}
<
/div
>
<
div
className
=
"margin-top-10px"
style
=
{{
paddingLeft
:
30
,
paddingRight
:
30
,
borderRadius
:
5
,
paddingBottom
:
20
}}
>
<
TextField
style
=
{{
width
:
'100%'
}}
id
=
"description"
label
=
"Description"
value
=
{
this
.
state
.
description
}
inputProps
=
{{
min
:
0
,
style
:
{
fontSize
:
11
}
}}
InputLabelProps
=
{{
style
:
{
fontSize
:
11
,
color
:
'#7e8085'
}
}}
name
=
"Description"
onChange
=
{(
e
)
=>
{
this
.
setState
({
description
:
e
.
target
.
value
})
this
.
clearMessage
()
}}
error
=
{
this
.
state
.
errorDesc
}
helperText
=
{
this
.
state
.
msgErrorDesc
}
>
<
/TextField
>
<
/div
>
<
div
className
=
"margin-top-10px"
style
=
{{
paddingLeft
:
30
,
paddingRight
:
30
,
borderRadius
:
5
,
paddingBottom
:
20
}}
>
<
TextField
...
...
src/library/Upload.js
View file @
8f79221a
...
...
@@ -45,6 +45,13 @@ class Upload extends Component {
}
}
componentDidMount
()
{
if
(
this
.
props
.
docName
!==
undefined
&&
this
.
props
.
docName
!==
""
)
{
console
.
log
(
'masuk'
);
this
.
setState
({
docName
:
this
.
props
.
docName
,
docSize
:
this
.
props
.
docSize
,
inputVisible
:
false
,
editVisible
:
true
})
}
}
onDrop
=
(
acceptedFiles
)
=>
{
const
formData
=
new
FormData
()
let
length
=
acceptedFiles
[
0
].
name
.
split
(
"."
).
length
...
...
@@ -116,6 +123,7 @@ class Upload extends Component {
if
(
this
.
props
.
intent
===
"management"
)
{
this
.
setState
({
previewVisible
:
false
,
editVisible
:
false
,
inputVisible
:
true
,
uploadProgress
:
false
,
percentage
:
'0'
...
...
@@ -124,6 +132,7 @@ class Upload extends Component {
}
else
{
this
.
setState
({
previewVisible
:
false
,
editVisible
:
false
,
inputVisible
:
true
,
uploadProgress
:
false
,
percentage
:
'0'
...
...
@@ -187,6 +196,29 @@ class Upload extends Component {
<
/div
>
:
null
}
{
/* edit */
}
{
this
.
state
.
editVisible
?
<
div
className
=
"u-p-file u-p-preview"
>
<
div
className
=
"display-flex-normal"
>
<
div
className
=
"width width-35px"
>
<
button
onClick
=
{
this
.
onRemove
}
className
=
"btn btn-small-circle btn-black"
type
=
"button"
>
<
img
src
=
{
Images
.
close
}
/
>
<
/button
>
<
/div
>
<
div
className
=
"width width-full margin-left-10px"
>
<
div
className
=
"txt-site txt-12 txt-white txt-bold"
>
{
this
.
state
.
docName
}
<
/div
>
<
div
className
=
"txt-site txt-11 txt-white txt-thin"
>
{
this
.
state
.
docSize
}
KB
<
/div
>
<
/div
>
<
/div
>
<
/div
>
:
null
}
{
/* file */
}
{
this
.
state
.
previewVisible
?
...
...
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