From 49c0dca9ec01cd35d616695e7ebac428305b8a77 Mon Sep 17 00:00:00 2001 From: xuli Date: Tue, 13 Aug 2024 13:46:24 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=91=E6=9D=A8-=E6=95=A3=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/shared/service-proxies/service-proxies.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/vue/src/shared/service-proxies/service-proxies.ts b/src/vue/src/shared/service-proxies/service-proxies.ts index ba7e7168..e465786e 100644 --- a/src/vue/src/shared/service-proxies/service-proxies.ts +++ b/src/vue/src/shared/service-proxies/service-proxies.ts @@ -46889,12 +46889,15 @@ export class IcsSanJBarCodeServiceProxy { /** * @param barCodeNo (optional) + * @param doType (optional) * @return Success */ - getBarCodeData(barCodeNo: string | null | undefined , cancelToken?: CancelToken | undefined): Promise { + getBarCodeData(barCodeNo: string | null | undefined, doType: string | null | undefined , cancelToken?: CancelToken | undefined): Promise { let url_ = this.baseUrl + "/api/services/app/IcsSanJBarCode/GetBarCodeData?"; if (barCodeNo !== undefined && barCodeNo !== null) url_ += "barCodeNo=" + encodeURIComponent("" + barCodeNo) + "&"; + if (doType !== undefined && doType !== null) + url_ += "doType=" + encodeURIComponent("" + doType) + "&"; url_ = url_.replace(/[?&]$/, ""); let options_: AxiosRequestConfig = { @@ -124751,6 +124754,8 @@ export class IcsSanJBarCodeListDto implements IIcsSanJBarCodeListDto { printTimes: number; lastPrintUserCode: string | undefined; lastPrintDate: moment.Moment | undefined; + lastToOutBarCode: string | undefined; + lastToOutBar_ProductDate: moment.Moment | undefined; creatorUserName: string | undefined; lastModifierUserName: string | undefined; lastModificationTime: moment.Moment | undefined; @@ -124791,6 +124796,8 @@ export class IcsSanJBarCodeListDto implements IIcsSanJBarCodeListDto { this.printTimes = _data["printTimes"]; this.lastPrintUserCode = _data["lastPrintUserCode"]; this.lastPrintDate = _data["lastPrintDate"] ? moment(_data["lastPrintDate"].toString()) : undefined; + this.lastToOutBarCode = _data["lastToOutBarCode"]; + this.lastToOutBar_ProductDate = _data["lastToOutBar_ProductDate"] ? moment(_data["lastToOutBar_ProductDate"].toString()) : undefined; this.creatorUserName = _data["creatorUserName"]; this.lastModifierUserName = _data["lastModifierUserName"]; this.lastModificationTime = _data["lastModificationTime"] ? moment(_data["lastModificationTime"].toString()) : undefined; @@ -124831,6 +124838,8 @@ export class IcsSanJBarCodeListDto implements IIcsSanJBarCodeListDto { data["printTimes"] = this.printTimes; data["lastPrintUserCode"] = this.lastPrintUserCode; data["lastPrintDate"] = this.lastPrintDate ? this.lastPrintDate.toISOString() : undefined; + data["lastToOutBarCode"] = this.lastToOutBarCode; + data["lastToOutBar_ProductDate"] = this.lastToOutBar_ProductDate ? this.lastToOutBar_ProductDate.toISOString() : undefined; data["creatorUserName"] = this.creatorUserName; data["lastModifierUserName"] = this.lastModifierUserName; data["lastModificationTime"] = this.lastModificationTime ? this.lastModificationTime.toISOString() : undefined; @@ -124871,6 +124880,8 @@ export interface IIcsSanJBarCodeListDto { printTimes: number; lastPrintUserCode: string | undefined; lastPrintDate: moment.Moment | undefined; + lastToOutBarCode: string | undefined; + lastToOutBar_ProductDate: moment.Moment | undefined; creatorUserName: string | undefined; lastModifierUserName: string | undefined; lastModificationTime: moment.Moment | undefined;