multi-store/app/admin/validate/inventory_transfer/InventoryTransferValidate.php

92 lines
1.7 KiB
PHP

<?php
namespace app\admin\validate\inventory_transfer;
use app\common\validate\BaseValidate;
/**
* 商品调拨验证器
* Class InventoryTransferValidate
* @package app\admin\validate\inventory_transfer
*/
class InventoryTransferValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
'product_id' => 'require',
'nums' => 'require',
'type' => 'require',
'one_id' => 'require',
'two_id' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'product_id' => '商品',
'nums' => '数量',
'type' => '1商户2仓库',
'one_id' => '转出id',
'two_id' => '转入id',
];
/**
* @notes 添加场景
* @return InventoryTransferValidate
* @author admin
* @date 2024/08/13 16:18
*/
public function sceneAdd()
{
return $this->only(['product_id','nums','type','one_id','two_id']);
}
/**
* @notes 编辑场景
* @return InventoryTransferValidate
* @author admin
* @date 2024/08/13 16:18
*/
public function sceneEdit()
{
return $this->only(['id','product_id','nums','type','one_id','two_id']);
}
/**
* @notes 删除场景
* @return InventoryTransferValidate
* @author admin
* @date 2024/08/13 16:18
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return InventoryTransferValidate
* @author admin
* @date 2024/08/13 16:18
*/
public function sceneDetail()
{
return $this->only(['id']);
}
}