diff --git a/src/modules/18_command/components/Step/2_ListPersons.vue b/src/modules/18_command/components/Step/2_ListPersons.vue index ee3c6cb9b..b59672f1c 100644 --- a/src/modules/18_command/components/Step/2_ListPersons.vue +++ b/src/modules/18_command/components/Step/2_ListPersons.vue @@ -39,6 +39,7 @@ const props = defineProps({ onCheckChangeData: { type: Function, required: true }, fetchDataCommandList: { type: Function, required: true }, commandSysId: { type: String, required: true }, + formCommandList: { type: Object, required: true }, }); const ListCommandSalary = ref([]); @@ -466,5 +467,6 @@ onMounted(async () => { :command-edit-recive="commandReciveId" :get-data="getPersonList" :select-person-data="selectPersonData" + :issue="formCommandList.issue" /> diff --git a/src/modules/18_command/components/Step/Dialog2_Salary.vue b/src/modules/18_command/components/Step/Dialog2_Salary.vue index 4567f115c..2b5166bbb 100644 --- a/src/modules/18_command/components/Step/Dialog2_Salary.vue +++ b/src/modules/18_command/components/Step/Dialog2_Salary.vue @@ -15,6 +15,7 @@ const { showLoader, hideLoader, dialogConfirm, messageError, success } = const props = defineProps({ getData: Function, selectPersonData: Object, + issue: String, }); const modal = defineModel("modal", { required: true }); const titleName = defineModel("titleName", { required: true }); @@ -109,6 +110,11 @@ watch( /> --> { :on-check-change-data="onCheckChangeData" :fetch-data-command-list="fetchDataCommandList" :command-sys-id="formCommandList?.commandSysId as string" + :form-command-list="formCommandList" />