1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace app\common\model\store\order;
- use app\common\model\BaseModel;
- use app\common\model\system\merchant\Merchant;
- class StoreOrderProfitsharing extends BaseModel
- {
- const TYPE_NAME = ['order' => '订单支付', 'presell' => '尾款支付'];
- const STATUS_NAME = [0 => '待分账', 1 => '已分账', -1 => '已退款', -2 => '退款失败'];
- public static function tablePk(): string
- {
- return 'profitsharing_id';
- }
- public static function tableName(): string
- {
- return 'store_order_profitsharing';
- }
- public function getTypeNameAttr()
- {
- return self::TYPE_NAME[$this->getAttr('type')];
- }
- public function getStatusNameAttr()
- {
- return self::STATUS_NAME[$this->status];
- }
- public function order()
- {
- return $this->hasOne(StoreOrder::class, 'order_id', 'order_id');
- }
- public function merchant()
- {
- return $this->hasOne(Merchant::class, 'mer_id', 'mer_id');
- }
- public function getProfitsharingParmas()
- {
- return [
- 'transaction_id' => $this->transaction_id,
- 'sub_mchid' => $this->merchant->sub_mchid,
- 'out_order_no' => $this->profitsharing_sn,
- 'receivers' => [
- [
- 'amount' => bcsub($this->profitsharing_price, $this->profitsharing_mer_price, 2),
- 'body' => '订单分账',
- 'receiver_account' => systemConfig('wechat_service_merid'),
- ]
- ]
- ];
- }
- public function getProfitsharingFinishParmas()
- {
- return [
- 'sub_mchid' => $this->merchant->sub_mchid,
- 'transaction_id' => $this->order->transaction_id,
- 'out_order_no' => $this->profitsharing_sn,
- 'description' => '订单分账',
- ];
- }
- }
|