Skip to content

Commit

Permalink
注文ステータスにOrderInTransitを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Jan 12, 2024
1 parent a2a2993 commit eba8d7d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/task/sendOrder.ts
@@ -1,11 +1,16 @@
import * as SendOrderActionFactory from '../action/transfer/send/order';
import { IExtendId } from '../autoGenerated';
import { OrderStatus } from '../orderStatus';
import { IProject } from '../project';
import * as TaskFactory from '../task';
import { TaskName } from '../taskName';

export type IObject = SendOrderActionFactory.IObject & {
confirmationNumber: string;
/**
* OrderInTransit導入期の互換性維持対応として
*/
previousOrderStatus?: OrderStatus.OrderProcessing | OrderStatus.OrderInTransit;
};
export interface IData {
project: Pick<IProject, 'id' | 'typeOf'>;
Expand Down

0 comments on commit eba8d7d

Please sign in to comment.