From 51380629085019ec415fa8a5b54b802de461a4e5 Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期一, 22 十二月 2025 16:02:21 +0800
Subject: [PATCH] 应收费用日志
---
ui/admin-ui3/src/api/tms/tmsDispatchOrder.ts | 139 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 137 insertions(+), 2 deletions(-)
diff --git a/ui/admin-ui3/src/api/tms/tmsDispatchOrder.ts b/ui/admin-ui3/src/api/tms/tmsDispatchOrder.ts
index dcaefcc..6ccfb59 100644
--- a/ui/admin-ui3/src/api/tms/tmsDispatchOrder.ts
+++ b/ui/admin-ui3/src/api/tms/tmsDispatchOrder.ts
@@ -1,8 +1,82 @@
import request, {download, requestType} from "@/utils/request";
import {BaseEntityInterface} from "@/utils/globalInterface";
-export interface TmsDispatchOrderI extends BaseEntityInterface{
- id ?: number , dispatchNo ?: string , customerId ?: number , customerCode ?: string , projectId ?: number , projectName ?: string , contractId ?: number , contractName ?: string , orderType ?: number , transportLine ?: string , signType ?: number , vehicleProviderId ?: number , vehicleProviderName ?: string , loadingServiceProviderId ?: number , loadingServiceProviderName ?: string , customsServiceProviderId ?: number , customsServiceProviderName ?: string , isUrgent ?: number , transportType ?: number , loadMethod ?: number , mainDriverId ?: number , mainDriverName ?: string , assistantDriverId ?: number , requiredVehicleTypes ?: string , assistantDriverName ?: string , containerNo ?: string , vehicleId ?: number , licensePlate ?: string , earliestDeparture ?: string , shipperId ?: number , latestDeparture ?: string , shipperName ?: string , shipperMobile ?: string , earliestArrival ?: string , shipperAddress ?: string , latestArrival ?: string , departureAddress ?: string , shipperRegionCode ?: string , destinationAddress ?: string , receiverId ?: number , actualVehicleType ?: string , receiverName ?: string , actualLoadStart ?: string , receiverMobile ?: string , actualUnloadEnd ?: string , receiverAddress ?: string , actualDeparture ?: string , receiverRegionCode ?: string , actualArrival ?: string , actualQuantity ?: string , actualWeight ?: string , actualVolume ?: string , reweighWeight ?: string , containerId ?: number , electronicLock ?: string , shelfId ?: number , emptyMileage ?: string , emptyFuel ?: string , shelfCode ?: string , loadedMileage ?: string , loadedFuel ?: string , shiftNo ?: string , lineNo ?: string , status ?: number , createBy ?: string , createTime ?: string , updateBy ?: string , updateTime ?: string , remark ?: string , accountsReceivableStatus ?: number , accountsPayableStatus ?: number }
+export interface TmsDispatchOrderI extends BaseEntityInterface {
+ id?: number,
+ dispatchNo?: string,
+ customerId?: number,
+ customerCode?: string,
+ projectId?: number,
+ projectName?: string,
+ contractId?: number,
+ contractName?: string,
+ orderType?: number,
+ transportLine?: string,
+ signType?: number,
+ vehicleProviderId?: number,
+ vehicleProviderName?: string,
+ loadingServiceProviderId?: number,
+ loadingServiceProviderName?: string,
+ customsServiceProviderId?: number,
+ customsServiceProviderName?: string,
+ isUrgent?: number,
+ transportType?: number,
+ loadMethod?: number,
+ mainDriverId?: number,
+ mainDriverName?: string,
+ assistantDriverId?: number,
+ requiredVehicleTypes?: string,
+ assistantDriverName?: string,
+ containerNo?: string,
+ vehicleId?: number,
+ licensePlate?: string,
+ earliestDeparture?: string,
+ shipperId?: number,
+ latestDeparture?: string,
+ shipperName?: string,
+ shipperMobile?: string,
+ earliestArrival?: string,
+ shipperAddress?: string,
+ latestArrival?: string,
+ departureAddress?: string,
+ shipperRegionCode?: string,
+ destinationAddress?: string,
+ receiverId?: number,
+ actualVehicleType?: string,
+ receiverName?: string,
+ actualLoadStart?: string,
+ receiverMobile?: string,
+ actualUnloadEnd?: string,
+ receiverAddress?: string,
+ actualDeparture?: string,
+ receiverRegionCode?: string,
+ actualArrival?: string,
+ actualQuantity?: string,
+ actualWeight?: string,
+ actualVolume?: string,
+ reweighWeight?: string,
+ containerId?: number,
+ electronicLock?: string,
+ shelfId?: number,
+ emptyMileage?: string,
+ emptyFuel?: string,
+ shelfCode?: string,
+ loadedMileage?: string,
+ loadedFuel?: string,
+ shiftNo?: string,
+ lineNo?: string,
+ status?: number,
+ createBy?: string,
+ createTime?: string,
+ updateBy?: string,
+ updateTime?: string,
+ remark?: string,
+ accountsReceivableStatus?: number,
+ accountsPayableStatus?: number,
+ shipperRegionLabel:string,
+ receiverRegionLabel:string,
+ [key: string]: any,
+}
/**
@@ -24,6 +98,24 @@
method: 'get'
})
}
+export const confirmOrder: requestType = (id) => {
+ return request({
+ url: '/tms/tmsDispatchOrder/confirmOrder/' + id,
+ method: 'get'
+ })
+}
+export const copyOrder: requestType = (id) => {
+ return request({
+ url: '/tms/tmsDispatchOrder/copyOrder/' + id,
+ method: 'get'
+ })
+}
+export const okOrder: requestType = (id) => {
+ return request({
+ url: '/tms/tmsDispatchOrder/okOrder/' + id,
+ method: 'get'
+ })
+}
/**
* 鏂板璋冨害鍗曠鐞�
@@ -35,6 +127,14 @@
data
})
}
+
+export const generateTmsDispatchOrder: requestType = (id) => {
+ return request({
+ url: '/tms/tmsDispatchOrder/generateTmsDispatchOrder/'+id,
+ method: 'get',
+ })
+}
+
/**
* 淇敼璋冨害鍗曠鐞�
@@ -57,6 +157,41 @@
})
}
+export const initGenerate: requestType = (id) => {
+ return request({
+ url: '/tms/tmsDispatchOrder/initGenerate/' + id,
+ method: 'get'
+ })
+}
+export const dropHook: requestType = (id) => {
+ return request({
+ url: '/tms/tmsDispatchOrder/dropHook/' + id,
+ method: 'get'
+ })
+}
+export const connectHang: requestType = (data) => {
+ return request({
+ url: '/tms/tmsDispatchOrder/connectHang',
+ method: 'post',
+ data
+ })
+}
+
+export const customsOrder: requestType = (data) => {
+ return request({
+ url: '/tms/tmsDispatchOrder/customsOrder',
+ method: 'post',
+ data
+ })
+}
+export const loadingOrder: requestType = (data) => {
+ return request({
+ url: '/tms/tmsDispatchOrder/loadingOrder',
+ method: 'post',
+ data
+ })
+}
+
/**
* 瀵煎嚭璋冨害鍗曠鐞�
--
Gitblit v1.8.0