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
8d32f088
Commit
8d32f088
authored
Aug 28, 2020
by
Deni Rinaldi
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'faisal' into 'master'
fixed issue company See merge request
!202
parents
6fb1eefd
d742784c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
135 additions
and
87 deletions
+135
-87
CreatePerusahaan.js
src/container/MasterData/Perusahaan/CreatePerusahaan.js
+113
-76
VisualPerusahaan.js
src/container/MasterData/Perusahaan/VisualPerusahaan.js
+22
-11
No files found.
src/container/MasterData/Perusahaan/CreatePerusahaan.js
View file @
8d32f088
import
React
,
{
Component
}
from
'react'
;
import
React
,
{
Component
}
from
'react'
;
import
{
TextField
,
Typography
}
from
'@material-ui/core'
;
import
{
TextField
,
Typography
,
withStyles
,
Snackbar
}
from
'@material-ui/core'
;
import
*
as
R
from
'ramda'
;
import
*
as
R
from
'ramda'
;
import
{
Date
TimePicker
,
KeyboardDatePicker
,
Date
Picker
}
from
"@material-ui/pickers"
;
import
{
DatePicker
}
from
"@material-ui/pickers"
;
import
format
from
"date-fns/format"
;
import
format
from
"date-fns/format"
;
import
Autocomplete
from
'@material-ui/lab/Autocomplete'
;
import
Autocomplete
from
'@material-ui/lab/Autocomplete'
;
import
MuiAlert
from
'@material-ui/lab/Alert'
;
import
api
from
'../../../api'
;
import
api
from
'../../../api'
;
import
Images
from
'../../../assets/Images'
;
import
Images
from
'../../../assets/Images'
;
const
Alert
=
withStyles
({
})((
props
)
=>
<
MuiAlert
elevation
=
{
6
}
variant
=
"filled"
{...
props
}
/>
)
;
export
default
class
CreatePerusahaan
extends
Component
{
export
default
class
CreatePerusahaan
extends
Component
{
constructor
(
props
)
{
constructor
(
props
)
{
super
(
props
)
super
(
props
)
...
@@ -35,7 +39,10 @@ export default class CreatePerusahaan extends Component {
...
@@ -35,7 +39,10 @@ export default class CreatePerusahaan extends Component {
msgErrorSD
:
''
,
msgErrorSD
:
''
,
msgErrorED
:
''
,
msgErrorED
:
''
,
msgErrorJL
:
''
,
msgErrorJL
:
''
,
msgErrorUB
:
''
msgErrorUB
:
''
,
alert
:
false
,
tipeAlert
:
''
,
messageAlert
:
''
,
}
}
}
}
...
@@ -45,7 +52,7 @@ export default class CreatePerusahaan extends Component {
...
@@ -45,7 +52,7 @@ export default class CreatePerusahaan extends Component {
}
}
componentDidMount
()
{
componentDidMount
()
{
this
.
get
ParentCompany
()
this
.
get
CompanyActive
()
this
.
getAllUnitBisnis
()
this
.
getAllUnitBisnis
()
if
(
this
.
props
.
type
===
'edit'
)
{
if
(
this
.
props
.
type
===
'edit'
)
{
this
.
getDetailPerusahaan
()
this
.
getDetailPerusahaan
()
...
@@ -62,8 +69,9 @@ export default class CreatePerusahaan extends Component {
...
@@ -62,8 +69,9 @@ export default class CreatePerusahaan extends Component {
getDetailPerusahaan
()
{
getDetailPerusahaan
()
{
api
.
create
().
getDetailPerusahaan
(
this
.
props
.
data
[
1
]).
then
(
response
=>
{
api
.
create
().
getDetailPerusahaan
(
this
.
props
.
data
[
1
]).
then
(
response
=>
{
console
.
log
(
response
)
if
(
response
.
data
)
{
if
(
response
.
data
.
status
===
"success"
)
{
if
(
response
.
data
.
status
===
"success"
)
{
console
.
log
(
response
);
this
.
setState
({
this
.
setState
({
businessID
:
response
.
data
.
data
.
business_unit_id
,
businessID
:
response
.
data
.
data
.
business_unit_id
,
companyID
:
response
.
data
.
data
.
company_id
,
companyID
:
response
.
data
.
data
.
company_id
,
...
@@ -77,12 +85,24 @@ export default class CreatePerusahaan extends Component {
...
@@ -77,12 +85,24 @@ export default class CreatePerusahaan extends Component {
created
:
response
.
data
.
data
.
created
,
created
:
response
.
data
.
data
.
created
,
updated
:
response
.
data
.
data
.
updated
===
null
?
""
:
response
.
data
.
data
.
updated
updated
:
response
.
data
.
data
.
updated
===
null
?
""
:
response
.
data
.
data
.
updated
},
()
=>
this
.
getAllUnitBisnis
(),
this
.
getCompanyActive
())
},
()
=>
this
.
getAllUnitBisnis
(),
this
.
getCompanyActive
())
}
else
{
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
data
.
message
,
tipeAlert
:
'warning'
})
}
}
else
{
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
problem
,
tipeAlert
:
'error'
})
}
}
})
})
}
}
getCompanyActive
()
{
getCompanyActive
()
{
api
.
create
().
getPerusahaanActive
().
then
(
response
=>
{
if
(
this
.
state
.
company
!==
null
)
{
console
.
log
(
this
.
state
.
company
)
let
payload
=
{
"company_id"
:
this
.
state
.
company
.
company_id
}
api
.
create
().
getPerusahaanActive
(
payload
).
then
(
response
=>
{
console
.
log
(
response
)
if
(
response
.
data
)
{
if
(
response
.
data
.
status
==
'success'
)
{
if
(
response
.
data
.
status
==
'success'
)
{
let
data
=
response
.
data
.
data
let
data
=
response
.
data
.
data
let
perusahaanData
=
data
.
map
((
item
)
=>
{
let
perusahaanData
=
data
.
map
((
item
)
=>
{
...
@@ -98,13 +118,18 @@ export default class CreatePerusahaan extends Component {
...
@@ -98,13 +118,18 @@ export default class CreatePerusahaan extends Component {
};
};
this
.
setState
({
perusahaan
:
typeProps
,
perusahaanData
:
response
.
data
.
data
,
getPerusahaan
:
index
==
-
1
?
null
:
perusahaanData
[
index
]
})
this
.
setState
({
perusahaan
:
typeProps
,
perusahaanData
:
response
.
data
.
data
,
getPerusahaan
:
index
==
-
1
?
null
:
perusahaanData
[
index
]
})
}
else
{
}
else
{
alert
(
response
.
data
.
message
)
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
data
.
message
,
tipeAlert
:
'warning'
})
}
}
else
{
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
problem
,
tipeAlert
:
'error'
})
}
}
})
})
}
}
}
getAllUnitBisnis
()
{
getAllUnitBisnis
()
{
api
.
create
().
getUnitBisnisActive
().
then
(
response
=>
{
api
.
create
().
getUnitBisnisActive
().
then
(
response
=>
{
if
(
response
.
data
)
{
if
(
response
.
data
.
status
===
'success'
)
{
if
(
response
.
data
.
status
===
'success'
)
{
let
data
=
response
.
data
.
data
let
data
=
response
.
data
.
data
let
typeData
=
data
.
map
((
item
)
=>
{
let
typeData
=
data
.
map
((
item
)
=>
{
...
@@ -122,32 +147,35 @@ export default class CreatePerusahaan extends Component {
...
@@ -122,32 +147,35 @@ export default class CreatePerusahaan extends Component {
};
};
this
.
setState
({
types
:
typeProps
,
typeData
:
response
.
data
.
data
,
getTypes
:
index
==
-
1
?
null
:
typeData
[
index
]
})
this
.
setState
({
types
:
typeProps
,
typeData
:
response
.
data
.
data
,
getTypes
:
index
==
-
1
?
null
:
typeData
[
index
]
})
}
else
{
}
else
{
alert
(
response
.
data
.
message
)
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
data
.
message
,
tipeAlert
:
'warning'
}
)
}
}
})
}
getParentCompany
()
{
api
.
create
().
getPerusahaanActive
().
then
((
response
)
=>
{
if
(
response
.
data
.
status
===
'success'
)
{
let
data
=
response
.
data
.
data
let
typeData
=
data
.
map
((
item
)
=>
{
return
{
company_id
:
item
.
company_id
,
company_name
:
item
.
company_name
}
})
let
typeProps
=
{
options
:
typeData
.
sort
((
a
,
b
)
=>
a
.
company_id
-
b
.
company_id
),
getOptionLabel
:
(
option
)
=>
option
.
company_name
,
};
this
.
setState
({
perusahaan
:
typeProps
,
perusahaanData
:
response
.
data
.
data
})
}
else
{
}
else
{
alert
(
response
.
data
.
message
)
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
problem
,
tipeAlert
:
'error'
}
)
}
}
})
})
}
}
// getParentCompany() {
// api.create().getPerusahaanActive().then((response) => {
// if (response.data.status === 'success') {
// let data = response.data.data
// let typeData = data.map((item) => {
// return {
// company_id: item.company_id,
// company_name: item.company_name
// }
// })
// let typeProps = {
// options: typeData.sort((a, b) => a.company_id - b.company_id),
// getOptionLabel: (option) => option.company_name,
// };
// this.setState({ perusahaan: typeProps, perusahaanData: response.data.data })
// } else {
// alert(response.data.message)
// }
// })
// }
handleChange
(
e
,
type
)
{
handleChange
(
e
,
type
)
{
let
data
=
this
.
state
let
data
=
this
.
state
let
isDate
=
type
!==
''
?
true
:
false
let
isDate
=
type
!==
''
?
true
:
false
...
@@ -229,9 +257,18 @@ export default class CreatePerusahaan extends Component {
...
@@ -229,9 +257,18 @@ export default class CreatePerusahaan extends Component {
}
}
}
}
closeAlert
()
{
this
.
setState
({
alert
:
false
})
}
renderEdit
()
{
renderEdit
()
{
return
(
return
(
<
div
className
=
"test app-popup-show"
>
<
div
className
=
"test app-popup-show"
>
<
Snackbar
open
=
{
this
.
state
.
alert
}
autoHideDuration
=
{
6000
}
onClose
=
{()
=>
this
.
closeAlert
()}
>
<
Alert
onClose
=
{()
=>
this
.
closeAlert
()}
severity
=
{
this
.
state
.
tipeAlert
}
>
{
this
.
state
.
messageAlert
}
<
/Alert
>
<
/Snackbar
>
<
div
className
=
"popup-content background-white border-radius"
style
=
{{
borderRadius
:
8
}}
>
<
div
className
=
"popup-content background-white border-radius"
style
=
{{
borderRadius
:
8
}}
>
<
div
className
=
"popup-panel grid grid-2x main-color"
style
=
{{
height
:
64
,
borderTopRightRadius
:
8
,
borderTopLeftRadius
:
8
}}
>
<
div
className
=
"popup-panel grid grid-2x main-color"
style
=
{{
height
:
64
,
borderTopRightRadius
:
8
,
borderTopLeftRadius
:
8
}}
>
<
div
className
=
"col-1"
style
=
{{
maxWidth
:
"inherit"
,
display
:
'flex'
,
alignItems
:
'center'
}}
>
<
div
className
=
"col-1"
style
=
{{
maxWidth
:
"inherit"
,
display
:
'flex'
,
alignItems
:
'center'
}}
>
...
...
src/container/MasterData/Perusahaan/VisualPerusahaan.js
View file @
8d32f088
import
React
,
{
Component
}
from
'react'
;
import
React
,
{
Component
}
from
'react'
;
import
{
Container
,
Row
,
Col
}
from
"react-bootstrap"
;
import
{
Container
,
Row
,
Col
}
from
"react-bootstrap"
;
import
{
makeStyles
,
createMuiTheme
,
MuiThemeProvider
}
from
'@material-ui/core/styles'
;
import
{
Typography
,
withStyles
,
Snackbar
}
from
'@material-ui/core'
;
import
{
TextField
}
from
'@material-ui/core'
;
import
MenuItem
from
'@material-ui/core/MenuItem'
;
import
Perusahaan
from
"./Perusahaan"
;
import
Perusahaan
from
"./Perusahaan"
;
import
TreeView
from
'@material-ui/lab/TreeView'
;
import
MuiAlert
from
'@material-ui/lab/Alert'
;
import
ExpandMoreIcon
from
'@material-ui/icons/ExpandMore'
;
import
ChevronRightIcon
from
'@material-ui/icons/ChevronRight'
;
import
TreeItem
from
'@material-ui/lab/TreeItem'
;
import
Nestable
from
'react-nestable/dist/Nestable'
;
import
Nestable
from
'react-nestable/dist/Nestable'
;
import
AddIcon
from
'@material-ui/icons/Add'
;
import
AddIcon
from
'@material-ui/icons/Add'
;
import
RemoveIcon
from
'@material-ui/icons/Remove'
;
import
RemoveIcon
from
'@material-ui/icons/Remove'
;
import
api
from
'../../../api'
;
import
api
from
'../../../api'
;
const
Alert
=
withStyles
({
})((
props
)
=>
<
MuiAlert
elevation
=
{
6
}
variant
=
"filled"
{...
props
}
/>
)
;
export
default
class
VisualPerusahaan
extends
Component
{
export
default
class
VisualPerusahaan
extends
Component
{
constructor
(
props
)
{
constructor
(
props
)
{
super
(
props
)
super
(
props
)
...
@@ -40,7 +38,10 @@ export default class VisualPerusahaan extends Component {
...
@@ -40,7 +38,10 @@ export default class VisualPerusahaan extends Component {
},
},
],
],
arrayCollapse
:
[],
arrayCollapse
:
[],
defaultCollapsed
:
false
defaultCollapsed
:
false
,
alert
:
false
,
tipeAlert
:
''
,
messageAlert
:
''
,
}
}
}
}
...
@@ -50,9 +51,16 @@ export default class VisualPerusahaan extends Component {
...
@@ -50,9 +51,16 @@ export default class VisualPerusahaan extends Component {
getPerusahaan
()
{
getPerusahaan
()
{
api
.
create
().
getPerusahaanHierarki
().
then
((
response
)
=>
{
api
.
create
().
getPerusahaanHierarki
().
then
((
response
)
=>
{
console
.
log
(
response
)
if
(
response
.
data
)
{
if
(
response
.
data
.
status
==
'success'
)
{
if
(
response
.
data
.
status
==
'success'
)
{
this
.
setState
({
items
:
response
.
data
.
data
})
this
.
setState
({
items
:
response
.
data
.
data
})
console
.
log
(
response
.
data
.
data
)
console
.
log
(
response
.
data
.
data
)
}
else
{
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
data
.
message
,
tipeAlert
:
'warning'
})
}
}
else
{
this
.
setState
({
alert
:
true
,
messageAlert
:
response
.
problem
,
tipeAlert
:
'error'
})
}
}
})
})
}
}
...
@@ -98,6 +106,9 @@ export default class VisualPerusahaan extends Component {
...
@@ -98,6 +106,9 @@ export default class VisualPerusahaan extends Component {
)
)
};
};
closeAlert
()
{
this
.
setState
({
alert
:
false
})
}
render
()
{
render
()
{
...
...
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