simpleloan_api 1.1.7 → 1.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +20 -20
- package/dist/index.mjs +14 -14
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -500,25 +500,25 @@ declare const useGetAkbarsPrintformList: () => {
|
|
|
500
500
|
}> | undefined): Promise<ApiResponse<AkbarsPrintform[]> | null>;
|
|
501
501
|
};
|
|
502
502
|
/** Добавить/Редактировать залог к заявке Ак Барс Банка */
|
|
503
|
-
declare const
|
|
503
|
+
declare const useUpdateAkbarsDeposit: () => {
|
|
504
504
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
505
505
|
pending: vue.Ref<boolean>;
|
|
506
506
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
507
507
|
};
|
|
508
508
|
/** Получить залог из заявки Ак Барс Банка */
|
|
509
|
-
declare const
|
|
509
|
+
declare const useGetAkbarsDeposit: () => {
|
|
510
510
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
511
511
|
pending: vue.Ref<boolean>;
|
|
512
512
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
513
513
|
};
|
|
514
514
|
/** Отправить информацию об залоге со сканами в Ак Барс Банк */
|
|
515
|
-
declare const
|
|
515
|
+
declare const useSendAkbarsDeposit: () => {
|
|
516
516
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
517
517
|
pending: vue.Ref<boolean>;
|
|
518
518
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
519
519
|
};
|
|
520
520
|
/** Загрузить скан депозита в заявку Ак Барс Банка */
|
|
521
|
-
declare const
|
|
521
|
+
declare const useUploadAkbarsDepositScan: () => {
|
|
522
522
|
response: vue.Ref<ApiResponse<AkbarsDepositScan> | null>;
|
|
523
523
|
pending: vue.Ref<boolean>;
|
|
524
524
|
post(params?: PostParams<{
|
|
@@ -528,7 +528,7 @@ declare const useUploadAkbarsDepositeScan: () => {
|
|
|
528
528
|
}> | undefined): Promise<ApiResponse<AkbarsDepositScan> | null>;
|
|
529
529
|
};
|
|
530
530
|
/** Получить список сканов депозита в заявке Ак Барс Банка */
|
|
531
|
-
declare const
|
|
531
|
+
declare const useGetAkbarsDepositScanList: () => {
|
|
532
532
|
response: vue.Ref<ApiResponse<AkbarsDepositScan[]> | null>;
|
|
533
533
|
pending: vue.Ref<boolean>;
|
|
534
534
|
post(params?: PostParams<{
|
|
@@ -536,7 +536,7 @@ declare const useGetAkbarsDepositeScanList: () => {
|
|
|
536
536
|
}> | undefined): Promise<ApiResponse<AkbarsDepositScan[]> | null>;
|
|
537
537
|
};
|
|
538
538
|
/** Удалить скан депозита в заявке Ак Барс Банка */
|
|
539
|
-
declare const
|
|
539
|
+
declare const useDeleteAkbarsDepositScan: () => {
|
|
540
540
|
response: vue.Ref<ApiResponse<null> | null>;
|
|
541
541
|
pending: vue.Ref<boolean>;
|
|
542
542
|
post(params?: PostParams<{
|
|
@@ -733,4 +733,4 @@ type Mode = 'development' | 'production';
|
|
|
733
733
|
declare function setMode(newMode: Mode): void;
|
|
734
734
|
declare function getMode(): Mode;
|
|
735
735
|
|
|
736
|
-
export { type Address, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type Brokerclient, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type User, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCloneSalespoint, useCloneUser, useDeleteAkbars,
|
|
736
|
+
export { type Address, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type Brokerclient, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type User, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCloneSalespoint, useCloneUser, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteBrokerclient, useDeleteGroupUser, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDictList, useGetAkbarsList, useGetAkbarsPrintformList, useGetBrokerclient, useGetBrokerclientList, useGetSalespoint, useGetSalespointList, useGetUser, useGetUserList, useLoanerApprovingAkbarsStatus, useProcessingAkbars, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateBrokerclient, useUpdateManySalespoint, useUpdateManyUser, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan };
|
package/dist/index.d.ts
CHANGED
|
@@ -500,25 +500,25 @@ declare const useGetAkbarsPrintformList: () => {
|
|
|
500
500
|
}> | undefined): Promise<ApiResponse<AkbarsPrintform[]> | null>;
|
|
501
501
|
};
|
|
502
502
|
/** Добавить/Редактировать залог к заявке Ак Барс Банка */
|
|
503
|
-
declare const
|
|
503
|
+
declare const useUpdateAkbarsDeposit: () => {
|
|
504
504
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
505
505
|
pending: vue.Ref<boolean>;
|
|
506
506
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
507
507
|
};
|
|
508
508
|
/** Получить залог из заявки Ак Барс Банка */
|
|
509
|
-
declare const
|
|
509
|
+
declare const useGetAkbarsDeposit: () => {
|
|
510
510
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
511
511
|
pending: vue.Ref<boolean>;
|
|
512
512
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
513
513
|
};
|
|
514
514
|
/** Отправить информацию об залоге со сканами в Ак Барс Банк */
|
|
515
|
-
declare const
|
|
515
|
+
declare const useSendAkbarsDeposit: () => {
|
|
516
516
|
response: vue.Ref<ApiResponse<AkbarsDeposit> | null>;
|
|
517
517
|
pending: vue.Ref<boolean>;
|
|
518
518
|
post(params?: PostParams<Partial<AkbarsDeposit>> | undefined): Promise<ApiResponse<AkbarsDeposit> | null>;
|
|
519
519
|
};
|
|
520
520
|
/** Загрузить скан депозита в заявку Ак Барс Банка */
|
|
521
|
-
declare const
|
|
521
|
+
declare const useUploadAkbarsDepositScan: () => {
|
|
522
522
|
response: vue.Ref<ApiResponse<AkbarsDepositScan> | null>;
|
|
523
523
|
pending: vue.Ref<boolean>;
|
|
524
524
|
post(params?: PostParams<{
|
|
@@ -528,7 +528,7 @@ declare const useUploadAkbarsDepositeScan: () => {
|
|
|
528
528
|
}> | undefined): Promise<ApiResponse<AkbarsDepositScan> | null>;
|
|
529
529
|
};
|
|
530
530
|
/** Получить список сканов депозита в заявке Ак Барс Банка */
|
|
531
|
-
declare const
|
|
531
|
+
declare const useGetAkbarsDepositScanList: () => {
|
|
532
532
|
response: vue.Ref<ApiResponse<AkbarsDepositScan[]> | null>;
|
|
533
533
|
pending: vue.Ref<boolean>;
|
|
534
534
|
post(params?: PostParams<{
|
|
@@ -536,7 +536,7 @@ declare const useGetAkbarsDepositeScanList: () => {
|
|
|
536
536
|
}> | undefined): Promise<ApiResponse<AkbarsDepositScan[]> | null>;
|
|
537
537
|
};
|
|
538
538
|
/** Удалить скан депозита в заявке Ак Барс Банка */
|
|
539
|
-
declare const
|
|
539
|
+
declare const useDeleteAkbarsDepositScan: () => {
|
|
540
540
|
response: vue.Ref<ApiResponse<null> | null>;
|
|
541
541
|
pending: vue.Ref<boolean>;
|
|
542
542
|
post(params?: PostParams<{
|
|
@@ -733,4 +733,4 @@ type Mode = 'development' | 'production';
|
|
|
733
733
|
declare function setMode(newMode: Mode): void;
|
|
734
734
|
declare function getMode(): Mode;
|
|
735
735
|
|
|
736
|
-
export { type Address, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type Brokerclient, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type User, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCloneSalespoint, useCloneUser, useDeleteAkbars,
|
|
736
|
+
export { type Address, type Akbars, type AkbarsDeposit, type AkbarsDepositScan, type AkbarsDictNames, type AkbarsOffer, type AkbarsPrintform, type AkbarsStages, type Brokerclient, type Dict, type DictItem, type Login, type LoginResponse, type Mortgage, type MortgageBankAppStatus, type MortgageBankNames, type MortgageStages, type Salespoint, type SalespointCreditType, type SalespointInsuranceMode, type SalespointNotificationMode, type Sex, type UploadB64File, type User, getMode, setMode, useAccountCheckLogin, useAccountLogin, useAccountLogout, useAccountLogoutUser, useAccountRegister, useAccountResetPassword, useAccountResetPasswordConfirmNew, useAccountUpdatePassword, useAddGroupUser, useAddStaffBrokerclient, useAddStaffSalespoint, useAskAkbarsPrintforms, useCloneSalespoint, useCloneUser, useDeleteAkbars, useDeleteAkbarsDepositScan, useDeleteBrokerclient, useDeleteGroupUser, useDeleteSalespoint, useDeleteStaffBrokerclient, useDeleteStaffSalespoint, useDeleteUser, useGenerateAkbarsScansApplications, useGetAkbars, useGetAkbarsDeposit, useGetAkbarsDepositScanList, useGetAkbarsDictList, useGetAkbarsList, useGetAkbarsPrintformList, useGetBrokerclient, useGetBrokerclientList, useGetSalespoint, useGetSalespointList, useGetUser, useGetUserList, useLoanerApprovingAkbarsStatus, useProcessingAkbars, useSendAkbars, useSendAkbarsDeposit, useSendAkbarsScans, useUpdateAkbars, useUpdateAkbarsDeposit, useUpdateBrokerclient, useUpdateManySalespoint, useUpdateManyUser, useUpdateSalespoint, useUpdateUser, useUploadAkbarsDepositScan };
|
package/dist/index.js
CHANGED
|
@@ -57,7 +57,7 @@ __export(simpleloan_api_exports, {
|
|
|
57
57
|
useCloneSalespoint: () => useCloneSalespoint,
|
|
58
58
|
useCloneUser: () => useCloneUser,
|
|
59
59
|
useDeleteAkbars: () => useDeleteAkbars,
|
|
60
|
-
|
|
60
|
+
useDeleteAkbarsDepositScan: () => useDeleteAkbarsDepositScan,
|
|
61
61
|
useDeleteBrokerclient: () => useDeleteBrokerclient,
|
|
62
62
|
useDeleteGroupUser: () => useDeleteGroupUser,
|
|
63
63
|
useDeleteSalespoint: () => useDeleteSalespoint,
|
|
@@ -66,8 +66,8 @@ __export(simpleloan_api_exports, {
|
|
|
66
66
|
useDeleteUser: () => useDeleteUser,
|
|
67
67
|
useGenerateAkbarsScansApplications: () => useGenerateAkbarsScansApplications,
|
|
68
68
|
useGetAkbars: () => useGetAkbars,
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
useGetAkbarsDeposit: () => useGetAkbarsDeposit,
|
|
70
|
+
useGetAkbarsDepositScanList: () => useGetAkbarsDepositScanList,
|
|
71
71
|
useGetAkbarsDictList: () => useGetAkbarsDictList,
|
|
72
72
|
useGetAkbarsList: () => useGetAkbarsList,
|
|
73
73
|
useGetAkbarsPrintformList: () => useGetAkbarsPrintformList,
|
|
@@ -80,16 +80,16 @@ __export(simpleloan_api_exports, {
|
|
|
80
80
|
useLoanerApprovingAkbarsStatus: () => useLoanerApprovingAkbarsStatus,
|
|
81
81
|
useProcessingAkbars: () => useProcessingAkbars,
|
|
82
82
|
useSendAkbars: () => useSendAkbars,
|
|
83
|
-
|
|
83
|
+
useSendAkbarsDeposit: () => useSendAkbarsDeposit,
|
|
84
84
|
useSendAkbarsScans: () => useSendAkbarsScans,
|
|
85
85
|
useUpdateAkbars: () => useUpdateAkbars,
|
|
86
|
-
|
|
86
|
+
useUpdateAkbarsDeposit: () => useUpdateAkbarsDeposit,
|
|
87
87
|
useUpdateBrokerclient: () => useUpdateBrokerclient,
|
|
88
88
|
useUpdateManySalespoint: () => useUpdateManySalespoint,
|
|
89
89
|
useUpdateManyUser: () => useUpdateManyUser,
|
|
90
90
|
useUpdateSalespoint: () => useUpdateSalespoint,
|
|
91
91
|
useUpdateUser: () => useUpdateUser,
|
|
92
|
-
|
|
92
|
+
useUploadAkbarsDepositScan: () => useUploadAkbarsDepositScan
|
|
93
93
|
});
|
|
94
94
|
module.exports = __toCommonJS(simpleloan_api_exports);
|
|
95
95
|
|
|
@@ -132,7 +132,6 @@ function getApiUrl() {
|
|
|
132
132
|
return getMode() === "production" ? "https://portal.simpleloan.ru/api/v1" : "https://slb.medv.ru/api/v1/";
|
|
133
133
|
}
|
|
134
134
|
function getBody(params) {
|
|
135
|
-
console.log("token", localStorage.getItem("token"));
|
|
136
135
|
return JSON.stringify({
|
|
137
136
|
_data: params.body || void 0,
|
|
138
137
|
_searchParams: params.search || void 0,
|
|
@@ -159,6 +158,7 @@ function useFetch(url, clearResponse) {
|
|
|
159
158
|
} catch (error) {
|
|
160
159
|
response.value = null;
|
|
161
160
|
}
|
|
161
|
+
pending.value = false;
|
|
162
162
|
return response.value;
|
|
163
163
|
});
|
|
164
164
|
}
|
|
@@ -190,14 +190,14 @@ var useProcessingAkbars = () => useFetch(baseUrl2 + "app/processing/");
|
|
|
190
190
|
var useAskAkbarsPrintforms = () => useFetch(baseUrl2 + "printforms/ask/");
|
|
191
191
|
var useLoanerApprovingAkbarsStatus = () => useFetch(baseUrl2 + "loaner_approving/status/");
|
|
192
192
|
var useGetAkbarsPrintformList = () => useFetch(baseUrl2 + "printforms/get_list/");
|
|
193
|
-
var
|
|
194
|
-
var
|
|
195
|
-
var
|
|
196
|
-
var
|
|
197
|
-
baseUrl2 + "
|
|
193
|
+
var useUpdateAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/update/");
|
|
194
|
+
var useGetAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/get/");
|
|
195
|
+
var useSendAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/send/");
|
|
196
|
+
var useUploadAkbarsDepositScan = () => useFetch(
|
|
197
|
+
baseUrl2 + "deposit/scans/files/upload/"
|
|
198
198
|
);
|
|
199
|
-
var
|
|
200
|
-
var
|
|
199
|
+
var useGetAkbarsDepositScanList = () => useFetch(baseUrl2 + "deposit/scans/files/get_list/");
|
|
200
|
+
var useDeleteAkbarsDepositScan = () => useFetch(baseUrl2 + "deposit/scans/files/delete/");
|
|
201
201
|
|
|
202
202
|
// src/repositories/brokerclient/index.ts
|
|
203
203
|
var baseUrl3 = "brokerclient/";
|
|
@@ -248,7 +248,7 @@ var useUpdateManyUser = () => useFetch(baseUrl5 + "update_many/");
|
|
|
248
248
|
useCloneSalespoint,
|
|
249
249
|
useCloneUser,
|
|
250
250
|
useDeleteAkbars,
|
|
251
|
-
|
|
251
|
+
useDeleteAkbarsDepositScan,
|
|
252
252
|
useDeleteBrokerclient,
|
|
253
253
|
useDeleteGroupUser,
|
|
254
254
|
useDeleteSalespoint,
|
|
@@ -257,8 +257,8 @@ var useUpdateManyUser = () => useFetch(baseUrl5 + "update_many/");
|
|
|
257
257
|
useDeleteUser,
|
|
258
258
|
useGenerateAkbarsScansApplications,
|
|
259
259
|
useGetAkbars,
|
|
260
|
-
|
|
261
|
-
|
|
260
|
+
useGetAkbarsDeposit,
|
|
261
|
+
useGetAkbarsDepositScanList,
|
|
262
262
|
useGetAkbarsDictList,
|
|
263
263
|
useGetAkbarsList,
|
|
264
264
|
useGetAkbarsPrintformList,
|
|
@@ -271,14 +271,14 @@ var useUpdateManyUser = () => useFetch(baseUrl5 + "update_many/");
|
|
|
271
271
|
useLoanerApprovingAkbarsStatus,
|
|
272
272
|
useProcessingAkbars,
|
|
273
273
|
useSendAkbars,
|
|
274
|
-
|
|
274
|
+
useSendAkbarsDeposit,
|
|
275
275
|
useSendAkbarsScans,
|
|
276
276
|
useUpdateAkbars,
|
|
277
|
-
|
|
277
|
+
useUpdateAkbarsDeposit,
|
|
278
278
|
useUpdateBrokerclient,
|
|
279
279
|
useUpdateManySalespoint,
|
|
280
280
|
useUpdateManyUser,
|
|
281
281
|
useUpdateSalespoint,
|
|
282
282
|
useUpdateUser,
|
|
283
|
-
|
|
283
|
+
useUploadAkbarsDepositScan
|
|
284
284
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -58,7 +58,6 @@ function getApiUrl() {
|
|
|
58
58
|
return getMode() === "production" ? "https://portal.simpleloan.ru/api/v1" : "https://slb.medv.ru/api/v1/";
|
|
59
59
|
}
|
|
60
60
|
function getBody(params) {
|
|
61
|
-
console.log("token", localStorage.getItem("token"));
|
|
62
61
|
return JSON.stringify({
|
|
63
62
|
_data: params.body || void 0,
|
|
64
63
|
_searchParams: params.search || void 0,
|
|
@@ -85,6 +84,7 @@ function useFetch(url, clearResponse) {
|
|
|
85
84
|
} catch (error) {
|
|
86
85
|
response.value = null;
|
|
87
86
|
}
|
|
87
|
+
pending.value = false;
|
|
88
88
|
return response.value;
|
|
89
89
|
});
|
|
90
90
|
}
|
|
@@ -116,14 +116,14 @@ var useProcessingAkbars = () => useFetch(baseUrl2 + "app/processing/");
|
|
|
116
116
|
var useAskAkbarsPrintforms = () => useFetch(baseUrl2 + "printforms/ask/");
|
|
117
117
|
var useLoanerApprovingAkbarsStatus = () => useFetch(baseUrl2 + "loaner_approving/status/");
|
|
118
118
|
var useGetAkbarsPrintformList = () => useFetch(baseUrl2 + "printforms/get_list/");
|
|
119
|
-
var
|
|
120
|
-
var
|
|
121
|
-
var
|
|
122
|
-
var
|
|
123
|
-
baseUrl2 + "
|
|
119
|
+
var useUpdateAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/update/");
|
|
120
|
+
var useGetAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/get/");
|
|
121
|
+
var useSendAkbarsDeposit = () => useFetch(baseUrl2 + "deposit/send/");
|
|
122
|
+
var useUploadAkbarsDepositScan = () => useFetch(
|
|
123
|
+
baseUrl2 + "deposit/scans/files/upload/"
|
|
124
124
|
);
|
|
125
|
-
var
|
|
126
|
-
var
|
|
125
|
+
var useGetAkbarsDepositScanList = () => useFetch(baseUrl2 + "deposit/scans/files/get_list/");
|
|
126
|
+
var useDeleteAkbarsDepositScan = () => useFetch(baseUrl2 + "deposit/scans/files/delete/");
|
|
127
127
|
|
|
128
128
|
// src/repositories/brokerclient/index.ts
|
|
129
129
|
var baseUrl3 = "brokerclient/";
|
|
@@ -173,7 +173,7 @@ export {
|
|
|
173
173
|
useCloneSalespoint,
|
|
174
174
|
useCloneUser,
|
|
175
175
|
useDeleteAkbars,
|
|
176
|
-
|
|
176
|
+
useDeleteAkbarsDepositScan,
|
|
177
177
|
useDeleteBrokerclient,
|
|
178
178
|
useDeleteGroupUser,
|
|
179
179
|
useDeleteSalespoint,
|
|
@@ -182,8 +182,8 @@ export {
|
|
|
182
182
|
useDeleteUser,
|
|
183
183
|
useGenerateAkbarsScansApplications,
|
|
184
184
|
useGetAkbars,
|
|
185
|
-
|
|
186
|
-
|
|
185
|
+
useGetAkbarsDeposit,
|
|
186
|
+
useGetAkbarsDepositScanList,
|
|
187
187
|
useGetAkbarsDictList,
|
|
188
188
|
useGetAkbarsList,
|
|
189
189
|
useGetAkbarsPrintformList,
|
|
@@ -196,14 +196,14 @@ export {
|
|
|
196
196
|
useLoanerApprovingAkbarsStatus,
|
|
197
197
|
useProcessingAkbars,
|
|
198
198
|
useSendAkbars,
|
|
199
|
-
|
|
199
|
+
useSendAkbarsDeposit,
|
|
200
200
|
useSendAkbarsScans,
|
|
201
201
|
useUpdateAkbars,
|
|
202
|
-
|
|
202
|
+
useUpdateAkbarsDeposit,
|
|
203
203
|
useUpdateBrokerclient,
|
|
204
204
|
useUpdateManySalespoint,
|
|
205
205
|
useUpdateManyUser,
|
|
206
206
|
useUpdateSalespoint,
|
|
207
207
|
useUpdateUser,
|
|
208
|
-
|
|
208
|
+
useUploadAkbarsDepositScan
|
|
209
209
|
};
|