묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
{@$dataOutput2 = "100"; }
<!--@if ($dataOutput1 > 64 and $dataOutput1 <= 128 and $data1="30일")-->
{@$dataOutput2 = "200"; }
<!--@if ($dataOutput1 > 128 and $data1="30일")
{@$dataOutput2 = "300"; }
<!--@if ($dataOutput1 > 0 and $dataOutput1 <= 64 and $data1="90일")-->
{@$dataOutput2 = "400"; }
<!--@if ($dataOutput1 > 64 and $dataOutput1 <= 128 and $data1="90일")-->
{@$dataOutput2 = "500"; }
<!--@if ($dataOutput1 > 128 and $data1="90일")
{@$dataOutput2 = "600"; }
<!--@if ($dataOutput1 > 0 and $dataOutput1 <= 64 and $data1="180일")-->
{@$dataOutput2 = "700"; }
<!--@if ($dataOutput1 > 64 and $dataOutput1 <= 128 and $data1="180일")-->
{@$dataOutput2 = "800"; }
<!--@if ($dataOutput1 > 128 and $data1="180일")
{@$dataOutput2 = "900"; }
너무 간단한 코드인데....ㅠㅠ제가 초보라서요..ㅠ
2009.07.17 20:32
그렇습니다....IF Else 구문입니다만...;;;; 제가 바보인지;;; 아니면 확장변수가....서버를 안들어갔기 때문에 입력이 안되는 것인지..작동을 안합니다....일단...스킨의 view_document.html의 파일을 조금 수정했습니다...
{@ $data1 = $oDocument->getExtraValue(1); }
{@ $data2 = $oDocument->getExtraValue(2); }
{@ $data3 = $oDocument->getExtraValue(3); }
{@ $data4 = $oDocument->getExtraValue(4); }
{@ $data5 = $oDocument->getExtraValue(5); }
{@ $dataOutput1 = (int)($data3-data2) + (int)($data5-data4); }
를 추가했고...
출력을 원하는 위치에는..
{@$dataOutput2 = "100"; }
<!--@if ($dataOutput1 > 64 and $dataOutput1 <= 128 and $data1="30일")-->
{@$dataOutput2 = "200"; }
<!--@if ($dataOutput1 > 128 and $data1="30일")
{@$dataOutput2 = "300"; }
<!--@if ($dataOutput1 > 0 and $dataOutput1 <= 64 and $data1="90일")-->
{@$dataOutput2 = "400"; }
<!--@if ($dataOutput1 > 64 and $dataOutput1 <= 128 and $data1="90일")-->
{@$dataOutput2 = "500"; }
<!--@if ($dataOutput1 > 128 and $data1="90일")
{@$dataOutput2 = "600"; }
<!--@if ($dataOutput1 > 0 and $dataOutput1 <= 64 and $data1="180일")-->
{@$dataOutput2 = "700"; }
<!--@if ($dataOutput1 > 64 and $dataOutput1 <= 128 and $data1="180일")-->
{@$dataOutput2 = "800"; }
<!--@if ($dataOutput1 > 128 and $data1="180일")
{@$dataOutput2 = "900"; }
이런식으로 구성했습니다... 그래서....$dataOutput1 원하는 pc의 숫자...그리고 가장 중요한 가격은 8번 확장변수이나 내용입력 칸에...넣고 싶은데......할줄을 모르겠어요..ㅠㅠ
테이블로 정리하면.
구분 | 64 | 128 | 256 |
30일 | 100 | 200 | 300 |
90일 | 400 | 500 | 600 |
180일 | 700 | 800 | 900 |
이런 모양일 것입니다... 그런데....아예 작동을 안합니다.....도와주세요...ㅠㅠㅠㅠ
태그 연관 글
- [2017/06/17] 묻고답하기 contentextended 사용자정의 출력 시, select type 은 array 이로 나옵니다.
- [2016/07/22] 묻고답하기 덧글단 회원에게만 확장변수 공개 질문 입니다. *2
- [2016/03/25] 묻고답하기 확장변수로 새로운 카테고리(분류)를 만들고 싶습니다
- [2016/02/24] 묻고답하기 글 쓸때 새창 ->구글맵 지도좌표선택->좌표를 확장변수에 입력 문의
- [2015/11/06] 묻고답하기 Board DX 본문 입력을 없애는 방법 알 수 있을까요?
1. And 대신 &&을, or은 || 쓰셔야 합니다.
2. And 전까지가 한 문장이므로 각각 구분을 해주셔야 합니다.
<!--@if ($dataOutput1 > 64 and $dataOutput1 <= 128 and $data1="180일")-->이
<!--@if (($dataOutput1 > 64) && ($dataOutput1 <= 128) && ($data1="180일"))--> 되도록 해서 다시 한번 해보세요^^