Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
Xziy committed Aug 9, 2023
1 parent 131ebf0 commit 10f3fdd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions models/OrderDish.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ declare let attributes: {
modifiers: OrderModifier[];
/** */
order: any;
/** Количество уникальных блюд в корзине */
/** The number of unique dishes in the basket */
uniqueItems: number;
/** цена позиции */
/** Position price*/
itemTotal: number;
/** цена позиции до применения скидок */
/** Position price before the use of discounts */
itemTotalBeforeDiscount: string;
/**Общая сумма скидки */
/**The total amount of the discount */
discountTotal: number;
/** Тип скидки */
/** Type discount */
discountType: string;
/** Сумма скидки */
/** Discount amount */
discountAmount: string;
/** Сообщение скидки */
/** postDiscounts */
discountMessage: string;
/** Comment to dish in order */
comment: string;
/** Метка кто добавил */
/** The label who added */
addedBy: string;
/** Вес */
weight: number;
Expand Down
16 changes: 8 additions & 8 deletions models/OrderDish.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ let attributes = {
order: {
model: "Order",
},
/** Количество уникальных блюд в корзине */
/** The number of unique dishes in the basket */
uniqueItems: "number",
/** цена позиции */
/** Position price*/
itemTotal: "number",
/** цена позиции до применения скидок */
/** Position price before the use of discounts */
itemTotalBeforeDiscount: "number",
/**Общая сумма скидки */
/**The total amount of the discount */
discountTotal: "number",
/** Тип скидки */
/** Type discount */
discountType: 'string',
/** Сумма скидки */
/** Discount amount */
discountAmount: "number",
/** Сообщение скидки */
/** postDiscounts */
discountMessage: "string",
/** Comment to dish in order */
comment: "string",
/** Метка кто добавил */
/** The label who added */
addedBy: {
type: "string",
defaultsTo: "user",
Expand Down

0 comments on commit 10f3fdd

Please sign in to comment.