当前位置: 首页>>代码示例>>PHP>>正文


PHP Order::getShipmentStatusLabels方法代码示例

本文整理汇总了PHP中common\models\Order::getShipmentStatusLabels方法的典型用法代码示例。如果您正苦于以下问题:PHP Order::getShipmentStatusLabels方法的具体用法?PHP Order::getShipmentStatusLabels怎么用?PHP Order::getShipmentStatusLabels使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在common\models\Order的用法示例。


在下文中一共展示了Order::getShipmentStatusLabels方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

    echo $form->field($model, 'payment_id')->textInput();
    ?>

    <?php 
    echo $form->field($model, 'payment_name')->textInput(['maxlength' => 120]);
    ?>
    <?php 
}
?>

    <?php 
echo $form->field($model, 'payment_fee')->textInput(['maxlength' => 10]);
?>

    <?php 
echo $form->field($model, 'shipment_status')->dropDownList(Order::getShipmentStatusLabels());
?>

    <?php 
echo $form->field($model, 'shipment_id')->textInput();
?>

    <?php 
echo $form->field($model, 'shipment_name')->textInput(['maxlength' => 255]);
?>

    <?php 
echo $form->field($model, 'shipment_fee')->textInput(['maxlength' => 10]);
?>

    <?php 
开发者ID:CTaiDeng,项目名称:funshop,代码行数:31,代码来源:_form.php

示例2: function

use common\models\Order;
/* @var $this yii\web\View */
/* @var $model common\models\Order */
$this->title = $model->id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Orders'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="order-view">

    <p>
        <?php 
echo Html::a(Yii::t('app', 'Update'), ['update', 'id' => $model->id], ['class' => 'btn btn-primary']);
?>
        <?php 
echo Html::a(Yii::t('app', 'Delete'), ['delete', 'id' => $model->id], ['class' => 'btn btn-danger', 'data' => ['confirm' => Yii::t('app', 'Are you sure you want to delete this item?'), 'method' => 'post']]);
?>
    </p>

    <?php 
echo GridView::widget(['dataProvider' => $dataProvider, 'columns' => ['product_id', 'name', 'sku', 'price', 'number', ['attribute' => 'total', 'value' => function ($model) {
    return $model->number * $model->price;
}]]]);
?>


    <?php 
echo DetailView::widget(['model' => $model, 'attributes' => ['id', ['attribute' => 'user_id', 'value' => $model->user ? $model->user->username : '-'], 'sn', 'consignee', ['attribute' => 'address', 'value' => (isset($model->country0) ? $model->country0->name : '-') . (isset($model->province0) ? $model->province0->name : '-') . (isset($model->city0) ? $model->city0->name : '-') . (isset($model->district0) ? $model->district0->name : '-') . $model->address], 'zipcode', 'phone', 'mobile', 'email:email', 'remark', ['attribute' => 'payment_method', 'value' => Order::getPaymentMethodLabels($model->payment_method)], ['attribute' => 'payment_status', 'value' => $model->payment_status ? Order::getPaymentStatusLabels($model->payment_status) : '-'], 'payment_id', 'payment_name', 'payment_fee', ['attribute' => 'shipment_status', 'value' => $model->shipment_status ? Order::getShipmentStatusLabels($model->shipment_status) : '-'], 'shipment_id', 'shipment_name', 'shipment_fee', 'amount', 'tax', 'invoice', ['attribute' => 'status', 'value' => Order::getStatusLabels($model->status)], 'paid_at:datetime', 'shipped_at:datetime', 'created_at:datetime', 'updated_at:datetime', ['attribute' => 'created_by', 'value' => $model->createdBy->username], ['attribute' => 'updated_by', 'value' => $model->updatedBy->username]]]);
?>

</div>
开发者ID:CTaiDeng,项目名称:funshop,代码行数:30,代码来源:view.php

示例3: function

    } else {
        $class = 'label-info';
    }
    return '<span class="label ' . $class . '">' . ($model->payment_status ? Order::getPaymentStatusLabels($model->payment_status) : '-') . '</span>';
}, 'filter' => Html::activeDropDownList($searchModel, 'payment_status', Order::getPaymentStatusLabels(), ['class' => 'form-control', 'prompt' => Yii::t('app', 'PROMPT_STATUS')])], ['attribute' => 'shipment_status', 'format' => 'html', 'value' => function ($model) {
    if ($model->shipment_status === Order::SHIPMENT_STATUS_RECEIVED) {
        $class = 'label-success';
    } elseif ($model->shipment_status === Order::SHIPMENT_STATUS_SHIPPED) {
        $class = 'label-warning';
    } elseif ($model->shipment_status === Order::SHIPMENT_STATUS_PREPARING) {
        $class = 'label-danger';
    } else {
        $class = 'label-info';
    }
    return '<span class="label ' . $class . '">' . ($model->shipment_status ? Order::getShipmentStatusLabels($model->shipment_status) : '-') . '</span>';
}, 'filter' => Html::activeDropDownList($searchModel, 'shipment_status', Order::getShipmentStatusLabels(), ['class' => 'form-control', 'prompt' => Yii::t('app', 'PROMPT_STATUS')])], 'amount', ['attribute' => 'status', 'format' => 'html', 'value' => function ($model) {
    if ($model->status === Order::SHIPMENT_STATUS_RECEIVED) {
        $class = 'label-success';
    } elseif ($model->status === Order::PAYMENT_STATUS_UNPAID) {
        $class = 'label-warning';
    } elseif ($model->status === Order::STATUS_CANCEL || $model->status === Order::STATUS_DELETED) {
        $class = 'label-danger';
    } else {
        $class = 'label-info';
    }
    return '<span class="label ' . $class . '">' . Order::getStatusLabels($model->status) . '</span>';
}, 'filter' => Html::activeDropDownList($searchModel, 'status', Order::getStatusLabels(), ['class' => 'form-control', 'prompt' => Yii::t('app', 'PROMPT_STATUS')])], 'created_at:date', ['class' => 'yii\\grid\\ActionColumn']]]);
?>

</div>
开发者ID:CTaiDeng,项目名称:funshop,代码行数:30,代码来源:index.php


注:本文中的common\models\Order::getShipmentStatusLabels方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。