循环数组

视图:

<div id="order-item-template" class="hidden">
    <div class="item">
    <?= \yii\bootstrap\Html::activeHiddenInput($model, 'items[product_id][]', ['id' => false, 'class' => 'product_id']); ?>
    <?= \yii\bootstrap\Html::activeHiddenInput($model, 'items[product_price_id][]', ['id' => false, 'class' => 'product_price_id']); ?>
    <?= \yii\bootstrap\Html::activeHiddenInput($model, 'items[qty][]', ['id' => false, 'class' => 'qty']); ?>
    </div>
</div>

数组格式:

array ( 'product_id' => array ( 0 => '1', 1 => '16', ), 'product_price_id' => array ( 0 => '2', 1 => '', ), 'qty' => array ( 0 => '1', 1 => '1', ), )

循环:

public function validateItems()
{
    $productIdList = $this->items['product_id'];
    $qtyList = $this->items['qty'];
    $productPriceIds = $this->items['product_price_id'];

    foreach ($productIdList as $i => $product_id)
    {
        $price = null;
        $qty = $qtyList[$i];
        $product_price_id = $productPriceIds[$i];
        if(isset($product_price_id) && isset($qty) && $qty > 0)
        {
            $product = Product::findOne($product_id);
            if(null != $product && $product->isOnline())
            {
                if($product->isAreaPrice())
                {
                    if(!isset($item['product_price_id']))
                    {
                        $this->addError('items', '编号为'.$i.'的商品地区未选择。');
                    }
                    else
                    {
                        /** @var ProductPrice $pp */
                        $pp = ProductPrice::find()->where(['id' => $product_price_id, 'product_id' => $product_id])->one();
                        if(null != $pp)
                        {
                            $price = $pp->price;
                        }
                    }
                }
                else
                {
                    $price = $product->price;
                }
                $this->products[] = [
                    'product' => $product,
                    'qty' => (int)$qty,
                    'price' => $price
                ];
            }
            else
            {
                $this->addError('items', '编号为'.$i.'的商品信息不正确。');
            }
        }
        else
        {
            $this->addError('items', '编号为'.$i.'的商品信息不正确。');
        }
    }
}

 

转载于:https://my.oschina.net/botkenni/blog/864439

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值