[1763]특정 지붕재를 사용해 Plan을 복사했을 때 오류가 표시되고, 지붕재 정보가 올바르게 전달되지 않는다
This commit is contained in:
parent
408cc75a31
commit
1b4e64b527
@ -107,9 +107,9 @@
|
|||||||
, #{roofApply}
|
, #{roofApply}
|
||||||
, #{roofSeq}
|
, #{roofSeq}
|
||||||
, #{roofMatlCd}
|
, #{roofMatlCd}
|
||||||
, #{roofWidth}
|
, ISNULL(#{roofWidth}, 0)
|
||||||
, #{roofHeight}
|
, ISNULL(#{roofHeight}, 0)
|
||||||
, #{roofHajebichi}
|
, ISNULL(#{roofHajebichi}, 0)
|
||||||
, #{roofGap}
|
, #{roofGap}
|
||||||
, #{roofLayout}
|
, #{roofLayout}
|
||||||
, #{roofPitch}
|
, #{roofPitch}
|
||||||
@ -131,9 +131,9 @@
|
|||||||
SET roof_apply = #{roofApply}
|
SET roof_apply = #{roofApply}
|
||||||
, roof_seq = #{roofSeq}
|
, roof_seq = #{roofSeq}
|
||||||
, roof_matl_cd = #{roofMatlCd}
|
, roof_matl_cd = #{roofMatlCd}
|
||||||
, roof_width = #{roofWidth}
|
, roof_width = ISNULL(#{roofWidth}, 0)
|
||||||
, roof_height = #{roofHeight}
|
, roof_height = ISNULL(#{roofHeight}, 0)
|
||||||
, roof_hajebichi = #{roofHajebichi}
|
, roof_hajebichi = ISNULL(#{roofHajebichi}, 0)
|
||||||
, roof_gap = #{roofGap}
|
, roof_gap = #{roofGap}
|
||||||
, roof_layout = #{roofLayout}
|
, roof_layout = #{roofLayout}
|
||||||
, roof_pitch = #{roofPitch}
|
, roof_pitch = #{roofPitch}
|
||||||
@ -174,9 +174,9 @@
|
|||||||
, #{roofApply}
|
, #{roofApply}
|
||||||
, #{roofSeq}
|
, #{roofSeq}
|
||||||
, #{roofMatlCd}
|
, #{roofMatlCd}
|
||||||
, #{roofWidth}
|
, ISNULL(#{roofWidth}, 0)
|
||||||
, #{roofHeight}
|
, ISNULL(#{roofHeight}, 0)
|
||||||
, #{roofHajebichi}
|
, ISNULL(#{roofHajebichi}, 0)
|
||||||
, #{roofGap}
|
, #{roofGap}
|
||||||
, #{roofLayout}
|
, #{roofLayout}
|
||||||
, #{roofPitch}
|
, #{roofPitch}
|
||||||
@ -208,9 +208,9 @@
|
|||||||
, #{roofApply}
|
, #{roofApply}
|
||||||
, #{roofSeq}
|
, #{roofSeq}
|
||||||
, #{roofMatlCd}
|
, #{roofMatlCd}
|
||||||
, #{roofWidth}
|
, ISNULL(#{roofWidth}, 0)
|
||||||
, #{roofHeight}
|
, ISNULL(#{roofHeight}, 0)
|
||||||
, #{roofHajebichi}
|
, ISNULL(#{roofHajebichi}, 0)
|
||||||
, #{roofGap}
|
, #{roofGap}
|
||||||
, #{roofLayout}
|
, #{roofLayout}
|
||||||
, #{roofPitch}
|
, #{roofPitch}
|
||||||
@ -230,7 +230,7 @@
|
|||||||
<update id="updateHajebichRoofMaterialsAdd" parameterType="com.interplug.qcast.biz.canvasBasicSetting.dto.CanvasBasicSettingResponse">
|
<update id="updateHajebichRoofMaterialsAdd" parameterType="com.interplug.qcast.biz.canvasBasicSetting.dto.CanvasBasicSettingResponse">
|
||||||
/* sqlid : updateHajebichRoofMaterialsAdd */
|
/* sqlid : updateHajebichRoofMaterialsAdd */
|
||||||
UPDATE TB_CANVAS_ROOF_MATERIALS_ADD
|
UPDATE TB_CANVAS_ROOF_MATERIALS_ADD
|
||||||
SET roof_hajebichi = #{roofHajebichi}
|
SET roof_hajebichi = ISNULL(#{roofHajebichi}, 0)
|
||||||
WHERE object_no = #{objectNo}
|
WHERE object_no = #{objectNo}
|
||||||
AND plan_no = #{planNo}
|
AND plan_no = #{planNo}
|
||||||
</update>
|
</update>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user