From 2d8a328db224d455fdd7f41fa10c6d79ff12f3b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=90=A6?= Date: Wed, 26 Aug 2026 16:22:05 +0800 Subject: [PATCH] =?UTF-8?q?feat(finance):=20=E8=AE=A2=E5=8D=95=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=B5=81=E6=B0=B4=E5=8F=B7=E6=9F=A5=E8=AF=A2=E8=AE=A2?= =?UTF-8?q?=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../business/order/product-order/config/search.ts | 11 +++++++++++ .../views/business/order/register/config/search.ts | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/apps/web-antd/src/views/business/order/product-order/config/search.ts b/apps/web-antd/src/views/business/order/product-order/config/search.ts index 63693b72..588ece4d 100644 --- a/apps/web-antd/src/views/business/order/product-order/config/search.ts +++ b/apps/web-antd/src/views/business/order/product-order/config/search.ts @@ -42,6 +42,17 @@ export const formOptions: VbenFormProps = { fieldName: 'order_no', label: '订单号', }, + { + // 第三方支付订单号:落在 yii_payment_product_order.transaction_id(易票联 transactionNo 等),后端 whereHas paidPayments + component: 'Input', + componentProps: { + allowClear: true, + placeholder: '第三方支付订单号', + }, + defaultValue: '', + fieldName: 'transaction_id', + label: '支付单号', + }, { // 门店多选:名称/拼音首拼气泡选择,诊所+药店 component: 'StoreMultiSearch', diff --git a/apps/web-antd/src/views/business/order/register/config/search.ts b/apps/web-antd/src/views/business/order/register/config/search.ts index 007969cf..75e14425 100644 --- a/apps/web-antd/src/views/business/order/register/config/search.ts +++ b/apps/web-antd/src/views/business/order/register/config/search.ts @@ -45,6 +45,17 @@ export const formOptions: VbenFormProps = { fieldName: 'order_no', label: '订单号', }, + { + // 第三方支付订单号:落在 yii_payment_register.transaction_id,后端 whereHas payments + component: 'Input', + componentProps: { + allowClear: true, + placeholder: '第三方支付订单号', + }, + defaultValue: '', + fieldName: 'transaction_id', + label: '支付单号', + }, { // 就诊人姓名/手机号模糊(后端 PersonKeywordScopeService,whereHas 关联表) component: 'Input',