123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- $suhc_oil = ['name' => 'suhc', 'store_id' => 8, 'card_type' => ['sinopec'],
- 'amount' => [100 => ['goods_id' => 6226, 'price' => 96.8],
- 200 => ['goods_id' => 6227, 'price' => 193.6],
- 500 => ['goods_id' => 6228, 'price' => 484],
- 1000 => ['goods_id' => 6229, 'price' => 968],
- 2000 => ['goods_id' => 6230, 'price' => 1976]],
- 'period' => ['start' => '8:30', 'end' => '22:30'], 'refill_type' => 'api'];
- $suhctm_oil = ['name' => 'suhctm', 'store_id' => 8, 'card_type' => ['sinopec'],
- 'amount' => [100 => ['goods_id' => 6226, 'price' => 96.8],
- 200 => ['goods_id' => 6227, 'price' => 193.6],
- 500 => ['goods_id' => 6228, 'price' => 484],
- 1000 => ['goods_id' => 6229, 'price' => 968],
- 2000 => ['goods_id' => 6230, 'price' => 1976]],
- 'period' => ['start' => '8:30', 'end' => '22:30'], 'refill_type' => 'api'];
- $lx_oil = ['name' => 'lx', 'store_id' => 10, 'card_type' => ['sinopec'],
- 'amount' => [100 => ['goods_id' => 6234, 'price' => 95.5],
- 200 => ['goods_id' => 6235, 'price' => 191],
- 500 => ['goods_id' => 6236, 'price' => 477.5],
- 1000 => ['goods_id' => 6237, 'price' => 955],
- 2000 => ['goods_id' => 6238, 'price' => 1910]],
- 'period' => ['start' => '8:30', 'end' => '22:30'], 'official_sn' => true];
- $oil_providers = [
- ['name' => 'suhc', 'cfg' => $suhc_oil, 'opened' => true, 'sort' => 1],
- ['name' => 'suhctm', 'cfg' => $suhctm_oil, 'opened' => true, 'sort' => 2],
- ['name' => 'lx', 'cfg' => $lx_oil, 'opened' => true, 'sort' => 3]];
- $config['oil_providers'] = $oil_providers;
- $beixt_phone = ['name' => 'beixt', 'store_id' => 9, 'card_type' => ['chinamobile', 'chinaunicom', 'chinatelecom'],
- 'amount' => [50 => ['goods_id' => 6231, 'price' => 48.75],
- 100 => ['goods_id' => 6232, 'price' => 97.5],
- 200 => ['goods_id' => 6233, 'price' => 195]],
- 'refill_type' => 'api'];
- $bxtwt_phone = ['name' => 'bxtwt', 'store_id' => 10, 'card_type' => ['chinamobile', 'chinaunicom', 'chinatelecom'],
- 'amount' => [50 => ['goods_id' => 6298, 'price' => 48],
- 100 => ['goods_id' => 6299, 'price' => 96],
- 200 => ['goods_id' => 6300, 'price' => 192]],
- 'refill_type' => 'api'];
- $jiec_phone = ['name' => 'jiec', 'store_id' => 17, 'card_type' => ['chinaunicom', 'chinatelecom'],
- 'amount' => [30 => ['goods_id' => 6323, 'price' => 28.74],
- 50 => ['goods_id' => 6324, 'price' => 47.9],
- 100 => ['goods_id' => 6325, 'price' => 95.8],
- 200 => ['goods_id' => 6326, 'price' => 191.6]], 'official_sn' => true, 'refill_type' => 'api'];
- $phone_providers = [
- ['name' => 'beixt', 'cfg' => $beixt_phone, 'opened' => true, 'sort' => 1],
- ['name' => 'bxtwt', 'cfg' => $bxtwt_phone, 'opened' => true, 'sort' => 2],
- ['name' => 'jiec', 'cfg' => $jiec_phone, 'opened' => true, 'sort' => 1]];
- $config['phone_providers'] = $phone_providers;
|