Commit d5ee0a4b authored by Liu lu's avatar Liu lu

Merge branch 'develop' of http://git.huaperfect.com/without_auth/meibuyu-rpc into develop

# Conflicts:
#	src/Service/Interfaces/Production/ExternalDeliveryServiceInterface.php
parents 40ef3dd0 cbb77108
...@@ -27,8 +27,18 @@ interface FlowServiceInterface ...@@ -27,8 +27,18 @@ interface FlowServiceInterface
* [ * [
* 'code' => '', //来源单号 * 'code' => '', //来源单号
* 'user_id' => '', //审批人 * 'user_id' => '', //审批人
* 'line_code' => '',//审批节点编码
* 'approval' => '', // 审批结果 通过、拒绝 pass reject
* 'params' => '',//审批参数 * 'params' => '',//审批参数
* ] * ]
*/ */
public function approval($params); public function approval($params);
/**
* Notes: 获取审批详情
* User: carlos
* DateTime: 2022/11/14 14:10
* @param $params
*/
public function getApprovalDetail($params);
} }
\ No newline at end of file
...@@ -35,12 +35,30 @@ interface ExternalDeliveryServiceInterface ...@@ -35,12 +35,30 @@ interface ExternalDeliveryServiceInterface
*/ */
public function deliveryPendingDisplay($productionId); public function deliveryPendingDisplay($productionId);
/**
* 小货-发货记录
* @param $params
* @author Linjixin
* date 2022-11-15
*/
public function deliveryRecordsList($params);
/**
* 小货-发货记录导出
* @param $params
* @author Linjixin
* date 2022-11-15
*/
public function deliveryRecordsListExport($params);
/** /**
* 通过发货单号获取发货信息 * 通过发货单号获取发货信息
* @param $deliveryNoArr 发货单号 * @param $deliveryNoArr 发货单号
* @param $relation 关联模型 拿到发货产品信息 ['dispatch_products] * @param $relation 关联模型 拿到发货产品信息 ['dispatch_products]
* @param $columns * @param $columns
* @return array ['发货单号'=>array()]
* @author Liu lu * @author Liu lu
* date 2022-11-15 * date 2022-11-15
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment