Merge branch 'dev' of https://git.jetbrains.space/nalpari/q-cast-iii/qcast-front into dev
This commit is contained in:
commit
7ec52bb1f2
36
docs/2025-02-13_Qcell_회의.txt
Normal file
36
docs/2025-02-13_Qcell_회의.txt
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
1. 회로할당 ->
|
||||||
|
수동 할당시 와트수 소수점 노출
|
||||||
|
|
||||||
|
2. 모듈 ->
|
||||||
|
멀티 모듈일시 모듈 순번에 따라 배치면 그리기 적용해야됨
|
||||||
|
멀티 모듈시 모듈 간격 붙여서 조정
|
||||||
|
|
||||||
|
3. contextMenu ->
|
||||||
|
한번 클릭 후 contextMenu 호출 재호출시 화면에 안나옴
|
||||||
|
|
||||||
|
4. 수치 입력시 ->
|
||||||
|
반각?전각? 입력 처리 필요????????????????
|
||||||
|
|
||||||
|
5. 지도 호출 ->
|
||||||
|
최초 호출 후 삭제, 재호출 안됨
|
||||||
|
|
||||||
|
6. 도면 화면 ->
|
||||||
|
redo, undo 제거
|
||||||
|
|
||||||
|
7. 모든 배치면 ->
|
||||||
|
배치면 외각선 굵기 조절
|
||||||
|
|
||||||
|
8. 패브릭 캔버스 ->
|
||||||
|
줌, 확대 기능 선택 오류 수정 필요
|
||||||
|
|
||||||
|
9. 모듈선택 ->
|
||||||
|
모듈 선택 페이지 단계 변경 예정정(현업 화면에 너무 크게 적용)
|
||||||
|
|
||||||
|
10. 외벽선 삭제시 수치 삭제 처리 필요
|
||||||
|
|
||||||
|
11. 모듈 삭제 후 재 설치시 모듈이 겹친다고 오류남
|
||||||
|
|
||||||
|
12. 모듈 수동시 첫번째는 아무데나 놓을 수 있고 두번째 부터는 무조건 주변에 모듈이 있어야 한다는 조건이 있어야 한다고 함
|
||||||
|
|
||||||
|
13. 견적서 다운로드 이미지 정비율이 아님
|
||||||
|
|
||||||
10
docs/2025-02-14_Qcell_회의.txt
Normal file
10
docs/2025-02-14_Qcell_회의.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
1. 오픈 예정일정 -> 신상품 7월에 오픈 그와 같이 하는게 어떻냐?
|
||||||
|
|
||||||
|
2. 웹 상에서 단축키 모드 추가
|
||||||
|
|
||||||
|
3. 형이동 동선이동 작업 해보겠다.
|
||||||
|
|
||||||
|
4. 모듈 작업 확정 (좌하, 우상)
|
||||||
|
|
||||||
|
5. 발전 시뮬레이션 qsp에 이관 작업(유지보수)
|
||||||
|
|
||||||
@ -40,7 +40,7 @@ export default function QContextMenu(props) {
|
|||||||
if (!contextRef.current) return
|
if (!contextRef.current) return
|
||||||
|
|
||||||
const handleContextMenu = (e) => {
|
const handleContextMenu = (e) => {
|
||||||
// e.preventDefault() //기존 contextmenu 막고
|
e.preventDefault() //기존 contextmenu 막고
|
||||||
if (tempGridMode) return
|
if (tempGridMode) return
|
||||||
const position = {
|
const position = {
|
||||||
x: window.innerWidth / 2 < e.pageX ? e.pageX - 240 : e.pageX,
|
x: window.innerWidth / 2 < e.pageX ? e.pageX - 240 : e.pageX,
|
||||||
|
|||||||
@ -384,7 +384,12 @@ export default function CircuitTrestleSetting({ id }) {
|
|||||||
obj.pcsItemId = null
|
obj.pcsItemId = null
|
||||||
obj.circuitNumber = null
|
obj.circuitNumber = null
|
||||||
})
|
})
|
||||||
setSelectedModels(JSON.parse(JSON.stringify(selectedModels)).map((model) => (model.isUsed = false)))
|
setSelectedModels(
|
||||||
|
JSON.parse(JSON.stringify(selectedModels)).map((model) => {
|
||||||
|
model.isUsed = false
|
||||||
|
return model
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
if (allocationType === ALLOCATION_TYPE.PASSIVITY) {
|
if (allocationType === ALLOCATION_TYPE.PASSIVITY) {
|
||||||
setAllocationType(ALLOCATION_TYPE.AUTO)
|
setAllocationType(ALLOCATION_TYPE.AUTO)
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user