根据 Django 中的订单 ID 更新数据库中的数据

Update data in database based on order id in Django

我是 Django 的新手。 我想根据订单 ID 更新数据库中的值。因此,每个订单 id 都有不同的更新。但是,我只能更新我添加到订单中的最后一项。我以前的每一个订单,都会直接跟在最后一个项目的更新之后。

models.py

 class OrderItem(models.Model):
     Table_No = models.IntegerField(blank=False)
     FoodId = models.TextField()
     Item = models.TextField()
     Qty = models.DecimalField(max_digits=5, decimal_places=0)
     Price = models.DecimalField(max_digits=10, decimal_places=2)
     TotalPrice = models.TextField()
     Note = models.TextField(max_length=100, null=True)
     OrderId = models.TextField(max_length=5, null=True)

     FoodStatus = (
         ('1', 'Has been ordered'),
         ('2', 'cooked'),
         ('3', 'ready to be served'),
         ('4', 'done'),
     )
     food_status = models.CharField(max_length=50, choices=FoodStatus)

views.py

def kitchen_view(request):
    chef_view = OrderItem.objects.all()
    if request.method == "POST":
        order_id = request.POST.get("OrderId")
        status = OrderItem.objects.filter(OrderId=request.POST.get("OrderId")) 
        status.status1 = OrderItem.objects.update(food_status=request.POST.get("food_status"))
    return render(request, 'restaurants/kitchen_page.html', {'chef_view': chef_view})

kitchen_page.html

<form action="#" method="post">
    <style>
    table, th, td {
        border: 1px solid black;
    }
    </style>
        {% csrf_token %}                
        {% for order in chef_view %}    
            <table width="800">
                <tr>
                    <th width="800">Table Number</th>           
                    <th width="800">Item</th>                   
                    <th width="800">Quantity</th>               
                    <th width="800">Price</th>                  
                    <th width="800">Note</th>                   
                    <th width="800">Order Id</th>               
                    <th width="800">Status</th>                 
                </tr>
                <tr>
                    <td width="800">{{ order.Table_No }}</td>   
                    <td width="800">{{ order.Item }}</td>       
                    <td width="800">{{ order.Qty }}</td>    
                    <td width="800">{{ order.Price }}</td>      
                    <td width="800">{{ order.Note }}</td>       
                    <td width="800">{{ order.OrderId }}</td>    
                    <td width="800">{{ order.food_status }}     
                        <input type="text" name="food_status">
                </tr>
            </table>
        {% endfor %}
        <br><a href='' button onclick="myFunction()"><input type="submit" value="Change Status"></button>
    </form>

结果应该可以在order_id的基础上更新food_status。因此,每个 order_id 可能有不同的 food_status 并将其显示给模板。

谁能帮我解决这个问题?我真的需要帮助来解决这个问题。非常感谢。

以前存储的筛选对象没有像您那样更新

status = OrderItem.objects.filter(OrderId=request.POST.get("OrderId"))

但是当你更新它们时,你应该更新已经过滤的对象,比如

status = status.update(food_status=request.POST.get("food_status"))

希望对您有所帮助。

您可以一次更新多个对象,包括一行中的过滤器:

status = OrderItem.objects.filter(OrderId=request.POST.get("OrderId")).update(food_status=request.POST.get("food_status"))

您的代码中的问题:

status.status1 = OrderItem.objects.update(food_status=request.POST.get("food_status"))

是因为您没有使用过滤器,而是尝试使用 status.status1 更新 status1 字段(在您的模型中看不到 status1 字段)。

好的,真正的问题是您的表格不正确 - 您没有发送 OrderId 来查看。这是它的快速修复:

kitchen_page.html:

<style>
    table, th, td {
        border: 1px solid black;
    }
</style>
<form action="#" method="post">
    <table width="800">
        <tr>
            <th width="800">Table Number</th>
            <th width="800">Item</th>
            <th width="800">Quantity</th>
            <th width="800">Price</th>
            <th width="800">Note</th>
            <th width="800">Order Id</th>
            <th width="800">Status</th>
        </tr>
        {% csrf_token %}
        {% for order in chef_view %}
            <tr>
                <td width="800">{{ order.Table_No }}</td>
                <td width="800">{{ order.Item }}</td>
                <td width="800">{{ order.Qty }}</td>
                <td width="800">{{ order.Price }}</td>
                <td width="800">{{ order.Note }}</td>
                <td width="800">{{ order.OrderId }}</td>
                <td width="800">{{ order.food_status }}
                    <input type="text" name="food_status" value="{{ order.food_status }}">
            </tr>
            <input type="hidden" name="OrderId" value="{{ order.OrderId }}">
        {% endfor %}
    </table>
    <br><button type="submit" value="Change Status">Change Status</button>
</form>

views.py:

def kitchen_view(request):
    if request.method == "POST":
        order_ids = request.POST.getlist("OrderId")
        food_statuses = request.POST.getlist("food_status")
        for i in range(len(order_ids)):
            OrderItem.objects.filter(OrderId=order_ids[i]).update(food_status=food_statuses[i])
    chef_view = OrderItem.objects.all()
    return render(request, 'restaurants/kitchen_page.html', {'chef_view': chef_view})