feat(finance): 订单新增流水号查询订单
Some checks are pending
CI / Test (ubuntu-latest) (push) Waiting to run
CI / Test (windows-latest) (push) Waiting to run
CI / Lint (ubuntu-latest) (push) Waiting to run
CI / Lint (windows-latest) (push) Waiting to run
CI / Check (ubuntu-latest) (push) Waiting to run
CI / Check (windows-latest) (push) Waiting to run
CI / CI OK (push) Blocked by required conditions
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
Deploy Website on push / Deploy Push Playground Ftp (push) Waiting to run
Deploy Website on push / Deploy Push Docs Ftp (push) Waiting to run
Deploy Website on push / Deploy Push Antd Ftp (push) Waiting to run
Deploy Website on push / Deploy Push Element Ftp (push) Waiting to run
Deploy Website on push / Deploy Push Naive Ftp (push) Waiting to run
Deploy Website on push / Rerun on failure (push) Blocked by required conditions
Release Drafter / update_release_draft (push) Waiting to run

This commit is contained in:
李琦
2026-08-26 16:22:05 +08:00
parent b7a70ea113
commit 2d8a328db2
2 changed files with 22 additions and 0 deletions

View File

@@ -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',

View File

@@ -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: '支付单号',
},
{
// 就诊人姓名/手机号模糊(后端 PersonKeywordScopeServicewhereHas 关联表)
component: 'Input',