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

时间:2019-05-14 06:05:26

标签: django database insert-update

我是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,并显示在模板中。

任何人都可以帮助我解决这个问题吗?我确实需要帮助来解决此问题。非常感谢。

3 个答案:

答案 0 :(得分:1)

以前存储的过滤对象不会像以前那样被更新

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

但是在更新它们时,应该更新已经过滤的对象,例如

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

希望这会有所帮助。

答案 1 :(得分:1)

好的,真正的问题是您的表格不正确-您没有发送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})

答案 2 :(得分:0)

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

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字段)。