@spartacus/core
Version:
Spartacus - the core framework
87 lines (86 loc) • 2.64 kB
TypeScript
import { Address } from './address.model';
import { DeliveryOrderEntryGroup, PaymentDetails, PaymentType, Principal, PromotionResult, Voucher } from './cart.model';
import { PaginationModel, SortModel } from './misc.model';
import { DeliveryMode, OrderEntry, PickupOrderEntryGroup } from './order.model';
import { CostCenter } from './org-unit.model';
import { Price } from './product.model';
export interface ReplenishmentOrder {
active?: boolean;
appliedOrderPromotions?: PromotionResult[];
appliedProductPromotions?: PromotionResult[];
appliedVouchers?: Voucher[];
calculated?: boolean;
code?: string;
costCenter?: CostCenter;
deliveryAddress?: Address;
deliveryCost?: Price;
deliveryItemsQuantity?: number;
deliveryMode?: DeliveryMode;
deliveryOrderGroups?: DeliveryOrderEntryGroup[];
description?: string;
entries?: OrderEntry[];
expirationTime?: string;
firstDate?: string;
guid?: string;
name?: string;
net?: boolean;
orderDiscounts?: Price;
paymentInfo?: PaymentDetails;
paymentStatus?: string;
paymentType?: PaymentType;
pickupItemsQuantity?: number;
pickupOrderGroups?: PickupOrderEntryGroup[];
potentialOrderPromotions?: PromotionResult[];
potentialProductPromotions?: PromotionResult[];
productDiscounts?: Price;
purchaseOrderNumber?: string;
replenishmentOrderCode?: string;
saveTime?: string;
savedBy?: Principal;
site?: string;
store?: string;
subTotal?: Price;
totalDiscounts?: Price;
totalItems?: number;
totalPrice?: Price;
totalPriceWithTax?: Price;
totalTax?: Price;
totalUnitCount?: number;
trigger?: Trigger;
user?: Principal;
}
export interface ReplenishmentOrderList {
replenishmentOrders?: ReplenishmentOrder[];
pagination?: PaginationModel;
sorts?: SortModel[];
}
export interface Trigger {
activationTime?: string;
displayTimeTable?: string;
}
export interface ScheduleReplenishmentForm {
daysOfWeek?: DaysOfWeek[];
nthDayOfMonth?: string;
numberOfDays?: string;
numberOfWeeks?: string;
recurrencePeriod?: string;
replenishmentStartDate?: string;
}
export declare enum DaysOfWeek {
MONDAY = "MONDAY",
TUESDAY = "TUESDAY",
WEDNESDAY = "WEDNESDAY",
THURSDAY = "THURSDAY",
FRIDAY = "FRIDAY",
SATURDAY = "SATURDAY",
SUNDAY = "SUNDAY"
}
export declare const recurrencePeriod: {
DAILY: string;
WEEKLY: string;
MONTHLY: string;
};
export declare enum ORDER_TYPE {
PLACE_ORDER = "PLACE_ORDER",
SCHEDULE_REPLENISHMENT_ORDER = "SCHEDULE_REPLENISHMENT_ORDER"
}