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
c429018f
Commit
c429018f
authored
Oct 31, 2020
by
fuyunnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
给生产提交rpc 接口总共7个
parent
7198546e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
76 additions
and
0 deletions
+76
-0
StoreMaterialServiceInterface.php
...ervice/Interfaces/Store/StoreMaterialServiceInterface.php
+76
-0
No files found.
src/Service/Interfaces/Store/StoreMaterialServiceInterface.php
View file @
c429018f
...
...
@@ -36,4 +36,80 @@ interface StoreMaterialServiceInterface
* Date: 2020/7/6
*/
public
function
createMaterialWarehousing
(
array
$attributes
)
:
array
;
/**
* description:批量创建入库单
* author: fuyunnan
* @param
* @return array
* @throws
* Date: 2020/10/31
*/
public
function
createBatchMaterialWarehousing
(
$attributes
)
:
array
;
/**
* description:批量创建出库单
* author: fuyunnan
* @param
* @return array
* @throws
* Date: 2020/10/31
*/
public
function
createBatchExMaterialWarehouse
(
$attributes
)
:
array
;
/**
* description:批量修改入库单
* author: fuyunnan
* @param
* @return array
* @throws
* Date: 2020/10/31
*/
public
function
updateBatchMaterialWarehousing
(
$attributes
)
:
array
;
/**
* description:批量修改出库单
* author: fuyunnan
* @param
* @return array
* @throws
* Date: 2020/10/31
*/
public
function
updateBatchExMaterialWarehouse
(
$attributes
)
:
array
;
/**
* description:通过原料id数组获取库存列表 给订单系统查询的接口 返回当前原料分组后的库存
* author: fuyunnan
* @param array $ids 原料ids 数组
* @param int $wareId 仓库id
* @return array
* @throws
* Date: 2020/7/27
*/
public
function
getGroupMaterialStock
(
$ids
,
$wareId
=
0
)
:
array
;
/**
* description:批量查看入库单信息
* author: fuyunnan
* @param array $ids 入库单ids数组
* @param array $relations 关联关系 ['material_warehousing_order_materials']
* @return array
* @throws
* Date: 2020/10/31
*/
public
function
showBatchWarehousing
(
$ids
,
$relations
=
[])
:
array
;
/**
* description:批量查看出库单信息
* author: fuyunnan
* @param array $ids 出库单ids数组
* @param array $relations 关联关系 ['material_ex_warehouse_order_materials']
* @return array
* @throws
* Date: 2020/10/31
*/
public
function
showBatchExeWarehouse
(
$ids
,
$relations
=
[])
:
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