fitness-web/frontend/models/ProductSaleForm.php
2015-10-01 09:37:34 +02:00

47 lines
659 B
PHP

<?php
namespace frontend\models;
use Yii;
use yii\base\Model;
use common\models\Card;
use common\models\Customer;
/**
* ContactForm is the model behind the contact form.
*/
class ProductSaleForm extends Model
{
public $productNumber;
public $productBarcode;
public $count;
public $currency;
public $account;
public $comment;
/**
* @inheritdoc
*/
public function rules()
{
return [
[['number'], 'required'],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'verifyCode' => 'Verification Code',
];
}
}