fix: type error

This commit is contained in:
Methapon Metanipat 2024-10-11 09:17:10 +07:00
parent 01fa1ebe4e
commit 3f370350e7

View file

@ -1,6 +1,14 @@
import { CustomerType } from '../customer/types';
import { Status } from '../types';
type CustomerBranchRelation = {
customer: {
registeredBranchId: string;
selectedImage: string | null;
code: string;
customerType: CustomerType;
status: Status;
};
customerCode?: string;
wageRateText: string;
wageRate: number;