This commit is contained in:
Your Name
2026-06-23 11:31:49 +08:00
parent e28480af32
commit 6c87b72ce4
3 changed files with 9 additions and 1 deletions
@@ -3214,12 +3214,16 @@ class PrescriptionOrderLogic
if ($createType === 'fubei') {
return '付呗';
}
if ($createType === 'express_cod') {
return '快递代收';
}
$paymentMethod = trim((string) ($row['payment_method'] ?? ''));
$methodMap = [
'alipay' => '支付宝',
'wechat' => '微信',
'wechat_work' => '企业微信',
'fubei' => '付呗',
'express_cod' => '快递代收',
'manual' => '手动确认到账',
];
if ($paymentMethod !== '' && isset($methodMap[$paymentMethod])) {