Merge branch 'master' of https://hmg.git.cloudforge.com/mohemmionic5
commit
53fe3813b0
@ -0,0 +1,26 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
|
||||||
|
export class GetMoItemHistoryList extends Response {
|
||||||
|
public REQUEST_NUMBER: string;
|
||||||
|
public ITEM_CODE: string;
|
||||||
|
public DESCRIPTION: string;
|
||||||
|
public UNIT_OF_MEASURE: string;
|
||||||
|
public QUANTITY: number;
|
||||||
|
public DATE_REQUIRED: Date;
|
||||||
|
public LINE_STATUS_DIS: string;
|
||||||
|
public STATUS_DATE: Date;
|
||||||
|
public TRANSACTION_TYPE_NAME: string;
|
||||||
|
public ORGANIZATION_ID: number;
|
||||||
|
public ORGANIZATION_CODE: string;
|
||||||
|
public ORGANIZATION_NAME: string;
|
||||||
|
public OPERATING_UNIT_NAM: string;
|
||||||
|
public FROM_SUBINVENTORY_CODE: string;
|
||||||
|
public FROM_LOCATOR: string;
|
||||||
|
public TO_SUBINVENTORY_CODE: string;
|
||||||
|
public TO_LOCATOR: string;
|
||||||
|
public SHIP_TO_LOCATION: string;
|
||||||
|
public ROW_NUM: number;
|
||||||
|
public NO_OF_ROWS: number;
|
||||||
|
public FROM_ROW_NUM: number;
|
||||||
|
public TO_ROW_NUM: number;
|
||||||
|
}
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
import { Request } from "./request";
|
||||||
|
|
||||||
|
export class MOItemHistoryReq extends Request {
|
||||||
|
//public static SHARED_DATA = '';
|
||||||
|
public P_ORG_ID: number;
|
||||||
|
public P_ITEM_ID: number;
|
||||||
|
public P_PAGE_NUM: number;
|
||||||
|
public P_PAGE_LIMIT: number;
|
||||||
|
}
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
import { GetMoItemHistoryList } from './MOItemHistoryList';
|
||||||
|
|
||||||
|
export class MOItemHistoryRes extends Response {
|
||||||
|
public GetMoItemHistoryList: GetMoItemHistoryList;
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
export class MONotificationBodyItems {
|
||||||
|
public LINE_NUMBER: number;
|
||||||
|
public ITEM_CODE: string;
|
||||||
|
public DESCRIPTION: string;
|
||||||
|
public UOM: string;
|
||||||
|
public QUANTITY: number;
|
||||||
|
public DATE_REQUIRED: Date;
|
||||||
|
public LINE_STATUS: string;
|
||||||
|
public TATUS_DATE: Date;
|
||||||
|
public TRANSACTION_TYPE_NAME: string;
|
||||||
|
public OPERATING_UNIT: string;
|
||||||
|
public ORGANIZATION_CODE: string;
|
||||||
|
public ORGANIZATION_NAME: string;
|
||||||
|
public FROM_SUBINVENTORY: string;
|
||||||
|
public TO_SUBINVENTORY: string;
|
||||||
|
public FROM_LOCATOR: string;
|
||||||
|
public TO_LOCATOR: string;
|
||||||
|
public SHIP_TO_LOCATION: string;
|
||||||
|
public NO_OF_ROWS: number;
|
||||||
|
public ROW_NUM: number;
|
||||||
|
public FROM_ROW_NUM: number;
|
||||||
|
public TO_ROW_NUM: number;
|
||||||
|
public ITEM_ID: number;
|
||||||
|
public ORG_ID: number;
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
import { MONotificationBodyItems } from './MONotificationBodyItems';
|
||||||
|
|
||||||
|
export class MONotificatonBodyResponse extends Response {
|
||||||
|
//public static SHARED_DATA = "Abs_Notif_BODY_List";
|
||||||
|
//public static NOT_WORKLIST = "Abs_Notif_WORK_LIST";
|
||||||
|
public GetMoNotificationBodyList: MONotificationBodyItems;
|
||||||
|
}
|
||||||
@ -1,8 +1,9 @@
|
|||||||
import { Request } from './request';
|
import { Request } from "./request";
|
||||||
|
|
||||||
export class WorkListBodyRequest extends Request{
|
export class WorkListBodyRequest extends Request {
|
||||||
// public static SHARED_DATA = '';
|
// public static SHARED_DATA = '';
|
||||||
public P_NOTIFICATION_ID :any;
|
public P_NOTIFICATION_ID: any;
|
||||||
public P_TRANSACTION_ID :number;
|
public P_TRANSACTION_ID: number;
|
||||||
|
public P_PAGE_NUM: number;
|
||||||
|
public P_PAGE_LIMIT: number;
|
||||||
}
|
}
|
||||||
@ -0,0 +1,24 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
|
||||||
|
export class GetItemHistoryList extends Response {
|
||||||
|
public OU_NAME: string;
|
||||||
|
public REVISION_NUM: number;
|
||||||
|
public CREATION_DATE: string;
|
||||||
|
public BUYER: string;
|
||||||
|
public ITEM_ID: number;
|
||||||
|
public BONUS_QUANTITY: number;
|
||||||
|
public DISCOUNT_PERCENTAGE: number;
|
||||||
|
public CLOSED_CODE: string;
|
||||||
|
public ROW_NUM: number;
|
||||||
|
public FROM_ROW_NUM: number;
|
||||||
|
public PO_NUMBER: string;
|
||||||
|
public SUPPLIER: string;
|
||||||
|
public UOM: string;
|
||||||
|
public QUANTITY_ORDERED: number;
|
||||||
|
public QUANTITY_RECEIVED: number;
|
||||||
|
public PURCHASE_PRICE: number;
|
||||||
|
public NET_PRICE: number;
|
||||||
|
public BALANCE_QUANTITY: number;
|
||||||
|
public NO_OF_ROWS: number;
|
||||||
|
public TO_ROW_NUM: number;
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
import { Request } from "./request";
|
||||||
|
|
||||||
|
export class POItemHistoryRequest extends Request {
|
||||||
|
//public static SHARED_DATA = '';
|
||||||
|
public P_ITEM_ID: number;
|
||||||
|
public P_PAGE_NUM: number;
|
||||||
|
public P_PAGE_LIMIT: number;
|
||||||
|
}
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
import { GetItemHistoryList } from "./POItemHistoryList";
|
||||||
|
|
||||||
|
export class POItemHistoryRes extends Response {
|
||||||
|
public GetItemHistoryList: GetItemHistoryList;
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
import { PoHeaderNotificationBodyItems } from "./PoHeaderNotificationBodyItems";
|
||||||
|
import { PoLinesNotificationBodyItems } from "./PoLinesNotificationBodyItems";
|
||||||
|
|
||||||
|
export class PONotificatonBodyList extends Response {
|
||||||
|
public POHeader: PoHeaderNotificationBodyItems[];
|
||||||
|
public POLines: PoLinesNotificationBodyItems[];
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
import { PONotificatonBodyList } from "./PONotificationBodyList";
|
||||||
|
|
||||||
|
export class PONotificatonBodyResponse extends Response {
|
||||||
|
//public static SHARED_DATA = "Abs_Notif_BODY_List";
|
||||||
|
//public static NOT_WORKLIST = "Abs_Notif_WORK_LIST";
|
||||||
|
public GetPoNotificationBodyList: PONotificatonBodyList;
|
||||||
|
}
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
export class PRHeaderNotificationBodyItems {
|
||||||
|
public HDR_ATTRIBUTE_NAME: string;
|
||||||
|
public HDR_ATTRIBUTE_VALUE: string;
|
||||||
|
}
|
||||||
@ -0,0 +1,15 @@
|
|||||||
|
export class PRLinesNotificationBodyItems {
|
||||||
|
public LINE_NUM: number;
|
||||||
|
public DESCRIPTION: string;
|
||||||
|
public UOM: string;
|
||||||
|
public UNIT_PRICE: number;
|
||||||
|
public ITEM_AMU: number;
|
||||||
|
public NO_OF_ROWS: number;
|
||||||
|
public FROM_ROW_NUM: number;
|
||||||
|
public ITEM_CODE: string;
|
||||||
|
public COST_CENTER: string;
|
||||||
|
public QUANTITY: number;
|
||||||
|
public LINE_AMOUNT: number;
|
||||||
|
public ROW_NUM: number;
|
||||||
|
public TO_ROW_NUM: number;
|
||||||
|
}
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
import { PRLinesNotificationBodyItems } from "./PRLinesNotificationBodyItems";
|
||||||
|
import { PRHeaderNotificationBodyItems } from "./PRHeaderNotificationBodyItems";
|
||||||
|
|
||||||
|
export class PRNotificatonBodyList extends Response {
|
||||||
|
public PRHeader: PRHeaderNotificationBodyItems[];
|
||||||
|
public PRLines: PRLinesNotificationBodyItems[];
|
||||||
|
public P_CURRENCY_CODE: string;
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
import { PRNotificatonBodyList } from './PRNotificationBodyList';
|
||||||
|
|
||||||
|
export class PRNotificatonBodyResponse extends Response {
|
||||||
|
//public static SHARED_DATA = "Abs_Notif_BODY_List";
|
||||||
|
//public static NOT_WORKLIST = "Abs_Notif_WORK_LIST";
|
||||||
|
public GetPrNotificationBodyList: PRNotificatonBodyList;
|
||||||
|
}
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
export class PoHeaderNotificationBodyItems {
|
||||||
|
public PO_NUMBER: string;
|
||||||
|
public VENDOR_SITE_CODE: string;
|
||||||
|
public BUYER: string;
|
||||||
|
public SHIP_TO_LOCATION_NAME: string;
|
||||||
|
public QUOTATION_DATE: string;
|
||||||
|
public COMMENTS: string;
|
||||||
|
public GROSS_AMOUNT: number;
|
||||||
|
public TOTAL_PO_DISCOUNT: number;
|
||||||
|
public CUSTOM_DUTY: number;
|
||||||
|
public THER_CHARGES: number;
|
||||||
|
public LOC_CUR: string;
|
||||||
|
public TOT_PO_AMT_WORD: string;
|
||||||
|
public VENDOR_NAME: string;
|
||||||
|
public PREPARER: string;
|
||||||
|
public CREATION_DATE: string;
|
||||||
|
public QUOTATION_NUMBER: string;
|
||||||
|
public PAYMENT_TERMS: string;
|
||||||
|
public CURRENCY_NAME: string;
|
||||||
|
public DISCOUNT_AMOUNT: number;
|
||||||
|
public SALES_TAX: number;
|
||||||
|
public SHIP_HANDLE: number;
|
||||||
|
public TOT_PO_AMT: number;
|
||||||
|
public LOC_CUR_TOT_PO_AMT: number;
|
||||||
|
}
|
||||||
@ -0,0 +1,14 @@
|
|||||||
|
export class PoLinesNotificationBodyItems {
|
||||||
|
public LINE_NUM: number;
|
||||||
|
public ITEM_ID: number;
|
||||||
|
public ITEM_CODE: string;
|
||||||
|
public MFG: string;
|
||||||
|
public UOM: string;
|
||||||
|
public QUANTITY: number;
|
||||||
|
public PO_HEADER_ID: number;
|
||||||
|
public ITEM_DESCRIPTION: string;
|
||||||
|
public LINE_TYP: string;
|
||||||
|
public UNIT_PRICE: number;
|
||||||
|
public LINE_DISC_PERCENTAGE: number;
|
||||||
|
public PROMISED_DATE: string;
|
||||||
|
}
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
import { Response } from './response';
|
||||||
|
|
||||||
|
export class QuotationAnalysisList extends Response {
|
||||||
|
public QUOT_NUM: string;
|
||||||
|
public ITEM_CODE: string;
|
||||||
|
public QUOT_QTY: number;
|
||||||
|
public QUOT_UNIT_PRICE: number;
|
||||||
|
public QUOT_BONUS_QTY: string;
|
||||||
|
public QUOT_MFG_PART_NUM: string;
|
||||||
|
public RFQ_QTY: number;
|
||||||
|
public ROW_NUM: number;
|
||||||
|
public FROM_ROW_NUM: number;
|
||||||
|
public VENDOR_NAME: string;
|
||||||
|
public ITEM_DESC: string;
|
||||||
|
public QUOT_UOM: string;
|
||||||
|
public QUOT_LINE_TOTAL: number;
|
||||||
|
public QUOT_DELIVERY_DATE: string;
|
||||||
|
public RFQ_NUM: string;
|
||||||
|
public RFQ_UOM: string;
|
||||||
|
public NO_OF_ROWS: number;
|
||||||
|
public TO_ROW_NUM: number;
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
import { Request } from "./request";
|
||||||
|
|
||||||
|
export class QuotationAnalysisRequest extends Request {
|
||||||
|
public P_PO_HEADER_ID: number;
|
||||||
|
public P_ITEM_ID: number;
|
||||||
|
public P_PAGE_NUM: number;
|
||||||
|
public P_PAGE_LIMIT: number;
|
||||||
|
}
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
import { Response } from "./response";
|
||||||
|
import {QuotationAnalysisList } from "./quotationAnalysisList";
|
||||||
|
|
||||||
|
export class QuotationAnalysisResponse extends Response {
|
||||||
|
public GetQuotationAnalysisList: QuotationAnalysisList;
|
||||||
|
}
|
||||||
@ -1 +0,0 @@
|
|||||||
,HMG/Mohamed.Mekawy,CS-1F-MOHAMED,01.10.2019 15:25,file:///C:/Users/mohamed.mekawy/AppData/Roaming/LibreOffice/4;
|
|
||||||
Loading…
Reference in New Issue