diff --git a/resources/views/admin/platform_batches/show.blade.php b/resources/views/admin/platform_batches/show.blade.php index 46d82c7..55d49b3 100644 --- a/resources/views/admin/platform_batches/show.blade.php +++ b/resources/views/admin/platform_batches/show.blade.php @@ -158,6 +158,21 @@ @else
暂无可抽样订单(可能暂无成功单,或 last_result 尚未补齐)。
+ @php + $spotAfterId = (int) request()->query('spot_after_id', 0); + @endphp + @if($spotAfterId > 0) + @php + $spotPickResetUrl = '/admin/platform-batches/show?' . \Illuminate\Support\Arr::query([ + 'type' => $type, + 'run_id' => $runId, + ]); + $spotPickResetUrl = \App\Support\BackUrl::withBack($spotPickResetUrl, $safeBackForLinks); + @endphp +
+ 回到最新 +
+ @endif @endif diff --git a/tests/Feature/AdminPlatformBatchShowPageSpotCheckExhaustedShouldStillRenderResetLinkTest.php b/tests/Feature/AdminPlatformBatchShowPageSpotCheckExhaustedShouldStillRenderResetLinkTest.php new file mode 100644 index 0000000..0c432a5 --- /dev/null +++ b/tests/Feature/AdminPlatformBatchShowPageSpotCheckExhaustedShouldStillRenderResetLinkTest.php @@ -0,0 +1,88 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_batch_show_page_should_still_render_reset_link_when_spot_check_is_exhausted(): void + { + $this->loginAsPlatformAdmin(); + + $merchant = Merchant::query()->firstOrFail(); + $plan = Plan::query()->create([ + 'code' => 'plan_batch_spot_check_exhausted', + 'name' => '批次抽样复核翻到底测试套餐', + 'billing_cycle' => 'monthly', + 'price' => 10, + 'list_price' => 10, + 'status' => 'active', + 'sort' => 10, + 'published_at' => now(), + ]); + + $runId = 'BMPA_SPOT_EXHAUSTED_0001'; + + $order = PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_SPOT_EXHAUSTED_0001', + 'order_type' => 'new_purchase', + 'status' => 'activated', + 'payment_status' => 'paid', + 'plan_name' => $plan->name, + 'billing_cycle' => $plan->billing_cycle, + 'period_months' => 1, + 'quantity' => 1, + 'payable_amount' => 10, + 'paid_amount' => 10, + 'placed_at' => now()->subMinutes(10), + 'paid_at' => now()->subMinutes(9), + 'activated_at' => now()->subMinutes(8), + 'meta' => [ + 'batch_mark_paid_and_activate' => [ + 'at' => now()->toDateTimeString(), + 'admin_id' => 1, + 'scope' => 'filtered', + 'mode' => 'queue', + 'run_id' => $runId, + 'last_result' => [ + 'run_id' => $runId, + 'success' => 1, + 'failed' => 0, + 'matched' => 1, + 'processed' => 1, + 'top_reasons' => [], + 'at' => now()->toDateTimeString(), + ], + ], + ], + ]); + + $html = $this->get('/admin/platform-batches/show?type=bmpa&run_id=' . $runId . '&spot_after_id=' . $order->id) + ->assertOk() + ->getContent(); + + $this->assertStringContainsString('暂无可抽样订单(可能暂无成功单,或 last_result 尚未补齐)。', $html); + $this->assertStringContainsString('data-role="batch-spot-check-reset"', $html); + $this->assertStringContainsString('href="/admin/platform-batches/show?type=bmpa&run_id=' . $runId . '"', $html); + $this->assertStringNotContainsString('data-role="batch-spot-check-next"', $html); + } +}