Merge branch 'dev' of https://git.hanasys.jp/qcast3/onsitesurvey into feature/suitable
# Conflicts: # src/components/suitable/Suitable.tsx # src/components/suitable/SuitableCheckData.tsx # src/hooks/useSuitable.ts
This commit is contained in:
commit
b8ec659ea2
5
public/assets/images/layout/modal_header_icon04.svg
Normal file
5
public/assets/images/layout/modal_header_icon04.svg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<svg width="19" height="22" viewBox="0 0 19 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M18 8.90909L18 6.81818C18 5.12494 18 4.27832 17.732 3.60214C17.3013 2.5151 16.3902 1.65765 15.2352 1.2522C14.5168 1 13.6173 1 11.8182 0.999999C8.66981 0.999999 7.09563 1 5.83836 1.44135C3.81714 2.15088 2.22282 3.65142 1.46894 5.55375C1 6.73706 1 8.21865 1 11.1818L1 13.7273C1 16.7966 1 18.3313 1.8477 19.3971C2.09058 19.7025 2.37862 19.9736 2.70307 20.2022C3.83546 21 5.46607 21 8.72727 21L9.5 21C10.0347 21 11.0337 21 11.5 20.9972" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M1 11C1 9.15905 2.49238 7.66667 4.33333 7.66667C4.99912 7.66667 5.78404 7.78333 6.43137 7.60988C7.00652 7.45576 7.45576 7.00652 7.60988 6.43136C7.78333 5.78404 7.66667 4.99912 7.66667 4.33333C7.66667 2.49238 9.15905 1 11 1" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M18 15H10.5M18 15C18 15.7002 16.0057 17.0085 15.5 17.5M18 15C18 14.2998 16.0057 12.9915 15.5 12.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
4
public/assets/images/sub/sale_toggle_btn.svg
Normal file
4
public/assets/images/sub/sale_toggle_btn.svg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.5" y="0.5" width="21" height="21" rx="10.5" stroke="#2E3A59"/>
|
||||||
|
<path d="M7 9L11 13L15 9" stroke="#2E3A59" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 288 B |
6
public/assets/images/sub/sale_toggle_btn_white.svg
Normal file
6
public/assets/images/sub/sale_toggle_btn_white.svg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g id="toggle btn">
|
||||||
|
<rect x="0.5" y="0.5" width="21" height="21" rx="10.5" stroke="white"/>
|
||||||
|
<path id="Vector 7412" d="M7 13L11 9L15 13" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 327 B |
22
src/api/auth.ts
Normal file
22
src/api/auth.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
'use server'
|
||||||
|
|
||||||
|
import { sessionOptions } from '@/libs/session'
|
||||||
|
import type { SessionData } from '@/types/Auth'
|
||||||
|
import { getIronSession } from 'iron-session'
|
||||||
|
import { cookies } from 'next/headers'
|
||||||
|
import { redirect } from 'next/navigation'
|
||||||
|
|
||||||
|
export const logout = async () => {
|
||||||
|
const cookieStore = await cookies()
|
||||||
|
const session = await getIronSession<SessionData>(cookieStore, sessionOptions)
|
||||||
|
|
||||||
|
session.destroy()
|
||||||
|
return redirect('/login')
|
||||||
|
}
|
||||||
|
|
||||||
|
export const getSession = async () => {
|
||||||
|
const cookieStore = await cookies()
|
||||||
|
const session = await getIronSession<SessionData>(cookieStore, sessionOptions)
|
||||||
|
|
||||||
|
return session
|
||||||
|
}
|
||||||
107
src/api/suitable.ts
Normal file
107
src/api/suitable.ts
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
import { database } from '@/data'
|
||||||
|
import { axiosInstance } from '@/libs/axios'
|
||||||
|
|
||||||
|
export interface Suitable {
|
||||||
|
id?: number
|
||||||
|
product_name: string
|
||||||
|
manufacturer: string
|
||||||
|
roof_material: string
|
||||||
|
shape: string
|
||||||
|
support_roof_tile: string
|
||||||
|
support_roof_tile_memo: string
|
||||||
|
support_roof_bracket: string
|
||||||
|
support_roof_bracket_memo: string
|
||||||
|
yg_anchor: string
|
||||||
|
yg_anchor_memo: string
|
||||||
|
rg_roof_tile_part: string
|
||||||
|
rg_roof_tile_part_memo: string
|
||||||
|
dido_hunt_support_tile_2: string
|
||||||
|
dido_hunt_support_tile_2_memo: string
|
||||||
|
takashima_power_base: string
|
||||||
|
takashima_power_base_memo: string
|
||||||
|
takashima_tile_bracket: string
|
||||||
|
takashima_tile_bracket_memo: string
|
||||||
|
slate_bracket_4: string
|
||||||
|
slate_bracket_4_memo: string
|
||||||
|
slate_single_metal_bracket: string
|
||||||
|
slate_single_metal_bracket_memo: string
|
||||||
|
dido_hunt_short_rack_4: string
|
||||||
|
dido_hunt_short_rack_4_memo: string
|
||||||
|
takashima_slate_bracket_slate_single: string
|
||||||
|
takashima_slate_bracket_slate_single_memo: string
|
||||||
|
df_metal_bracket: string
|
||||||
|
df_metal_bracket_memo: string
|
||||||
|
slate_metal_bracket: string
|
||||||
|
slate_metal_bracket_memo: string
|
||||||
|
takashima_slate_bracket_metal_roof: string
|
||||||
|
takashima_slate_bracket_metal_roof_memo: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export const suitableApi = {
|
||||||
|
// getList: async (category?: string, keyword?: string): Promise<Suitable[]> => {
|
||||||
|
// let condition: any = {}
|
||||||
|
// if (category) {
|
||||||
|
// condition['category'] = category
|
||||||
|
// }
|
||||||
|
// if (keyword) {
|
||||||
|
// condition['keyword'] = {
|
||||||
|
// contains: keyword,
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// console.log('🚀 ~ getList: ~ condition:', condition)
|
||||||
|
// const response = await axiosInstance(null).get<Suitable[]>('/api/suitable/list', { params: condition })
|
||||||
|
// console.log('🚀 ~ getList: ~ response:', response)
|
||||||
|
// return response.data
|
||||||
|
// },
|
||||||
|
// getCategory: async (): Promise<Suitable[]> => {
|
||||||
|
// const response = await axiosInstance(null).get<Suitable[]>('/api/suitable/category')
|
||||||
|
// console.log('🚀 ~ getCategory: ~ response:', response)
|
||||||
|
// return response.data
|
||||||
|
// },
|
||||||
|
// getDetails: async (roofMaterial: string): Promise<Suitable[]> => {
|
||||||
|
// const response = await axiosInstance(null).get<Suitable[]>(`/api/suitable/details?roof-material=${roofMaterial}`)
|
||||||
|
// console.log('🚀 ~ getDetails: ~ response:', response)
|
||||||
|
// return response.data
|
||||||
|
// },
|
||||||
|
// create: async () => {
|
||||||
|
// const suitableData: Suitable[] = []
|
||||||
|
// database.forEach((item) => {
|
||||||
|
// suitableData.push({
|
||||||
|
// product_name: item[0],
|
||||||
|
// manufacturer: item[1],
|
||||||
|
// roof_material: item[2],
|
||||||
|
// shape: item[3],
|
||||||
|
// support_roof_tile: item[4],
|
||||||
|
// support_roof_tile_memo: item[5],
|
||||||
|
// support_roof_bracket: item[6],
|
||||||
|
// support_roof_bracket_memo: item[7],
|
||||||
|
// yg_anchor: item[8],
|
||||||
|
// yg_anchor_memo: item[9],
|
||||||
|
// rg_roof_tile_part: item[10],
|
||||||
|
// rg_roof_tile_part_memo: item[11],
|
||||||
|
// dido_hunt_support_tile_2: item[12],
|
||||||
|
// dido_hunt_support_tile_2_memo: item[13],
|
||||||
|
// takashima_power_base: item[14],
|
||||||
|
// takashima_power_base_memo: item[15],
|
||||||
|
// takashima_tile_bracket: item[16],
|
||||||
|
// takashima_tile_bracket_memo: item[17],
|
||||||
|
// slate_bracket_4: item[18],
|
||||||
|
// slate_bracket_4_memo: item[19],
|
||||||
|
// slate_single_metal_bracket: item[20],
|
||||||
|
// slate_single_metal_bracket_memo: item[21],
|
||||||
|
// dido_hunt_short_rack_4: item[22],
|
||||||
|
// dido_hunt_short_rack_4_memo: item[23],
|
||||||
|
// takashima_slate_bracket_slate_single: item[24],
|
||||||
|
// takashima_slate_bracket_slate_single_memo: item[25],
|
||||||
|
// df_metal_bracket: item[26],
|
||||||
|
// df_metal_bracket_memo: item[27],
|
||||||
|
// slate_metal_bracket: item[28],
|
||||||
|
// slate_metal_bracket_memo: item[29],
|
||||||
|
// takashima_slate_bracket_metal_roof: item[30],
|
||||||
|
// takashima_slate_bracket_metal_roof_memo: item[31],
|
||||||
|
// })
|
||||||
|
// })
|
||||||
|
// const response = await axiosInstance(null).post<Suitable[]>('/api/suitable', suitableData)
|
||||||
|
// return response.data
|
||||||
|
// },
|
||||||
|
}
|
||||||
127
src/api/surveySales.ts
Normal file
127
src/api/surveySales.ts
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
import { axiosInstance } from '@/libs/axios'
|
||||||
|
|
||||||
|
export interface SurveySalesBasicInfo {
|
||||||
|
id?: number
|
||||||
|
representative: string
|
||||||
|
store: string | null
|
||||||
|
construction_point: string | null
|
||||||
|
investigation_date: string | null
|
||||||
|
building_name: string | null
|
||||||
|
customer_name: string | null
|
||||||
|
post_code: string | null
|
||||||
|
address: string | null
|
||||||
|
address_detail: string | null
|
||||||
|
submission_status: boolean
|
||||||
|
submission_date?: string | null
|
||||||
|
detail_info?: SurveySalesDetailInfo | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SurveySalesDetailInfo {
|
||||||
|
id?: number
|
||||||
|
contract_capacity: string | null
|
||||||
|
retail_company: string | null
|
||||||
|
supplementary_facilities: number | null
|
||||||
|
supplementary_facilities_etc: string | null
|
||||||
|
installation_system: number | null
|
||||||
|
installation_system_etc: string | null
|
||||||
|
construction_year: number | null
|
||||||
|
construction_year_etc: string | null
|
||||||
|
roof_material: number | null
|
||||||
|
roof_material_etc: string | null
|
||||||
|
roof_shape: number | null
|
||||||
|
roof_shape_etc: string | null
|
||||||
|
roof_slope: string | null
|
||||||
|
house_structure: number | null
|
||||||
|
house_structure_etc: string | null
|
||||||
|
rafter_material: number | null
|
||||||
|
rafter_material_etc: string | null
|
||||||
|
rafter_size: number | null
|
||||||
|
rafter_size_etc: string | null
|
||||||
|
rafter_pitch: number | null
|
||||||
|
rafter_pitch_etc: string | null
|
||||||
|
rafter_direction: number | null
|
||||||
|
open_field_plate_kind: number | null
|
||||||
|
open_field_plate_kind_etc: string | null
|
||||||
|
open_field_plate_thickness: string | null
|
||||||
|
leak_trace: boolean | null
|
||||||
|
waterproof_material: number | null
|
||||||
|
waterproof_material_etc: string | null
|
||||||
|
insulation_presence: number | null
|
||||||
|
insulation_presence_etc: string | null
|
||||||
|
structure_order: number | null
|
||||||
|
structure_order_etc: string | null
|
||||||
|
installation_availability: number | null
|
||||||
|
installation_availability_etc: string | null
|
||||||
|
memo: string | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export const surveySalesApi = {
|
||||||
|
create: async (data: SurveySalesBasicInfo): Promise<number> => {
|
||||||
|
try {
|
||||||
|
const response = await axiosInstance(null).post<SurveySalesBasicInfo>('/api/survey-sales', data)
|
||||||
|
return response.data.id ?? 0
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getList: async (): Promise<SurveySalesBasicInfo[] | []> => {
|
||||||
|
try {
|
||||||
|
const response = await axiosInstance(null).get<SurveySalesBasicInfo[]>('/api/survey-sales')
|
||||||
|
return response.data
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getDetail: async (id: number): Promise<SurveySalesBasicInfo | null> => {
|
||||||
|
try {
|
||||||
|
const response = await axiosInstance(null).get<SurveySalesBasicInfo>(`/api/survey-sales/${id}`)
|
||||||
|
return response.data
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
update: async (id: number, data: SurveySalesBasicInfo): Promise<SurveySalesBasicInfo | null> => {
|
||||||
|
try {
|
||||||
|
const response = await axiosInstance(null).put<SurveySalesBasicInfo>(`/api/survey-sales/${id}`, data)
|
||||||
|
return response.data
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
delete: async (id: number, isDetail: boolean = false): Promise<boolean> => {
|
||||||
|
try {
|
||||||
|
await axiosInstance(null).delete(`/api/survey-sales/${id}`, {
|
||||||
|
params: {
|
||||||
|
detail_id: isDetail ? id : undefined,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
return true
|
||||||
|
} catch (error) {
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
},
|
||||||
|
createDetail: async (surveyId: number, data: SurveySalesDetailInfo): Promise<boolean> => {
|
||||||
|
try {
|
||||||
|
await axiosInstance(null).post<SurveySalesDetailInfo>(`/api/survey-sales/${surveyId}`, data)
|
||||||
|
return true
|
||||||
|
} catch (error) {
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
},
|
||||||
|
confirm: async (id: number): Promise<boolean> => {
|
||||||
|
try {
|
||||||
|
await axiosInstance(null).patch<SurveySalesBasicInfo>(`/api/survey-sales/${id}`)
|
||||||
|
return true
|
||||||
|
} catch (error) {
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// update: async (data: SurveySalesBasicInfo): Promise<SurveySalesBasicInfo> => {
|
||||||
|
// const response = await axiosInstance.put<SurveySalesBasicInfo>(`/api/survey-sales`, data)
|
||||||
|
// return response.data
|
||||||
|
// },
|
||||||
|
}
|
||||||
37
src/api/user.ts
Normal file
37
src/api/user.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { axiosInstance } from '@/libs/axios'
|
||||||
|
|
||||||
|
export interface UserData {
|
||||||
|
username: string
|
||||||
|
email: string
|
||||||
|
password: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface User {
|
||||||
|
id: number
|
||||||
|
username: string
|
||||||
|
email: string
|
||||||
|
created_at: string
|
||||||
|
updated_at: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface LoginData {
|
||||||
|
username: string
|
||||||
|
password: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export const userApi = {
|
||||||
|
create: async (data: UserData): Promise<User> => {
|
||||||
|
const response = await axiosInstance(null).post<User>('/api/user/create', data)
|
||||||
|
return response.data
|
||||||
|
},
|
||||||
|
|
||||||
|
getList: async (): Promise<User[]> => {
|
||||||
|
const response = await axiosInstance(null).get<User[]>('/api/user/list')
|
||||||
|
return response.data
|
||||||
|
},
|
||||||
|
|
||||||
|
getUser: async (data: LoginData): Promise<User> => {
|
||||||
|
const response = await axiosInstance(null).post<User>(`/api/user`, data)
|
||||||
|
return response.data
|
||||||
|
},
|
||||||
|
}
|
||||||
@ -1,72 +1,73 @@
|
|||||||
import { NextResponse } from 'next/server'
|
import { NextResponse } from 'next/server'
|
||||||
|
|
||||||
export async function POST(request: Request, context: { params: { id: string } }) {
|
// export async function POST(request: Request, { params }: { params: { id: string } }) {
|
||||||
const body = await request.json()
|
// const body = await request.json()
|
||||||
const { id } = await context.params
|
// const { id } = params
|
||||||
|
|
||||||
// @ts-ignore
|
// // @ts-ignore
|
||||||
const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.update({
|
// const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.update({
|
||||||
where: { id: Number(id) },
|
// where: { id: Number(id) },
|
||||||
data: {
|
// data: {
|
||||||
detail_info: {
|
// detail_info: {
|
||||||
create: body,
|
// create: body,
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
})
|
// })
|
||||||
return NextResponse.json({ message: 'Survey detail created successfully' })
|
// return NextResponse.json({ message: 'Survey detail created successfully' })
|
||||||
}
|
// }
|
||||||
export async function GET(request: Request, context: { params: { id: string } }) {
|
|
||||||
const { id } = await context.params
|
|
||||||
// @ts-ignore
|
|
||||||
const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.findUnique({
|
|
||||||
where: { id: Number(id) },
|
|
||||||
include: {
|
|
||||||
detail_info: true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
return NextResponse.json(survey)
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function PUT(request: Request, context: { params: { id: string } }) {
|
// export async function GET(request: Request, { params }: { params: { id: string } }) {
|
||||||
const { id } = await context.params
|
// const { id } = params
|
||||||
const body = await request.json()
|
// // @ts-ignore
|
||||||
// @ts-ignore
|
// const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.findUnique({
|
||||||
const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.update({
|
// where: { id: Number(id) },
|
||||||
where: { id: Number(id) },
|
// include: {
|
||||||
data: {
|
// detail_info: true,
|
||||||
...body,
|
// },
|
||||||
detail_info: {
|
// })
|
||||||
update: body.detail_info,
|
// return NextResponse.json(survey)
|
||||||
},
|
// }
|
||||||
},
|
|
||||||
})
|
|
||||||
return NextResponse.json(survey)
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function DELETE(request: Request, context: { params: { id: string; detail_id: string } }) {
|
// export async function PUT(request: Request, { params }: { params: { id: string } }) {
|
||||||
const { id, detail_id } = await context.params
|
// const { id } = params
|
||||||
if (detail_id) {
|
// const body = await request.json()
|
||||||
// @ts-ignore
|
// // @ts-ignore
|
||||||
const survey = await prisma.SD_SERVEY_SALES_DETAIL_INFO.delete({
|
// const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.update({
|
||||||
where: { id: Number(detail_id) },
|
// where: { id: Number(id) },
|
||||||
})
|
// data: {
|
||||||
} else {
|
// ...body,
|
||||||
// @ts-ignore
|
// detail_info: {
|
||||||
const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.delete({
|
// update: body.detail_info,
|
||||||
where: { id: Number(id) },
|
// },
|
||||||
})
|
// },
|
||||||
}
|
// })
|
||||||
return NextResponse.json({ message: 'Survey deleted successfully' })
|
// return NextResponse.json(survey)
|
||||||
}
|
// }
|
||||||
|
|
||||||
export async function PATCH(request: Request, context: { params: { id: string } }) {
|
// export async function DELETE(request: Request, { params }: { params: { id: string; detail_id: string } }) {
|
||||||
const { id } = await context.params
|
// const { id, detail_id } = params
|
||||||
// @ts-ignore
|
// if (detail_id) {
|
||||||
const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.update({
|
// // @ts-ignore
|
||||||
where: { id: Number(id) },
|
// const survey = await prisma.SD_SERVEY_SALES_DETAIL_INFO.delete({
|
||||||
data: {
|
// where: { id: Number(detail_id) },
|
||||||
submission_status: true,
|
// })
|
||||||
},
|
// } else {
|
||||||
})
|
// // @ts-ignore
|
||||||
return NextResponse.json({ message: 'Survey confirmed successfully' })
|
// const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.delete({
|
||||||
}
|
// where: { id: Number(id) },
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
// return NextResponse.json({ message: 'Survey deleted successfully' })
|
||||||
|
// }
|
||||||
|
|
||||||
|
// export async function PATCH(request: Request, { params }: { params: { id: string } }) {
|
||||||
|
// const { id } = params
|
||||||
|
// // @ts-ignore
|
||||||
|
// const survey = await prisma.SD_SERVEY_SALES_BASIC_INFO.update({
|
||||||
|
// where: { id: Number(id) },
|
||||||
|
// data: {
|
||||||
|
// submission_status: true,
|
||||||
|
// },
|
||||||
|
// })
|
||||||
|
// return NextResponse.json({ message: 'Survey confirmed successfully' })
|
||||||
|
// }
|
||||||
|
|||||||
@ -2,7 +2,8 @@ import { NextResponse } from 'next/server'
|
|||||||
import { prisma } from '@/libs/prisma'
|
import { prisma } from '@/libs/prisma'
|
||||||
import { getIronSession } from 'iron-session'
|
import { getIronSession } from 'iron-session'
|
||||||
import { cookies } from 'next/headers'
|
import { cookies } from 'next/headers'
|
||||||
import { SessionData, sessionOptions } from '@/libs/session'
|
import { sessionOptions } from '@/libs/session'
|
||||||
|
import type { SessionData } from '@/types/Auth'
|
||||||
|
|
||||||
export async function POST(request: Request) {
|
export async function POST(request: Request) {
|
||||||
const { username, password } = await request.json()
|
const { username, password } = await request.json()
|
||||||
@ -25,8 +26,8 @@ export async function POST(request: Request) {
|
|||||||
const cookieStore = await cookies()
|
const cookieStore = await cookies()
|
||||||
const session = await getIronSession<SessionData>(cookieStore, sessionOptions)
|
const session = await getIronSession<SessionData>(cookieStore, sessionOptions)
|
||||||
console.log('start session edit!')
|
console.log('start session edit!')
|
||||||
session.username = user.username!
|
// session.username = user.username!
|
||||||
session.email = user.email!
|
// session.email = user.email!
|
||||||
session.isLoggedIn = true
|
session.isLoggedIn = true
|
||||||
console.log('end session edit!')
|
console.log('end session edit!')
|
||||||
await session.save()
|
await session.save()
|
||||||
|
|||||||
@ -85,6 +85,9 @@
|
|||||||
input[type="checkbox"]:disabled + label::after{
|
input[type="checkbox"]:disabled + label::after{
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
input[type="checkbox"]:disabled:checked + label::before{
|
||||||
|
background-color: #A8B6C7;
|
||||||
|
}
|
||||||
&.ch-bld{
|
&.ch-bld{
|
||||||
input[type="checkbox"]:checked + label{
|
input[type="checkbox"]:checked + label{
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
|||||||
@ -77,36 +77,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.sale-detail-tab-relative{
|
.sale-form-btn-wrap{
|
||||||
height: 40px;
|
padding: 20px 20px 0 ;
|
||||||
margin-bottom: 10px;
|
background-color: #fff;
|
||||||
}
|
.btn-flex-wrap{
|
||||||
.sale-detail-tab-wrap{
|
margin-top: 0;
|
||||||
position: fixed;
|
|
||||||
top: 66px;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 40px;
|
|
||||||
background-color: $white-fff;
|
|
||||||
z-index: 98000;
|
|
||||||
.sale-detail-tab-inner{
|
|
||||||
position: relative;
|
|
||||||
@include flex(0px);
|
|
||||||
align-items: center;
|
|
||||||
height: 100%;
|
|
||||||
.sale-detail-tab{
|
|
||||||
flex: 1;
|
|
||||||
height: 100%;
|
|
||||||
background-color: #fff;
|
|
||||||
border-top: 1px solid #DDDFE2;
|
|
||||||
border-bottom: 1px solid #DDDFE2;
|
|
||||||
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
|
||||||
&.act{
|
|
||||||
color: $white-fff;
|
|
||||||
background-color: #5F738E;
|
|
||||||
border-color: #5F738E;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -202,6 +177,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 매물 상세
|
// 매물 상세
|
||||||
|
.sale-data-table-wrap{
|
||||||
|
padding: 24px;
|
||||||
|
background-color: #fff;
|
||||||
|
border-top: 1px solid #ECECEC;
|
||||||
|
}
|
||||||
.sale-data-table{
|
.sale-data-table{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
@ -242,6 +222,63 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sale-detail-toggle-wrap{
|
||||||
|
border-top: 1px solid #ECECEC;
|
||||||
|
}
|
||||||
|
.sale-detail-toggle-bx{
|
||||||
|
border-bottom: 1px solid #ECECEC;
|
||||||
|
}
|
||||||
|
.sale-detail-toggle-head{
|
||||||
|
@include flex(5px);
|
||||||
|
padding: 14px 18px;
|
||||||
|
background-color: $white-fff;
|
||||||
|
cursor: pointer;
|
||||||
|
.sale-detail-toggle-name{
|
||||||
|
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
||||||
|
}
|
||||||
|
.sale-detail-toggle-btn-wrap{
|
||||||
|
margin-left: auto;
|
||||||
|
.sale-detail-toggle-btn{
|
||||||
|
display: block;
|
||||||
|
width: 22px;
|
||||||
|
height: 22px;
|
||||||
|
background: url(/assets/images/sub/sale_toggle_btn.svg)no-repeat center;
|
||||||
|
background-size: cover
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sale-detail-toggle-cont{
|
||||||
|
display: none;
|
||||||
|
.sale-frame{
|
||||||
|
padding: 24px 20px;
|
||||||
|
&:first-child{
|
||||||
|
padding-top: 24px;
|
||||||
|
}
|
||||||
|
&:last-child{
|
||||||
|
padding-bottom: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sale-detail-toggle-bx{
|
||||||
|
&.act{
|
||||||
|
.sale-detail-toggle-head{
|
||||||
|
background-color: #5F738E;
|
||||||
|
.sale-detail-toggle-name{
|
||||||
|
color: #fff
|
||||||
|
}
|
||||||
|
.sale-detail-toggle-btn-wrap{
|
||||||
|
.sale-detail-toggle-btn{
|
||||||
|
background: url(/assets/images/sub/sale_toggle_btn_white.svg)no-repeat center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sale-detail-toggle-cont{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 매물 기본정보
|
// 매물 기본정보
|
||||||
.form-flex{
|
.form-flex{
|
||||||
@include flex(5px);
|
@include flex(5px);
|
||||||
@ -614,7 +651,14 @@
|
|||||||
@include flex(0px);
|
@include flex(0px);
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
.float-btn-wrap{
|
||||||
|
position: sticky;
|
||||||
|
bottom: 10px;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
background-color: #fff;
|
||||||
|
z-index: 9;
|
||||||
|
}
|
||||||
@media screen and (max-width: 360px){
|
@media screen and (max-width: 360px){
|
||||||
.btn-flex-wrap{
|
.btn-flex-wrap{
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overflow-x: hidden;
|
// overflow-x: hidden;
|
||||||
.container{
|
.container{
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
}
|
}
|
||||||
|
|||||||
132
src/types/Survey.ts
Normal file
132
src/types/Survey.ts
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
import { SEARCH_OPTIONS_ENUM, SEARCH_OPTIONS_PARTNERS_ENUM, SORT_OPTIONS_ENUM } from '@/store/surveyFilterStore'
|
||||||
|
|
||||||
|
export type SurveyBasicInfo = {
|
||||||
|
ID: number
|
||||||
|
REPRESENTATIVE: string
|
||||||
|
STORE: string | null
|
||||||
|
CONSTRUCTION_POINT: string | null
|
||||||
|
INVESTIGATION_DATE: string | null
|
||||||
|
BUILDING_NAME: string | null
|
||||||
|
CUSTOMER_NAME: string | null
|
||||||
|
POST_CODE: string | null
|
||||||
|
ADDRESS: string | null
|
||||||
|
ADDRESS_DETAIL: string | null
|
||||||
|
SUBMISSION_STATUS: boolean
|
||||||
|
SUBMISSION_DATE: string | null
|
||||||
|
DETAIL_INFO: SurveyDetailInfo | null
|
||||||
|
REG_DT: Date
|
||||||
|
UPT_DT: Date
|
||||||
|
}
|
||||||
|
|
||||||
|
export type SurveyDetailInfo = {
|
||||||
|
ID: number
|
||||||
|
BASIC_INFO_ID: number
|
||||||
|
CONTRACT_CAPACITY: string | null
|
||||||
|
RETAIL_COMPANY: string | null
|
||||||
|
SUPPLEMENTARY_FACILITIES: string | null // number 배열
|
||||||
|
SUPPLEMENTARY_FACILITIES_ETC: string | null
|
||||||
|
INSTALLATION_SYSTEM: string | null
|
||||||
|
INSTALLATION_SYSTEM_ETC: string | null
|
||||||
|
CONSTRUCTION_YEAR: string | null
|
||||||
|
CONSTRUCTION_YEAR_ETC: string | null
|
||||||
|
ROOF_MATERIAL: string | null // number 배열
|
||||||
|
ROOF_MATERIAL_ETC: string | null
|
||||||
|
ROOF_SHAPE: string | null
|
||||||
|
ROOF_SHAPE_ETC: string | null
|
||||||
|
ROOF_SLOPE: string | null
|
||||||
|
HOUSE_STRUCTURE: string | null
|
||||||
|
HOUSE_STRUCTURE_ETC: string | null
|
||||||
|
RAFTER_MATERIAL: string | null
|
||||||
|
RAFTER_MATERIAL_ETC: string | null
|
||||||
|
RAFTER_SIZE: string | null
|
||||||
|
RAFTER_SIZE_ETC: string | null
|
||||||
|
RAFTER_PITCH: string | null
|
||||||
|
RAFTER_PITCH_ETC: string | null
|
||||||
|
RAFTER_DIRECTION: string | null
|
||||||
|
OPEN_FIELD_PLATE_KIND: string | null
|
||||||
|
OPEN_FIELD_PLATE_KIND_ETC: string | null
|
||||||
|
OPEN_FIELD_PLATE_THICKNESS: string | null
|
||||||
|
LEAK_TRACE: boolean | null
|
||||||
|
WATERPROOF_MATERIAL: string | null
|
||||||
|
WATERPROOF_MATERIAL_ETC: string | null
|
||||||
|
INSULATION_PRESENCE: string | null
|
||||||
|
INSULATION_PRESENCE_ETC: string | null
|
||||||
|
STRUCTURE_ORDER: string | null
|
||||||
|
STRUCTURE_ORDER_ETC: string | null
|
||||||
|
INSTALLATION_AVAILABILITY: string | null
|
||||||
|
INSTALLATION_AVAILABILITY_ETC: string | null
|
||||||
|
MEMO: string | null
|
||||||
|
REG_DT: Date
|
||||||
|
UPT_DT: Date
|
||||||
|
}
|
||||||
|
|
||||||
|
export type SurveyBasicRequest = {
|
||||||
|
REPRESENTATIVE: string
|
||||||
|
STORE: string | null
|
||||||
|
CONSTRUCTION_POINT: string | null
|
||||||
|
INVESTIGATION_DATE: string | null
|
||||||
|
BUILDING_NAME: string | null
|
||||||
|
CUSTOMER_NAME: string | null
|
||||||
|
POST_CODE: string | null
|
||||||
|
ADDRESS: string | null
|
||||||
|
ADDRESS_DETAIL: string | null
|
||||||
|
SUBMISSION_STATUS: boolean
|
||||||
|
SUBMISSION_DATE: string | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export type SurveyDetailRequest = {
|
||||||
|
CONTRACT_CAPACITY: string | null
|
||||||
|
RETAIL_COMPANY: string | null
|
||||||
|
SUPPLEMENTARY_FACILITIES: string | null // number 배열
|
||||||
|
SUPPLEMENTARY_FACILITIES_ETC: string | null
|
||||||
|
INSTALLATION_SYSTEM: string | null
|
||||||
|
INSTALLATION_SYSTEM_ETC: string | null
|
||||||
|
CONSTRUCTION_YEAR: string | null
|
||||||
|
CONSTRUCTION_YEAR_ETC: string | null
|
||||||
|
ROOF_MATERIAL: string | null // number 배열
|
||||||
|
ROOF_MATERIAL_ETC: string | null
|
||||||
|
ROOF_SHAPE: string | null
|
||||||
|
ROOF_SHAPE_ETC: string | null
|
||||||
|
ROOF_SLOPE: string | null
|
||||||
|
HOUSE_STRUCTURE: string | null
|
||||||
|
HOUSE_STRUCTURE_ETC: string | null
|
||||||
|
RAFTER_MATERIAL: string | null
|
||||||
|
RAFTER_MATERIAL_ETC: string | null
|
||||||
|
RAFTER_SIZE: string | null
|
||||||
|
RAFTER_SIZE_ETC: string | null
|
||||||
|
RAFTER_PITCH: string | null
|
||||||
|
RAFTER_PITCH_ETC: string | null
|
||||||
|
RAFTER_DIRECTION: string | null
|
||||||
|
OPEN_FIELD_PLATE_KIND: string | null
|
||||||
|
OPEN_FIELD_PLATE_KIND_ETC: string | null
|
||||||
|
OPEN_FIELD_PLATE_THICKNESS: string | null
|
||||||
|
LEAK_TRACE: boolean | null
|
||||||
|
WATERPROOF_MATERIAL: string | null
|
||||||
|
WATERPROOF_MATERIAL_ETC: string | null
|
||||||
|
INSULATION_PRESENCE: string | null
|
||||||
|
INSULATION_PRESENCE_ETC: string | null
|
||||||
|
STRUCTURE_ORDER: string | null
|
||||||
|
STRUCTURE_ORDER_ETC: string | null
|
||||||
|
INSTALLATION_AVAILABILITY: string | null
|
||||||
|
INSTALLATION_AVAILABILITY_ETC: string | null
|
||||||
|
MEMO: string | null
|
||||||
|
}
|
||||||
|
|
||||||
|
export type SurveyDetailCoverRequest = {
|
||||||
|
DETAIL_INFO: SurveyDetailRequest
|
||||||
|
}
|
||||||
|
|
||||||
|
export type SurveyRegistRequest = {
|
||||||
|
REPRESENTATIVE: string
|
||||||
|
STORE: string | null
|
||||||
|
CONSTRUCTION_POINT: string | null
|
||||||
|
INVESTIGATION_DATE: string | null
|
||||||
|
BUILDING_NAME: string | null
|
||||||
|
CUSTOMER_NAME: string | null
|
||||||
|
POST_CODE: string | null
|
||||||
|
ADDRESS: string | null
|
||||||
|
ADDRESS_DETAIL: string | null
|
||||||
|
SUBMISSION_STATUS: boolean
|
||||||
|
SUBMISSION_DATE: string | null
|
||||||
|
DETAIL_INFO: SurveyDetailRequest | null
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user