diff --git a/src/components/floor-plan/modal/setting01/planSize/PlanSizeSetting.jsx b/src/components/floor-plan/modal/setting01/planSize/PlanSizeSetting.jsx
index 10f9adc1..629b45d0 100644
--- a/src/components/floor-plan/modal/setting01/planSize/PlanSizeSetting.jsx
+++ b/src/components/floor-plan/modal/setting01/planSize/PlanSizeSetting.jsx
@@ -46,6 +46,10 @@ export default function PlanSizeSetting(props) {
const changeInput = (value, e) => {
const { name } = e.target
+ if (Number(value) > 100000) {
+ value = 100000
+ }
+
setPlanSizeSettingMode((prev) => {
return {
...prev,
diff --git a/src/components/footer/PromisePopup.jsx b/src/components/footer/PromisePopup.jsx
new file mode 100644
index 00000000..feb400e1
--- /dev/null
+++ b/src/components/footer/PromisePopup.jsx
@@ -0,0 +1,71 @@
+import React, { useEffect } from 'react'
+import { popSpinnerState, promisePopupState } from '@/store/popupAtom'
+import { useRecoilState } from 'recoil'
+import WithDraggable from '../common/draggable/WithDraggable'
+import { useMessage } from '@/hooks/useMessage'
+
+export default function PromisePopup() {
+ const { getMessage } = useMessage()
+ const [promisePopupStore, setPromisePopupStore] = useRecoilState(promisePopupState)
+ const [popSpinnerStore, setPopSpinnerStore] = useRecoilState(popSpinnerState)
+
+ const handleSpinner = () => {
+ setPopSpinnerStore(true)
+ setTimeout(() => {
+ setPopSpinnerStore(false)
+ }, 1000)
+ }
+
+ return (
+
+ setPromisePopupStore(false)} />
+
+
+
+ {getMessage('modal.image.load.size.rotate')}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
diff --git a/src/components/management/StuffDetail.jsx b/src/components/management/StuffDetail.jsx
index b5020d5b..9f9dfdbf 100644
--- a/src/components/management/StuffDetail.jsx
+++ b/src/components/management/StuffDetail.jsx
@@ -283,17 +283,17 @@ export default function StuffDetail() {
autoHeight: true,
cellStyle: { justifyContent: 'center' },
cellRenderer: (params) => {
- let buttonStyle = ''
- let buttonStyle2 = ''
+ let estimateDetailButtonStyle = ''
+ let docDownButtonStyle = ''
if (params.value == null) {
- buttonStyle = 'none'
- buttonStyle2 = 'none'
+ estimateDetailButtonStyle = 'none'
+ docDownButtonStyle = 'none'
} else {
if (params?.data?.createSaleStoreId === 'T01' && session?.storeId !== 'T01') {
- buttonStyle = 'none'
+ estimateDetailButtonStyle = 'none'
}
if (params?.data?.tempFlg === '1' || !params?.data?.docNo) {
- buttonStyle2 = 'none'
+ docDownButtonStyle = 'none'
}
}
@@ -301,7 +301,7 @@ export default function StuffDetail() {
<>