scp class_E300.php pimz8:/home/ezadmin/public_html/3pl/class/
scp class_E300.php pimz8:/home/ezadmin/public_html/3pl/class/
2007년 11월 29일 목요일
2007년 11월 28일 수요일
재고 상태 정의
접수 상태인 상품의 개수,
실 재고: 배송 기준으로 실제 창고에 있는 상품의 개수
출고대기: 실재고 + 송장 뽑은 건들(출고 예정 수량)
가 재고: 송장 출력 + 미배송 상태의 건들을 모두 포함한 건
2007년 11월 12일 월요일
날짜 연산....관련
두 날짜 사이의 차를 연산
intval((strtotime("2005-01-10")-strtotime("2005-01-02"))/86400) => 8
strtotime 사용...
strtotime("+3 day")
intval((strtotime("2005-01-10")-strtotime("2005-01-02"))/86400) => 8
strtotime 사용...
strtotime("+3 day")
2007년 11월 2일 금요일
swapClass() 요거 재미남
# css 설정
<style type="text/css">
.roll {
background-color: #7f7f7f;
color: #3366cc;
}
.over {
background-color: #3355cc;
color: #3366cc;
cursor: hand;
}
</style>
# html에서 사용
OnMouseOver="swapClass(this, 'over')"
OnMouseOut="swapClass(this, 'roll')"
# javascript 설정
function swapClass(obj, cls) {
obj.className = cls
}
피드 구독하기:
글 (Atom)