pay_channels

This commit is contained in:
邓皓元 2019-01-04 09:58:37 +08:00
parent 1d5b46e62a
commit c952846661

View File

@ -31,8 +31,8 @@ class BootstrapController extends Controller
$pay_types = new PayType();
$order_status = json_decode(json_encode(['已下单', '已取消', '已出库', '已签收'], JSON_FORCE_OBJECT));
$transaction_status = json_decode(json_encode(['未收款', '已收款'], JSON_FORCE_OBJECT));
$order_status = json_decode(json_encode($dicts->get('order_status'), JSON_FORCE_OBJECT));
$transaction_status = json_decode(json_encode($dicts->get('transaction_status'), JSON_FORCE_OBJECT));
$pay_channels = ['bank' => '银行转账', 'alipay' => '支付宝转账'];
$res = compact('carrier_operator', 'pay_channels', 'pay_types', 'order_status', 'transaction_status');