Commit 48fee7a1 authored by platyhouse's avatar platyhouse

- encrypted

parent 96af0ab3
...@@ -68,7 +68,11 @@ $paidResult = json_decode($item->paidResult, true); ...@@ -68,7 +68,11 @@ $paidResult = json_decode($item->paidResult, true);
<? if ($it['status'] == $v) { ?> <? if ($it['status'] == $v) { ?>
<span class="animated flash label bg-red"><?= $v ?></span> <span class="animated flash label bg-red"><?= $v ?></span>
<? } else { ?> <? } else { ?>
<a href='<?= $this->request->appUrl ?>/ptyshop/cart/setStatus/?id=<?= $it['id'] ?>&status=<?= urlencode($v) ?>' class="label bg-gray"><?= $v ?></a> <? if ($v == '결제완료') { ?>
<span class="label bg-gray"><?= $v ?></span>
<? } else { ?>
<a href='<?= $this->request->appUrl ?>/ptyshop/cart/setStatus/?id=<?= $it['id'] ?>&status=<?= urlencode($v) ?>' class="label bg-gray"><?= $v ?></a>
<? } ?>
<? } ?> <? } ?>
<? } ?> <? } ?>
</td> </td>
......
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