Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
meibuyu-rpc
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
without authentication
meibuyu-rpc
Commits
8863aa90
Commit
8863aa90
authored
Nov 09, 2021
by
liu lu
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
http://git.huaperfect.com/without_auth/meibuyu-rpc
into develop
parents
31db8d1f
5d3c4e06
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
54 additions
and
15 deletions
+54
-15
AbnormalServiceInterface.php
...rvice/Interfaces/PurchaseNew/AbnormalServiceInterface.php
+19
-0
SupplierServiceInterface.php
...rvice/Interfaces/PurchaseNew/SupplierServiceInterface.php
+23
-0
StorePurchaseServiceInterface.php
...ervice/Interfaces/Store/StorePurchaseServiceInterface.php
+12
-15
No files found.
src/Service/Interfaces/PurchaseNew/AbnormalServiceInterface.php
0 → 100644
View file @
8863aa90
<?php
namespace
Meibuyu\Rpc\Service\Interfaces\PurchaseNew
;
interface
AbnormalServiceInterface
{
/**
* 到仓异常数据添加
* @param $scanNo
* @return mixed
*/
public
function
createWarehoused
(
$params
)
:
string
;
}
\ No newline at end of file
src/Service/Interfaces/PurchaseNew/SupplierServiceInterface.php
0 → 100644
View file @
8863aa90
<?php
namespace
Meibuyu\Rpc\Service\Interfaces\PurchaseNew
;
interface
SupplierServiceInterface
{
/**
* 供应商列表数据
* @param array 供应商id数组
* @param $params['company_name'] 公司名称
* @return
*/
public
function
list
(
array
$params
)
:
string
;
}
\ No newline at end of file
src/Service/Interfaces/Store/StorePurchaseServiceInterface.php
View file @
8863aa90
...
...
@@ -10,24 +10,21 @@ namespace Meibuyu\Rpc\Service\Interfaces\Store;
interface
StorePurchaseServiceInterface
{
/**
* 创建对应的退货单, $params 数组结构如下:
* [
'source_type' => '', //来源类型,默认为采购
'source_no' => '', //来源单号,比如来源是采购就是采购单号
'batch_no' => '', //对应的批次号
'sku' => '', //sku
'purchased_cnt' => 0, //购买量
'returns_cnt' => 0, //退货数量
];
* 继续入库
* [
* 'purchase_no' => '', //采购单号(必填)
* 'batch_no' => '', //批次号(必填)
* 'extra' => [], //后续扩展使用可以,非必填
* ]
* @param array $params
* @return array
* [
'msg' => '退货成功',
'code'=> 200, //响应码
'data' => ['id' => 退货 ID] //返回的数据,id 为对应的退货 ID
];
* @throws
'msg' => '退货成功',
'code'=> 200, //响应码
'data' => [] //返回的数据
];
*/
public
function
c
reateReturns
(
array
$params
)
:
array
;
public
function
c
ontinueWarehousing
(
array
$params
)
:
array
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment