Commit cd992ab9 authored by carlos's avatar carlos

解决chontu

parents 64b4cdcd 62275517
<?php
/**
* 外工厂rpc服务
*/
namespace Meibuyu\Rpc\Service\Interfaces\OutsideFactory;
interface ExternalFactoryServiceInterface
{
/**
* 发货单打印
* @param $deliveryNo 发货单号
* @return []
* @author Liu lu
* date 2022-11-16
*/
public function deliveryPrint($deliveryNo);
}
\ No newline at end of file
......@@ -53,6 +53,18 @@ interface ExternalDeliveryServiceInterface
public function deliveryRecordsListExport($params);
/**
* 通过发货单号获取发货信息
* @param $deliveryNoArr 发货单号
* @param $relation 关联模型 拿到发货产品信息 ['dispatch_products]
* @param $columns
* @return array ['发货单号'=>array()]
* @author Liu lu
* date 2022-11-15
*/
public function getListInfoByDeliveryNo($deliveryNoArr,$relation=['dispatch_products'],$columns=['*']);
/**
* Notes: 获取发货详情
* User: carlos
......@@ -60,4 +72,5 @@ interface ExternalDeliveryServiceInterface
*/
public function getDeliveryRecord($delivery_no);
}
\ No newline at end of file
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