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
7513987b
Commit
7513987b
authored
Nov 25, 2022
by
林继鑫
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://git.huaperfect.com/without_auth/meibuyu-rpc
into develop
parents
d9cf13ae
a3bb2266
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
74 additions
and
0 deletions
+74
-0
FlowServiceInterface.php
src/Service/Interfaces/Flow/FlowServiceInterface.php
+9
-0
FactoryServiceInterface.php
...ice/Interfaces/OutsideFactory/FactoryServiceInterface.php
+26
-0
ProductionServiceInterface.php
...vice/Interfaces/Production/ProductionServiceInterface.php
+23
-0
StoreServiceInterface.php
src/Service/Interfaces/Store/StoreServiceInterface.php
+16
-0
No files found.
src/Service/Interfaces/Flow/FlowServiceInterface.php
View file @
7513987b
...
...
@@ -41,4 +41,13 @@ interface FlowServiceInterface
* @param $params
*/
public
function
getApprovalDetail
(
$params
);
/**
* Notes: 取消审批
* User: carlos
* DateTime: 2022/11/24 18:16
* @param $params
* @return mixed
*/
public
function
cancelApproval
(
$params
);
}
\ No newline at end of file
src/Service/Interfaces/OutsideFactory/FactoryServiceInterface.php
View file @
7513987b
...
...
@@ -117,4 +117,30 @@ interface FactoryServiceInterface
* DateTime: 2022/11/21 14:14
*/
public
function
confirmDelivery
(
$params
);
/**
* Notes: 通过最小订单号批量获取原始订单号
* @param $orderNoArr
* @param string[] $columns
* @param $with[] $with
* @return array
*/
public
function
getProductionListByOrderNo
(
$orderNoArr
,
$columns
=
[
'*'
],
$with
=
[]);
/**
* Notes: 少货处理
* User: carlos
* DateTime: 2022/11/21 19:03
*/
public
function
shortageProcess
(
$delivery_no
,
$shortageProduct
);
/**
* Notes: 退回返修
* User: carlos
* DateTime: 2022/11/23 11:43
* @param $params
*/
public
function
repairReturn
(
$delivery_no
,
$repairProducts
);
}
\ No newline at end of file
src/Service/Interfaces/Production/ProductionServiceInterface.php
View file @
7513987b
...
...
@@ -169,4 +169,27 @@ interface ProductionServiceInterface
*/
public
function
confirmDelivery
(
$params
);
/**
* Notes: 取消发货订单
* User: carlos
* DateTime: 2022/11/22 9:20
* @param $delivery_no
*/
public
function
cancelDelivery
(
$delivery_no
);
/**
* Notes: 创建生产异常单
* User: carlos
* DateTime: 2022/11/21 16:36
*/
public
function
createProductionException
(
$params
);
/**
* Notes: 返修退回
* User: carlos
* DateTime: 2022/11/22 13:58
*/
public
function
repairReturn
(
$params
);
}
src/Service/Interfaces/Store/StoreServiceInterface.php
View file @
7513987b
...
...
@@ -330,4 +330,20 @@ interface StoreServiceInterface
* @return array
*/
public
function
stockUpDeliveryDispatched
(
array
$params
)
:
array
;
/**
* 取消备货发货记录
* @param array $params
* @return array
*/
public
function
cancelStockUpDelivery
(
array
$params
)
:
array
;
/**
* 备货相关异常接收对应的指令
* @param $commandType
* @param $payload
* @return mixed
*/
public
function
receiveCommand4StockUp
(
$commandType
,
$payload
);
}
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