|
@@ -1,6 +1,7 @@
|
|
|
import { SET_DIAG_TO_MAINSUIT } from '@store/types/diagnosticList';
|
|
|
import { SAVE_FREE } from '@store/types/mainSuit';
|
|
|
import {ISREAD} from "../types/homePage";
|
|
|
+import {billing} from '@store/async-actions/pushMessage';
|
|
|
export const isAddMainSuit = () =>{
|
|
|
return (dispatch, getState) => {
|
|
|
const state = getState();
|
|
@@ -21,6 +22,7 @@ export const isAddMainSuit = () =>{
|
|
|
type: SAVE_FREE,
|
|
|
data:state.diagnosticList.diagnosticStr
|
|
|
})
|
|
|
+ dispatch(billing());
|
|
|
}
|
|
|
}
|
|
|
|