import odooApi from '@/core/api/odooApi' import { getAuth } from '@/core/utils/auth' const airwayBillApi = async ({ orderId }) => { const auth = getAuth() const dataAirwayBill = await odooApi( 'GET', `/api/v1/partner/${auth.partnerId}/sale-order/${orderId}/awb` ) return dataAirwayBill } export default airwayBillApi