|
@@ -7,6 +7,7 @@ import {
|
|
|
GetWarehousingFlowingListParams,
|
|
GetWarehousingFlowingListParams,
|
|
|
NoticeListData,
|
|
NoticeListData,
|
|
|
RawMaterialOutStreamListData,
|
|
RawMaterialOutStreamListData,
|
|
|
|
|
+ SemiInStreamListData,
|
|
|
SemiManufacturesAddParams,
|
|
SemiManufacturesAddParams,
|
|
|
SemiManufacturesOutParams,
|
|
SemiManufacturesOutParams,
|
|
|
WarehousingListData,
|
|
WarehousingListData,
|
|
@@ -98,10 +99,10 @@ export function semiManufacturesOut(data: SemiManufacturesOutParams): BaseResult
|
|
|
/** 半成品入库流水单 */
|
|
/** 半成品入库流水单 */
|
|
|
export function getSemiManufacturesInStream(
|
|
export function getSemiManufacturesInStream(
|
|
|
data: GetWarehousingFlowingListParams,
|
|
data: GetWarehousingFlowingListParams,
|
|
|
-): BaseListResult<any> {
|
|
|
|
|
|
|
+): BaseListResult<SemiInStreamListData> {
|
|
|
return request({
|
|
return request({
|
|
|
method: 'GET',
|
|
method: 'GET',
|
|
|
- url: `${BASE_URL}/getNotice`,
|
|
|
|
|
|
|
+ url: `${BASE_URL}/getProduct`,
|
|
|
data,
|
|
data,
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
@@ -114,6 +115,7 @@ export function exportSemiManufacturesInStream(
|
|
|
method: 'GET',
|
|
method: 'GET',
|
|
|
url: `${BASE_URL}/productExcel`,
|
|
url: `${BASE_URL}/productExcel`,
|
|
|
data,
|
|
data,
|
|
|
|
|
+ skipError: true,
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -123,7 +125,7 @@ export function getSemiManufacturesDrawList(
|
|
|
): BaseListResult<any> {
|
|
): BaseListResult<any> {
|
|
|
return request({
|
|
return request({
|
|
|
method: 'GET',
|
|
method: 'GET',
|
|
|
- url: 'askGoods/getGoodsHalf',
|
|
|
|
|
|
|
+ url: '/askGoods/getGoodsHalf',
|
|
|
data,
|
|
data,
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
@@ -134,7 +136,7 @@ export function getSemiManufacturesDrawStream(
|
|
|
): BaseListResult<any> {
|
|
): BaseListResult<any> {
|
|
|
return request({
|
|
return request({
|
|
|
method: 'GET',
|
|
method: 'GET',
|
|
|
- url: 'askGoods/getRemovalHalfProduct',
|
|
|
|
|
|
|
+ url: '/askGoods/getRemovalHalfProduct',
|
|
|
data,
|
|
data,
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
@@ -145,7 +147,8 @@ export function exportSemiManufacturesDrawStream(
|
|
|
): any {
|
|
): any {
|
|
|
return request({
|
|
return request({
|
|
|
method: 'GET',
|
|
method: 'GET',
|
|
|
- url: 'askGoods/getRemovalHalfProductExcel',
|
|
|
|
|
|
|
+ url: '/askGoods/getRemovalHalfProductExcel',
|
|
|
data,
|
|
data,
|
|
|
|
|
+ skipError: true,
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|