Linter, translations
This commit is contained in:
parent
4cf8c95347
commit
c7562ebb72
2 changed files with 15 additions and 15 deletions
|
@ -3482,6 +3482,10 @@
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Payment was voided"
|
"string": "Payment was voided"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_2607524598": {
|
||||||
|
"context": "order history message",
|
||||||
|
"string": "Products were deleted from an order"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_2655541129": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_2655541129": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Order was fully paid"
|
"string": "Order was fully paid"
|
||||||
|
@ -3514,14 +3518,14 @@
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Payment was refunded"
|
"string": "Payment was refunded"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_3506022286": {
|
|
||||||
"context": "order history message",
|
|
||||||
"string": "Products were added to draft order"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_3731274949": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_3731274949": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Order was refunded by {refundedBy}"
|
"string": "Order was refunded by {refundedBy}"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_3796744261": {
|
||||||
|
"context": "order history message",
|
||||||
|
"string": "Products were added to an order"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_393045022": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_393045022": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Invoice no. {invoiceNumber} was updated"
|
"string": "Invoice no. {invoiceNumber} was updated"
|
||||||
|
@ -3533,10 +3537,6 @@
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Oversold {quantity} items"
|
"string": "Oversold {quantity} items"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_4067959693": {
|
|
||||||
"context": "order history message",
|
|
||||||
"string": "Products were deleted from draft order"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_4121987561": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_4121987561": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Order refund information was sent to customer"
|
"string": "Order refund information was sent to customer"
|
||||||
|
|
|
@ -64,6 +64,13 @@ export interface OrderDetailsPageProps extends UserPermissionProps {
|
||||||
}>;
|
}>;
|
||||||
disabled: boolean;
|
disabled: boolean;
|
||||||
saveButtonBarState: ConfirmButtonTransitionState;
|
saveButtonBarState: ConfirmButtonTransitionState;
|
||||||
|
onOrderLineAdd?: () => void;
|
||||||
|
onOrderLineChange?: (
|
||||||
|
id: string,
|
||||||
|
data: OrderDraftDetailsProductsFormData
|
||||||
|
) => void;
|
||||||
|
onOrderLineRemove?: (id: string) => void;
|
||||||
|
onShippingMethodEdit?: () => void;
|
||||||
onBack();
|
onBack();
|
||||||
onBillingAddressEdit();
|
onBillingAddressEdit();
|
||||||
onFulfillmentCancel(id: string);
|
onFulfillmentCancel(id: string);
|
||||||
|
@ -79,13 +86,6 @@ export interface OrderDetailsPageProps extends UserPermissionProps {
|
||||||
onNoteAdd(data: HistoryFormData);
|
onNoteAdd(data: HistoryFormData);
|
||||||
onProfileView();
|
onProfileView();
|
||||||
onOrderReturn();
|
onOrderReturn();
|
||||||
onOrderLineAdd: () => void;
|
|
||||||
onOrderLineChange: (
|
|
||||||
id: string,
|
|
||||||
data: OrderDraftDetailsProductsFormData
|
|
||||||
) => void;
|
|
||||||
onOrderLineRemove: (id: string) => void;
|
|
||||||
onShippingMethodEdit();
|
|
||||||
onInvoiceClick(invoiceId: string);
|
onInvoiceClick(invoiceId: string);
|
||||||
onInvoiceGenerate();
|
onInvoiceGenerate();
|
||||||
onInvoiceSend(invoiceId: string);
|
onInvoiceSend(invoiceId: string);
|
||||||
|
|
Loading…
Reference in a new issue