| | |
| | | |
| | | import { computed, ref } from 'vue'; |
| | | |
| | | import { confirm, useVbenModal } from '../../../../packages/effects/common-ui/src'; |
| | | import { MesWmProductReceiptStatusEnum } from '../../../../packages/constants/src'; |
| | | import { confirm, useVbenModal } from '@vben/common-ui'; |
| | | import { MesWmProductReceiptStatusEnum } from '@vben/constants'; |
| | | |
| | | import { Button, Divider, message, Popconfirm } from 'ant-design-vue'; |
| | | |
| | |
| | | </script> |
| | | |
| | | <template> |
| | | <Modal :title="getTitle" class="w-3/5"> |
| | | <Modal :title="getTitle" :class="isStock ? 'w-4/5' : 'w-3/5'"> |
| | | <Form class="mx-4" /> |
| | | <!-- 非新建模式展示物料信息 --> |
| | | <template v-if="formData?.id"> |
| | | <Divider>物料信息</Divider> |
| | | <div class="mx-4"> |
| | | <LineList :form-type="formType" :receipt-id="formData.id" /> |
| | | <LineList |
| | | :form-type="formType" |
| | | :receipt-id="formData.id" |
| | | :auto-generated="!!formData.feedbackId" |
| | | /> |
| | | </div> |
| | | </template> |
| | | <template #prepend-footer> |