diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index 44bdb66..182d5fb 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -604,8 +604,13 @@ $reconcileShowUrl = '/admin/platform-orders/' . $order->id . '#payment-receipts'; @endphp @if($isReconcileMismatchRow) + @php $reconcileFixUrl = '/admin/platform-orders/' . $order->id . '#add-payment-receipt'; @endphp ¥{{ number_format($rowDelta, 2) }} -
对账不一致
+
+ 对账不一致 + + 去补回执 +
@else ¥0.00 @endif diff --git a/tests/Feature/AdminPlatformOrderReconcileMismatchRowHintTest.php b/tests/Feature/AdminPlatformOrderReconcileMismatchRowHintTest.php index b6f0ef0..8c81400 100644 --- a/tests/Feature/AdminPlatformOrderReconcileMismatchRowHintTest.php +++ b/tests/Feature/AdminPlatformOrderReconcileMismatchRowHintTest.php @@ -66,6 +66,7 @@ class AdminPlatformOrderReconcileMismatchRowHintTest extends TestCase ->assertOk() ->assertSee('PO_RECON_ROW_HINT_0001') ->assertSee('/admin/platform-orders/' . $order->id . '#payment-receipts', false) + ->assertSee('/admin/platform-orders/' . $order->id . '#add-payment-receipt', false) ->assertSee('对账不一致'); } }