Commit e3bdfc78 authored by platyhouse's avatar platyhouse

- encrypted

parent 4ff0f791
......@@ -35,17 +35,17 @@ namespace platyFramework;
<?= $form->getDateTime("등록일", "regDateTime", "required placeholder='2018-01-01 00:00:00'"); ?>
<? } ?>
<?= $form->getSelect("노출여부", "enabled", array("활성화" => "1", "비활성화" => 0)); ?>
<?= $form->getInput("상품코드", "productId"); ?>
<?= $form->getInput("상품명", "title"); ?>
<?= $form->getInput("상품명 한줄 소개", "titleDesc"); ?>
<?= $form->getInput("<font color=#a9a9a9>상품코드</font>", "productId"); ?>
<?= $form->getInput("<font color=#a9a9a9>#상품명</font>", "title", "", "<font color=blue>#이 붙은 항목은 물류센터 동기화시 재설정 됩니다.</font>"); ?>
<?= $form->getInput("<font color=#a9a9a9>#상품명 한줄 소개</font>", "titleDesc"); ?>
<?= $form->getFile("미리보기 이미지", "previewImageUrl", 0, " onchange='checkUpload(this, 1);'", "모든 파일 첨부는 최대 " . ini_get("post_max_size") . " 까지 가능합니다"); ?>
<?= $form->getInput("소비자가", "customerPrice", "", "소비자가를 입력하면 판매가와 비교하여 세일율이 노출됩니다."); ?>
<?= $form->getFile("<font color=#a9a9a9>#미리보기 이미지</font>", "previewImageUrl", 0, " onchange='checkUpload(this, 1);'", "모든 파일 첨부는 최대 " . ini_get("post_max_size") . " 까지 가능합니다"); ?>
<?= $form->getInput("<font color=#a9a9a9>#소비자가</font>", "customerPrice", "", "소비자가는 판매가와 비교하여 세일율이 노출됩니다."); ?>
<?= $form->getInput("판매가", "price"); ?>
<?= $form->getSelect("배송비유형", "deliveryPriceType", ["무료" => 1, "조건부무료" => 2, "유료" => 3, "수량별부과" => 4]); ?>
<?= $form->getInput("배송비", "deliveryPrice", "", "0: 무료 배송 (무료배송 아이콘이 노출됩니다)"); ?>
<?= $form->getSelect("<font color=#a9a9a9>#배송비유형</font>", "deliveryPriceType", ["무료" => 1, "조건부무료" => 2, "유료" => 3, "수량별부과" => 4]); ?>
<?= $form->getInput("<font color=#a9a9a9>#배송비</font>", "deliveryPrice", "", "0: 무료 배송 (무료배송 아이콘이 노출됩니다)"); ?>
<?= $form->getInput("재고수", "inven", "", "-1: 무제한, 0:재고없음"); ?>
<?= $form->getSelect("최저가보장 노출 여부", "isLowerPrice", ["노출" => 1, "비노출" => 0]); ?>
<?= $form->getSelect("<font color=#a9a9a9>#최저가보장 노출 여부</font>", "isLowerPrice", ["노출" => 1, "비노출" => 0]); ?>
<?= $form->getSelect("오늘 출발 노출 여부", "isTodayDelivery", ["노출" => 1, "비노출" => 0]) ?>
<?= $form->getSelect("홈 노출 여부", "isHomeVisible", ["노출" => 1, "비노출" => 0]) ?>
<?= $form->getInput("짧은글 링크 주소", "shortUrl") ?>
......@@ -53,12 +53,12 @@ namespace platyFramework;
?>
<!-- --><? //= $form->getInput("카테고리2", "category2");
?>
<?= $form->getTextEdit("상품설명", "desc"); ?>
<?= $form->getTextEdit("<font color=#a9a9a9>#상품설명</font>", "desc"); ?>
<?
$optionByForm = json_decode($item->optionByForm, true);
for ($i = 0; $i < 20; $i++) { ?>
<div class="form-group">
<label class="col-sm-2 control-label"><? echo $i == 0 ? "옵션 설정" : ""; ?></label>
<label class="col-sm-2 control-label"><? echo $i == 0 ? "<font color=#a9a9a9>#옵션 설정</font>" : ""; ?></label>
<div class="col-sm-2">
<input type="text" id="title" name="item[option][titleA][]" value="<?= $optionByForm['titleA'][$i] ?>" placeholder="옵션1단계 제목" class="form-control">
</div>
......@@ -76,8 +76,8 @@ namespace platyFramework;
</div>
</div>
<? } ?>
<?= $form->getTextView("상품원본정보", print_r(json_decode($item->json, true), true)); ?>
<?= $form->getDateTime("굿즈쉐어센터 업데이트 일시", "updateDateTime", "required placeholder='2018-01-01 00:00:00'"); ?>
<?= $form->getTextView("<font color=#a9a9a9>#상품원본정보</font>", print_r(json_decode($item->json, true), true)); ?>
<?= $form->getDateTime("<font color=#a9a9a9>#굿즈쉐어센터 업데이트 일시</font>", "updateDateTime", "required placeholder='2018-01-01 00:00:00'"); ?>
<div class="form-group">
<label class="col-sm-2 control-label"></label>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment