1. 新增药品的ERP抓取数量倍数

This commit is contained in:
李琦
2026-07-20 15:54:57 +08:00
parent 70c6d498aa
commit ec6ecfc0c2
2 changed files with 16 additions and 1 deletions

View File

@@ -120,7 +120,7 @@ JJvBfLfudYNUjUCyW3gAcOIJ
'publicKeyFilePath' => '/www/certs/efps.cer', //公钥
'signType' => 'RSA2',
// 'pay_notify_url' => 'https://app.xiaokang88.com/member/v1/eplpay-callback/notify',
'pay_notify_url' => 'https://api.xiaokang88.com/callback/eplpay/notify',
'pay_notify_url' => env('PAY_NOTIFY_URL'),
'refund_notify_url' => 'https://app.xiaokang88.com/member/v1/eplpay-callback/refund-notify',
'withdraw_notify_url' => 'https://app.xiaokang88.com/member/v1/eplpay-callback/withdraw-notify'
],

View File

@@ -0,0 +1,15 @@
<?php
namespace common\models\newDb;
/**
* 配送仓库主体(新库)
* 供会员端订单详情回填仓名使用
*/
class DeliveryWarehouseModel extends \common\core\BaseNewActiveRecord
{
public static function tableName()
{
return 'xk_delivery_warehouse';
}
}