@axelor/aos-mobile-manufacturing 7.0.4 → 7.0.6
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/lib/components/molecules/OperationOrderDatesCard/OperationOrderDatesCard.d.ts +1 -0
- package/lib/components/organisms/OperationOrderHeader/OperationOrderHeader.d.ts +1 -0
- package/lib/components/organisms/OperationOrderStopwatch/OperationOrderStopwatch.js +16 -7
- package/lib/components/organisms/OperationOrderStopwatch/OperationOrderStopwatch.js.map +1 -1
- package/lib/components/organisms/ProductionFileLargeCard/ProductionFileLargeCard.d.ts +1 -0
- package/lib/components/organisms/ProductionFileSmallCard/ProductionFileSmallCard.d.ts +1 -0
- package/lib/features/machinesSlice.d.ts +1 -1
- package/lib/features/manufacturingOrderSlice.d.ts +1 -1
- package/lib/features/operationOrderSlice.d.ts +1 -1
- package/lib/features/prodProductSlice.d.ts +1 -1
- package/lib/features/productionFileSlice.d.ts +1 -1
- package/lib/features/wasteProductsSlice.d.ts +1 -1
- package/lib/features/workCentersSlice.d.ts +1 -1
- package/lib/screens/manufactoringOrder/consumedProduct/index.d.ts +15 -15
- package/lib/screens/manufactoringOrder/producedProduct/index.d.ts +13 -13
- package/lib/screens/manufactoringOrder/wasteProduct/index.d.ts +9 -9
- package/lib/screens/operationOrder/index.d.ts +13 -13
- package/package.json +6 -6
|
@@ -15,24 +15,33 @@
|
|
|
15
15
|
* You should have received a copy of the GNU Affero General Public License
|
|
16
16
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
17
|
*/
|
|
18
|
-
import React, { useCallback, useEffect,
|
|
18
|
+
import React, { useCallback, useEffect, useState } from 'react';
|
|
19
19
|
import { Label } from '@axelor/aos-mobile-ui';
|
|
20
20
|
import { useTranslator, Stopwatch, isEmpty, StopwatchType, useDispatch, useSelector, } from '@axelor/aos-mobile-core';
|
|
21
21
|
import { OperationOrder } from '../../../types';
|
|
22
22
|
import { updateOperationOrder } from '../../../features/operationOrderSlice';
|
|
23
23
|
import { StyleSheet, View } from 'react-native';
|
|
24
|
+
const DEFAULT_STATUS = StopwatchType.status.Ready;
|
|
25
|
+
const DEFAULT_TIME = 0;
|
|
24
26
|
const OperationOrderStopwatch = ({}) => {
|
|
25
27
|
const I18n = useTranslator();
|
|
26
28
|
const dispatch = useDispatch();
|
|
27
29
|
const { operationOrder, updateMessage } = useSelector(state => state.operationOrder);
|
|
28
30
|
const { user } = useSelector(state => state.user);
|
|
29
31
|
const [labelVisible, setLabelVisible] = useState(false);
|
|
30
|
-
const
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
const [timerStatus, setTimerStatus] = useState(DEFAULT_STATUS);
|
|
33
|
+
const [time, setTime] = useState(DEFAULT_TIME);
|
|
34
|
+
const getTimerState = useCallback(() => {
|
|
35
|
+
const timerState = !isEmpty(operationOrder)
|
|
36
|
+
? OperationOrder.getTimerState(operationOrder, user?.id)
|
|
37
|
+
: { status: DEFAULT_STATUS, time: DEFAULT_TIME };
|
|
38
|
+
setTimerStatus(timerState.status);
|
|
39
|
+
setTime(timerState.time);
|
|
40
|
+
return timerState;
|
|
35
41
|
}, [operationOrder, user]);
|
|
42
|
+
useEffect(() => {
|
|
43
|
+
getTimerState();
|
|
44
|
+
}, [getTimerState]);
|
|
36
45
|
const updateStatus = useCallback(status => {
|
|
37
46
|
dispatch(updateOperationOrder({
|
|
38
47
|
operationOrderId: operationOrder?.id,
|
|
@@ -45,7 +54,7 @@ const OperationOrderStopwatch = ({}) => {
|
|
|
45
54
|
}, [updateMessage]);
|
|
46
55
|
return (<View style={styles.container}>
|
|
47
56
|
<Label style={styles.label} message={updateMessage?.message} type={updateMessage?.code !== 200 ? 'error' : 'info'} showClose={true} visible={labelVisible} onClose={() => setLabelVisible(false)}/>
|
|
48
|
-
<Stopwatch style={styles.timer} startTime={time} status={timerStatus} timerFormat={I18n.t('Stopwatch_TimerFormat')} onPlay={() => updateStatus(OperationOrder.status.InProgress)} onPause={() => updateStatus(OperationOrder.status.StandBy)} onStop={() => updateStatus(OperationOrder.status.Finished)} disableStop={timerStatus !== StopwatchType.status.InProgress &&
|
|
57
|
+
<Stopwatch style={styles.timer} startTime={time} status={timerStatus} getTimerState={getTimerState} timerFormat={I18n.t('Stopwatch_TimerFormat')} onPlay={() => updateStatus(OperationOrder.status.InProgress)} onPause={() => updateStatus(OperationOrder.status.StandBy)} onStop={() => updateStatus(OperationOrder.status.Finished)} disableStop={timerStatus !== StopwatchType.status.InProgress &&
|
|
49
58
|
timerStatus !== StopwatchType.status.Paused} hideCancel={true} useObjectStatus={true}/>
|
|
50
59
|
</View>);
|
|
51
60
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OperationOrderStopwatch.js","sourceRoot":"","sources":["../../../../src/components/organisms/OperationOrderStopwatch/OperationOrderStopwatch.js"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,KAAK,EAAE,EAAC,WAAW,EAAE,SAAS,EAAE,
|
|
1
|
+
{"version":3,"file":"OperationOrderStopwatch.js","sourceRoot":"","sources":["../../../../src/components/organisms/OperationOrderStopwatch/OperationOrderStopwatch.js"],"names":[],"mappings":"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"}
|
|
@@ -1,55 +1,55 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
2
|
namespace ConsumedProductListScreen {
|
|
3
|
-
export
|
|
3
|
+
export let title: string;
|
|
4
4
|
export { ConsumedProductListScreen as component };
|
|
5
5
|
export namespace options {
|
|
6
|
-
|
|
6
|
+
let shadedHeader: boolean;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
9
|
namespace ConsumedProductDetailsScreen {
|
|
10
|
-
|
|
10
|
+
let title_1: string;
|
|
11
11
|
export { title_1 as title };
|
|
12
12
|
export { ConsumedProductDetailsScreen as component };
|
|
13
13
|
export namespace options_1 {
|
|
14
|
-
|
|
14
|
+
let shadedHeader_1: boolean;
|
|
15
15
|
export { shadedHeader_1 as shadedHeader };
|
|
16
16
|
}
|
|
17
17
|
export { options_1 as options };
|
|
18
18
|
}
|
|
19
19
|
namespace ConsumedProductSelectProductScreen {
|
|
20
|
-
|
|
20
|
+
let title_2: string;
|
|
21
21
|
export { title_2 as title };
|
|
22
22
|
export { ConsumedProductSelectProductScreen as component };
|
|
23
23
|
export namespace options_2 {
|
|
24
|
-
|
|
24
|
+
let shadedHeader_2: boolean;
|
|
25
25
|
export { shadedHeader_2 as shadedHeader };
|
|
26
26
|
}
|
|
27
27
|
export { options_2 as options };
|
|
28
28
|
}
|
|
29
29
|
namespace ConsumedProductSelectTrackingScreen {
|
|
30
|
-
|
|
30
|
+
let title_3: string;
|
|
31
31
|
export { title_3 as title };
|
|
32
32
|
export { ConsumedProductSelectTrackingScreen as component };
|
|
33
33
|
export namespace options_3 {
|
|
34
|
-
|
|
34
|
+
let shadedHeader_3: boolean;
|
|
35
35
|
export { shadedHeader_3 as shadedHeader };
|
|
36
36
|
}
|
|
37
37
|
export { options_3 as options };
|
|
38
38
|
}
|
|
39
39
|
namespace ChildrenManufOrderListScreen {
|
|
40
|
-
|
|
40
|
+
let title_4: string;
|
|
41
41
|
export { title_4 as title };
|
|
42
42
|
export { ChildrenManufOrderListScreen as component };
|
|
43
43
|
export namespace options_4 {
|
|
44
|
-
|
|
44
|
+
let shadedHeader_4: boolean;
|
|
45
45
|
export { shadedHeader_4 as shadedHeader };
|
|
46
46
|
}
|
|
47
47
|
export { options_4 as options };
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
export default _default;
|
|
51
|
-
import ConsumedProductListScreen_1 from
|
|
52
|
-
import ConsumedProductDetailsScreen_1 from
|
|
53
|
-
import ConsumedProductSelectProductScreen_1 from
|
|
54
|
-
import ConsumedProductSelectTrackingScreen_1 from
|
|
55
|
-
import ChildrenManufOrderListScreen_1 from
|
|
51
|
+
import ConsumedProductListScreen_1 from './ConsumedProductListScreen';
|
|
52
|
+
import ConsumedProductDetailsScreen_1 from './ConsumedProductDetailsScreen';
|
|
53
|
+
import ConsumedProductSelectProductScreen_1 from './ConsumedProductSelectProductScreen';
|
|
54
|
+
import ConsumedProductSelectTrackingScreen_1 from './ConsumedProductSelectTrackingScreen';
|
|
55
|
+
import ChildrenManufOrderListScreen_1 from './ChildrenManufOrderListScreen';
|
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
2
|
namespace ProducedProductListScreen {
|
|
3
|
-
export
|
|
3
|
+
export let title: string;
|
|
4
4
|
export { ProducedProductListScreen as component };
|
|
5
|
-
export
|
|
5
|
+
export let actionID: string;
|
|
6
6
|
export namespace options {
|
|
7
|
-
|
|
7
|
+
let shadedHeader: boolean;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
namespace ProducedProductDetailsScreen {
|
|
11
|
-
|
|
11
|
+
let title_1: string;
|
|
12
12
|
export { title_1 as title };
|
|
13
13
|
export { ProducedProductDetailsScreen as component };
|
|
14
14
|
export namespace options_1 {
|
|
15
|
-
|
|
15
|
+
let shadedHeader_1: boolean;
|
|
16
16
|
export { shadedHeader_1 as shadedHeader };
|
|
17
17
|
}
|
|
18
18
|
export { options_1 as options };
|
|
19
19
|
}
|
|
20
20
|
namespace ProducedProductSelectProductScreen {
|
|
21
|
-
|
|
21
|
+
let title_2: string;
|
|
22
22
|
export { title_2 as title };
|
|
23
23
|
export { ProducedProductSelectProductScreen as component };
|
|
24
24
|
export namespace options_2 {
|
|
25
|
-
|
|
25
|
+
let shadedHeader_2: boolean;
|
|
26
26
|
export { shadedHeader_2 as shadedHeader };
|
|
27
27
|
}
|
|
28
28
|
export { options_2 as options };
|
|
29
29
|
}
|
|
30
30
|
namespace ProducedProductSelectTrackingScreen {
|
|
31
|
-
|
|
31
|
+
let title_3: string;
|
|
32
32
|
export { title_3 as title };
|
|
33
33
|
export { ProducedProductSelectTrackingScreen as component };
|
|
34
34
|
export namespace options_3 {
|
|
35
|
-
|
|
35
|
+
let shadedHeader_3: boolean;
|
|
36
36
|
export { shadedHeader_3 as shadedHeader };
|
|
37
37
|
}
|
|
38
38
|
export { options_3 as options };
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
export default _default;
|
|
42
|
-
import ProducedProductListScreen_1 from
|
|
43
|
-
import ProducedProductDetailsScreen_1 from
|
|
44
|
-
import ProducedProductSelectProductScreen_1 from
|
|
45
|
-
import ProducedProductSelectTrackingScreen_1 from
|
|
42
|
+
import ProducedProductListScreen_1 from './ProducedProductListScreen';
|
|
43
|
+
import ProducedProductDetailsScreen_1 from './ProducedProductDetailsScreen';
|
|
44
|
+
import ProducedProductSelectProductScreen_1 from './ProducedProductSelectProductScreen';
|
|
45
|
+
import ProducedProductSelectTrackingScreen_1 from './ProducedProductSelectTrackingScreen';
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
2
|
namespace WasteProductListScreen {
|
|
3
|
-
export
|
|
3
|
+
export let title: string;
|
|
4
4
|
export { WasteProductListScreen as component };
|
|
5
5
|
export namespace options {
|
|
6
|
-
|
|
6
|
+
let shadedHeader: boolean;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
9
|
namespace WasteProductDetailsScreen {
|
|
10
|
-
|
|
10
|
+
let title_1: string;
|
|
11
11
|
export { title_1 as title };
|
|
12
12
|
export { WasteProductDetailsScreen as component };
|
|
13
13
|
export namespace options_1 {
|
|
14
|
-
|
|
14
|
+
let shadedHeader_1: boolean;
|
|
15
15
|
export { shadedHeader_1 as shadedHeader };
|
|
16
16
|
}
|
|
17
17
|
export { options_1 as options };
|
|
18
18
|
}
|
|
19
19
|
namespace WasteProductSelectProductScreen {
|
|
20
|
-
|
|
20
|
+
let title_2: string;
|
|
21
21
|
export { title_2 as title };
|
|
22
22
|
export { WasteProductSelectProductScreen as component };
|
|
23
23
|
export namespace options_2 {
|
|
24
|
-
|
|
24
|
+
let shadedHeader_2: boolean;
|
|
25
25
|
export { shadedHeader_2 as shadedHeader };
|
|
26
26
|
}
|
|
27
27
|
export { options_2 as options };
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
export default _default;
|
|
31
|
-
import WasteProductListScreen_1 from
|
|
32
|
-
import WasteProductDetailsScreen_1 from
|
|
33
|
-
import WasteProductSelectProductScreen_1 from
|
|
31
|
+
import WasteProductListScreen_1 from './WasteProductListScreen';
|
|
32
|
+
import WasteProductDetailsScreen_1 from './WasteProductDetailsScreen';
|
|
33
|
+
import WasteProductSelectProductScreen_1 from './WasteProductSelectProductScreen';
|
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
2
|
namespace OperationOrderListScreen {
|
|
3
|
-
export
|
|
3
|
+
export let title: string;
|
|
4
4
|
export { OperationOrderListScreen as component };
|
|
5
5
|
export namespace options {
|
|
6
|
-
|
|
6
|
+
let shadedHeader: boolean;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
9
|
namespace OperationOrderDetailsScreen {
|
|
10
|
-
|
|
10
|
+
let title_1: string;
|
|
11
11
|
export { title_1 as title };
|
|
12
12
|
export { OperationOrderDetailsScreen as component };
|
|
13
|
-
export
|
|
13
|
+
export let actionID: string;
|
|
14
14
|
export namespace options_1 {
|
|
15
|
-
|
|
15
|
+
let shadedHeader_1: boolean;
|
|
16
16
|
export { shadedHeader_1 as shadedHeader };
|
|
17
17
|
}
|
|
18
18
|
export { options_1 as options };
|
|
19
19
|
}
|
|
20
20
|
namespace ProductionFileScreen {
|
|
21
|
-
|
|
21
|
+
let title_2: string;
|
|
22
22
|
export { title_2 as title };
|
|
23
23
|
export { ProductionFileScreen as component };
|
|
24
24
|
export namespace options_2 {
|
|
25
|
-
|
|
25
|
+
let shadedHeader_2: boolean;
|
|
26
26
|
export { shadedHeader_2 as shadedHeader };
|
|
27
27
|
}
|
|
28
28
|
export { options_2 as options };
|
|
29
29
|
}
|
|
30
30
|
namespace OperationOrderPlanningScreen {
|
|
31
|
-
|
|
31
|
+
let title_3: string;
|
|
32
32
|
export { title_3 as title };
|
|
33
33
|
export { OperationOrderPlanningScreen as component };
|
|
34
34
|
export namespace options_3 {
|
|
35
|
-
|
|
35
|
+
let shadedHeader_3: boolean;
|
|
36
36
|
export { shadedHeader_3 as shadedHeader };
|
|
37
37
|
}
|
|
38
38
|
export { options_3 as options };
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
export default _default;
|
|
42
|
-
import OperationOrderListScreen_1 from
|
|
43
|
-
import OperationOrderDetailsScreen_1 from
|
|
44
|
-
import ProductionFileScreen_1 from
|
|
45
|
-
import OperationOrderPlanningScreen_1 from
|
|
42
|
+
import OperationOrderListScreen_1 from './OperationOrderListScreen';
|
|
43
|
+
import OperationOrderDetailsScreen_1 from './OperationOrderDetailsScreen';
|
|
44
|
+
import ProductionFileScreen_1 from './ProductionFileScreen';
|
|
45
|
+
import OperationOrderPlanningScreen_1 from './OperationOrderPlanningScreen';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axelor/aos-mobile-manufacturing",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.6",
|
|
4
4
|
"author": "Axelor",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"publishConfig": {
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"react-i18next": "^11.18.6"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@axelor/aos-mobile-core": "7.0.
|
|
32
|
-
"@axelor/aos-mobile-stock": "7.0.
|
|
33
|
-
"@axelor/aos-mobile-ui": "7.0.
|
|
31
|
+
"@axelor/aos-mobile-core": "7.0.6",
|
|
32
|
+
"@axelor/aos-mobile-stock": "7.0.6",
|
|
33
|
+
"@axelor/aos-mobile-ui": "7.0.6",
|
|
34
34
|
"@reduxjs/toolkit": "^1.8.5"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@babel/runtime": "^7.19.0",
|
|
38
38
|
"@react-native-community/eslint-config": "^2.0.0",
|
|
39
|
-
"@types/react": "18.0
|
|
39
|
+
"@types/react": "18.2.0",
|
|
40
40
|
"@types/react-native": "0.68.1",
|
|
41
41
|
"cpx2": "^4.2.0",
|
|
42
42
|
"eslint": "^7.32.0",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"react-native": "0.68.1"
|
|
47
47
|
},
|
|
48
48
|
"resolutions": {
|
|
49
|
-
"@types/react": "18.0
|
|
49
|
+
"@types/react": "18.2.0"
|
|
50
50
|
}
|
|
51
51
|
}
|