Skip to content

Commit

Permalink
Update QRCode
Browse files Browse the repository at this point in the history
  • Loading branch information
in27sung committed Dec 17, 2024
1 parent 5784c41 commit 8643a86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void insertOrderWithItems(OrderVO order, List<OrderItemVO> orderItems) th
odao.insertOrderItem(orderItems);
processOrderByType(order);

rdao.insertReceiving(businessId);
// rdao.insertReceiving(businessId);
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void generateQRCode(int productId) throws Exception {
ProductVO product = productDAO.getProductById(productId);

if (product != null) {
String qrContent = "http://localhost:8088/product/detail?productId=" + productId;
String qrContent = "http://c7d2408t1p1.itwillbs.com/product/detail?productId=" + productId;

// 카테고리명을 ID를 참조하여 가져오기
String categoryName = categoryDAO.selectCategoryNameById(product.getCategoryId());
Expand Down

0 comments on commit 8643a86

Please sign in to comment.