PHP code example of xlstudio / laravel-hupun

1. Go to this page and download the library: Download xlstudio/laravel-hupun library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

xlstudio / laravel-hupun example snippets


'providers' => [
	Xlstudio\Hupun\Providers\HupunServiceProvider::class,
],

'aliases' => [
	'Hupun' => Xlstudio\Hupun\Facades\Hupun::class,
	'HupunOpen' => Xlstudio\Hupun\Facades\HupunOpen::class,
],

use Hupun;

$item['shopNick'] = '你的店铺昵称'; // 万里牛 ERP 中 B2C 平台的店铺昵称( 掌柜旺旺/账号 ID )
$item['itemID'] = '商品ID';
$item['title'] = '商品标题';
$item['itemCode'] = '商品编码';
$item['price'] = 100.00; // 单价
$item['itemURL'] = '商品地址';
$item['imageURL'] = '图片地址';
$item['status'] = 1; // 0:已删除,1:在售
$item['createTime'] = time() * 1000; // 创建时间,毫秒级时间戳 (13 位毫秒级)
$item['modifyTime'] = time() * 1000; // 最新修改时间,毫秒级时间戳 (13 位毫秒级)

$item['skus'] = []; // 规格集,如果是单规格需传入 []

$items[] = $item; // 商品集

$params['items'] = json_encode($items); // 商品集 json 串

// 以下两种方式任选其一
$result = Hupun::execute('items/open', $params, 'post');

$result = hupun('b2c')->execute('items/open', $params, 'post');

var_dump($result);


use HupunOpen;

$item['article_number'] = '货号';
$item['item_name'] = '商品名称';
$item['item_code'] = '商品编码';
$item['remark'] = '商品备注';
$item['prime_price'] = 50.00; // 参考进价——如果有规格,会忽略,即使规格集中的没有传
$item['sale_price'] = 100.00; // 标准售价——如果有规格,会忽略,即使规格集中的没有传
$item['item_pic'] = '图片地址';

$params['item'] = json_encode($item); // 商品信息 json 串

// 以下两种方式任选其一
$result = HupunOpen::execute('erp/goods/add/item', $params, 'post');

$result = hupun('open')->execute('erp/goods/add/item', $params, 'post');

var_dump($result);


use Hupun;

$params['shop_type'] = 100; // 店铺类型,B2C 平台:100
$params['shop_nick'] = '你的店铺昵称';  // 万里牛 ERP 中 B2C 平台的店铺昵称( 掌柜旺旺/账号 ID )
$params['item_id'] = '商品ID'; // 商品编号,对应商品推送中的 itemID
$params['sku_id'] = '规格ID'; // 如果商品含规格,则必填,对应商品推送的中 skuID

// 以下两种方式任选其一
$result = Hupun::execute('inventories/erp/single', $params, 'get');

$result = hupun('b2c')->execute('inventories/erp/single', $params, 'get');

var_dump($result);

bash
php artisan vendor:publish --provider="Xlstudio\Hupun\Providers\HupunServiceProvider"