2024.9.30(週一)

记得关月亮發表於2024-10-05
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
    <title>產品批次</title>
    <style>
        /* 整體頁面佈局和樣式 */
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            background-image: url('img.jpg'); /* 新增背景圖片 */
            background-size: cover; /* 使背景圖片覆蓋整個頁面 */
            background-position: center; /* 背景圖片居中 */
            background-repeat: no-repeat; /* 不重複背景圖片 */
        }

        h1 {
            text-align: center;
            color: #eeeaea;
        }

        form {
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            width: 400px;
            margin: 0 auto;
        }

        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        input[type="text"],
        input[type="number"],
        select {
            width: 100%;
            padding: 8px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 3px;
        }

        button {
            background-color: #007BFF;
            color: #fff;
            padding: 10px 15px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            display: block; /* Ensures button is a block element */
            margin: 0 auto; /* Centers the button */
        }

        button:hover {
            background-color: #0056b3;
        }

        /* 結果展示區域樣式 */
        .result-section {
            margin-top: 20px;
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            width: 400px;
            margin: 0 auto;
        }

        h2 {
            color: #e0d8d8;
        }

        p {
            margin: 5px 0;
        }
    </style>
</head>
<body>

<h1>產品批次</h1>
<form method="post" action="processProductBatch.jsp">
    <label for="batch_id">批次 ID</label>
    <input type="text" id="batch_id" name="batch_id" required>

    <label for="batch_number">批次號</label>
    <input type="text" id="batch_number" name="batch_number" required>

    <label for="order_id">生產製令編號</label>
    <input type="text" id="order_id" name="order_id" required>

    <label for="product_id">產品 ID</label>
    <input type="text" id="product_id" name="product_id" required>

    <label for="production_date">生產日期</label>
    <input type="text" id="production_date" name="production_date" required>

    <label for="quantity">批次數量</label>
    <input type="number" id="quantity" name="quantity" value="0" required>

    <label for="quality_status">質量狀態</label>
    <select id="quality_status" name="quality_status">
        <option value="合格">合格</option>
        <option value="不合格">不合格</option>
    </select>

    <label for="remarks">備註資訊</label>
    <input type="text" id="remarks" name="remarks">

    <button type="submit">提交</button>
</form>

<%-- 結果展示部分 --%>
<%
    String batchId = request.getParameter("batch_id");
    String batchNumber = request.getParameter("batch_number");
    String orderId = request.getParameter("order_id");
    String productId = request.getParameter("product_id");
    String productionDate = request.getParameter("production_date");
    String quantity = request.getParameter("quantity");
    String qualityStatus = request.getParameter("quality_status");
    String remarks = request.getParameter("remarks");

    if (batchId != null) {
%>
<div class="result-section">
    <h2>輸入結果</h2>
    <p><strong>批次 ID:</strong> <%= batchId %></p>
    <p><strong>批次號:</strong> <%= batchNumber %></p>
    <p><strong>生產製令編號:</strong> <%= orderId %></p>
    <p><strong>產品 ID:</strong> <%= productId %></p>
    <p><strong>生產日期:</strong> <%= productionDate %></p>
    <p><strong>批次數量:</strong> <%= quantity %></p>
    <p><strong>質量狀態:</strong> <%= qualityStatus %></p>
    <p><strong>備註資訊:</strong> <%= remarks != null ? remarks : "無" %></p>
</div>
<%
    }
%>

</body>
</html>

相關文章