kmkf-work-order-service-component 0.0.1-alpha.17 → 0.0.1-alpha.18
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.
@@ -29,7 +29,7 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
|
|
29
29
|
* @Author: litian
|
30
30
|
* @Date: 2022-09-06 17:44:56
|
31
31
|
* @LastEditors: wangzhenggui jianjia.wzg@raycloud.com
|
32
|
-
* @LastEditTime: 2022-10-10
|
32
|
+
* @LastEditTime: 2022-10-10 15:41:22
|
33
33
|
*/
|
34
34
|
import { createSlice, createAsyncThunk } from '@reduxjs/toolkit';
|
35
35
|
import { queryGroupCustomTemplate, queryWorkOrder, queryCurrentCompanyUser, queryPaymentWorkOrderList } from "../model/servers/api";
|
@@ -144,7 +144,7 @@ export var fetchQueryWorkOrder = createAsyncThunk('workOrder/queryWorkOrder', /*
|
|
144
144
|
};
|
145
145
|
|
146
146
|
if (isBuyer) {
|
147
|
-
params.buyerNick = global.platformInfo.buyerNick;
|
147
|
+
// params.buyerNick = global.platformInfo.buyerNick;
|
148
148
|
params.buyerOpenUid = global.platformInfo.buyerId;
|
149
149
|
}
|
150
150
|
|
@@ -200,7 +200,7 @@ export var fetchQueryPaymentWorkOrderList = createAsyncThunk('workOrder/queryPay
|
|
200
200
|
}
|
201
201
|
|
202
202
|
if (isBuyer) {
|
203
|
-
params.buyerNick = global.platformInfo.buyerNick;
|
203
|
+
// params.buyerNick = global.platformInfo.buyerNick;
|
204
204
|
params.buyerOpenUid = global.platformInfo.buyerId;
|
205
205
|
}
|
206
206
|
|