打开购物车-如何更改字段类型?

open cart- how to change type of field?

我想在打开的购物车中更改字段类型(数量)product table 从 INTFLOATphpmyadmin 中更改了它的类型,但之后当我想在面板管理中编辑产品时,我将数量更改为(例如)“0.5”,但它是以 INT 类型保存在数据库中!

<input type="text" name="quantity" value="<?php echo $quantity; ?>" placeholder="<?php echo $entry_quantity; ?>" id="input-quantity" class="form-control" />

为什么?

您还需要修改 sql 查询, 打开:

admin/model/catalog/product.php

找到:

(int)$data['quantity']

(出现两次)

替换为:

(float)$data['quantity']

这是给管理员的,如果你想在前面显示,也修改catalog文件夹中的文件。