- Draw相关控制器添加provider_code和provider_name字段支持 - 允许手动录入开奖批次时指定provider_code - RNG开奖批次生成支持多provider,分别生成对应批次数据 - DrawPublishService和DrawManualResultService中支持基于provider_code管理开奖版本和发布流程 - DrawResultViewService调整,支持按provider汇总及筛选开奖结果 - Settlement处理逻辑调整,按provider区分待结算票据及批次,分开结算 - 结算期间管理相关服务支持使用站点本地结算时区计算开账建议和日期处理 - 增加AdminSite的settlement_timezone字段及相关请求验证和数据存取支持 - 优化AdminSettlementPeriod相关代码,防止存在未结清票据时关账 - Ticket明细返回接口添加结算时区信息,提升用户时间体验 - 多处查询排序和版本号处理改进,保证多provider数据正确顺序与一致性
35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Admin;
|
|
|
|
use App\Http\Requests\ApiFormRequest;
|
|
use App\Rules\WalletApiUrlRule;
|
|
|
|
final class AdminIntegrationSiteUpdateRequest extends ApiFormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/** @return array<string, mixed> */
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => ['required', 'string', 'max:128'],
|
|
'currency_code' => ['sometimes', 'string', 'max:16'],
|
|
'settlement_timezone' => ['sometimes', 'timezone'],
|
|
'status' => ['sometimes', 'integer', 'in:0,1'],
|
|
'wallet_api_url' => ['nullable', 'string', 'max:512', new WalletApiUrlRule()],
|
|
'wallet_debit_path' => ['sometimes', 'string', 'max:128'],
|
|
'wallet_credit_path' => ['sometimes', 'string', 'max:128'],
|
|
'wallet_balance_path' => ['sometimes', 'string', 'max:128'],
|
|
'wallet_timeout_seconds' => ['sometimes', 'integer', 'min:1', 'max:120'],
|
|
'iframe_allowed_origins' => ['nullable', 'array'],
|
|
'iframe_allowed_origins.*' => ['string', 'max:512'],
|
|
'lottery_h5_base_url' => ['nullable', 'string', 'max:512'],
|
|
'notes' => ['nullable', 'string', 'max:5000'],
|
|
];
|
|
}
|
|
}
|