|
@@ -1,7 +1,7 @@
|
|
|
<script setup lang="ts">
|
|
|
import { computed, reactive, ref } from "vue";
|
|
|
|
|
|
-import { orderGoodColumns } from "./config/columns"
|
|
|
+import { importOrderGoodColumns, importInvoiceGoodColumns, orderGoodColumns } from "./config/columns"
|
|
|
import { useDetail } from "/@/hooks/core/useDetail";
|
|
|
import BasicDescriptions from "/@/components/BasicDescriptions";
|
|
|
import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
|
|
@@ -9,18 +9,27 @@ import ChooseGoodModal from "./components/ChooseGoodModal/index.vue"
|
|
|
import ChildGoodEditModal from "./components/ChildGoodEditModal.vue";
|
|
|
|
|
|
import { httpDetail, httpStatus } from "/@/api/invoiceInOut/inOutManager";
|
|
|
-import { ElForm, ElMessage } from "element-plus";
|
|
|
+import { httpDetail as httpProductDetail } from "/@/api/invoiceInOut/productManager";
|
|
|
+import { ElButton, ElCollapse, ElCollapseItem, ElForm, ElMessage, ElTable, ElTableColumn, ElTooltip } from "element-plus";
|
|
|
+import ProductDetail from "/@/components/ProductDetail/index.vue"
|
|
|
import { useTask } from "/@/hooks/core";
|
|
|
|
|
|
import SealMonthPicker from "/@/components/SealMonthPicker/index.vue"
|
|
|
|
|
|
|
|
|
-const { title, collapses, id } = useDetail({ baseName: '出库', collapseLen: 2 });
|
|
|
+const { title, collapses, id } = useDetail({ baseName: '出库', collapseLen: 5 });
|
|
|
|
|
|
const visible = ref(false)
|
|
|
+const productVisible= ref(false)
|
|
|
+const productIndex = ref(0)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+const productDetailTask = useTask()
|
|
|
|
|
|
const detailTask = useTask()
|
|
|
|
|
|
+
|
|
|
const state = reactive({
|
|
|
editVisible: false,
|
|
|
index: -1,
|
|
@@ -32,8 +41,8 @@ const formRef = ref<InstanceType<typeof ElForm> | null>(null)
|
|
|
|
|
|
const searchParameter = computed(() => {
|
|
|
// 入库、入库红冲和出库红冲 只能选择真实成本的商品,出库类型可以选择预估成本商品
|
|
|
- if(!detailTask.data) return {}
|
|
|
- return detailTask.data.type == '2' ? { basic_status: '1' } : { basic_status: '2' }
|
|
|
+ if (!detailTask.data) return {}
|
|
|
+ return detailTask.data.type == '2' ? { basic_status: '1' } : { basic_status: '2' }
|
|
|
})
|
|
|
|
|
|
const formData = ref({ goods: [], month: '' })
|
|
@@ -43,23 +52,18 @@ const rules = {
|
|
|
month: [{ required: true, message: '请选择入账月份' }]
|
|
|
}
|
|
|
|
|
|
-const disabledTomorrow = (time) => {
|
|
|
- const now = new Date();
|
|
|
- return time.getTime() > now.setHours(0, 0, 0, 0);
|
|
|
-};
|
|
|
-
|
|
|
-function handleGoodComfirm(values: any[]){
|
|
|
+function handleGoodComfirm(values: any[]) {
|
|
|
const ids = formData.value.goods.map(({ id }) => id)
|
|
|
const list = []
|
|
|
|
|
|
values.forEach(item => {
|
|
|
- if(!ids.includes(item.id)){ list.push(item) }
|
|
|
+ if (!ids.includes(item.id)) { list.push(item) }
|
|
|
})
|
|
|
|
|
|
- formData.value.goods = [...list, ...formData.value.goods]
|
|
|
+ formData.value.goods = [...list, ...formData.value.goods]
|
|
|
}
|
|
|
|
|
|
-function handleChildGoodEdit(index: number){
|
|
|
+function handleChildGoodEdit(index: number) {
|
|
|
state.index = index
|
|
|
state.editVisible = true
|
|
|
state.data = { ...formData.value.goods[index] }
|
|
@@ -87,26 +91,26 @@ function getSpanNumber(data, prop) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-function spanMethod({ row:_1, column:_2, rowIndex, columnIndex }: any){
|
|
|
- if ([0, 1, 2, 7].includes(Number(columnIndex))){
|
|
|
- let nameSpan = getSpanNumber(formData.value.goods, "id");
|
|
|
- return { rowspan: nameSpan[rowIndex], colspan: 1 };
|
|
|
- }
|
|
|
+function spanMethod({ row: _1, column: _2, rowIndex, columnIndex }: any) {
|
|
|
+ if ([0, 1, 2, 7].includes(Number(columnIndex))) {
|
|
|
+ let nameSpan = getSpanNumber(formData.value.goods, "id");
|
|
|
+ return { rowspan: nameSpan[rowIndex], colspan: 1 };
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-async function onSubmit(){
|
|
|
- try{
|
|
|
+async function onSubmit() {
|
|
|
+ try {
|
|
|
await formRef.value.validate()
|
|
|
const relaArrCopy = formData.value.goods.map(({ id, goodNum }) => ({ id, num: goodNum }))
|
|
|
|
|
|
const relaArr = []
|
|
|
const mapId = {}
|
|
|
-
|
|
|
- for(const item of relaArrCopy){
|
|
|
- if (!mapId[item.id]){
|
|
|
+
|
|
|
+ for (const item of relaArrCopy) {
|
|
|
+ if (!mapId[item.id]) {
|
|
|
relaArr.push(item)
|
|
|
mapId[item.id] = true
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
loading.value = true
|
|
@@ -119,23 +123,33 @@ async function onSubmit(){
|
|
|
} else {
|
|
|
ElMessage.warning(message)
|
|
|
}
|
|
|
- }catch(err){
|
|
|
+ } catch (err) {
|
|
|
console.log(err)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-function handleEditGood(index, data){
|
|
|
+function handleEditGood(index, data) {
|
|
|
const { id } = formData.value.goods[index]
|
|
|
formData.value.goods.forEach((item, index) => {
|
|
|
- if(item.id === id){
|
|
|
+ if (item.id === id) {
|
|
|
formData.value.goods[index].goodNum = data.goodNum
|
|
|
|
|
|
- if(formData.value.goods[index].childNum){ formData.value.goods[index].childActionNum = formData.value.goods[index].childNum * data.goodNum }
|
|
|
+ if (formData.value.goods[index].childNum) { formData.value.goods[index].childActionNum = formData.value.goods[index].childNum * data.goodNum }
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-function handleDelete(index){
|
|
|
+
|
|
|
+function handleShowDetail(id, index){
|
|
|
+ productVisible.value = true
|
|
|
+
|
|
|
+ console.log(index, '~~🚀~~')
|
|
|
+
|
|
|
+ productIndex.value = index
|
|
|
+ productDetailTask.run(httpProductDetail({ id }))
|
|
|
+}
|
|
|
+
|
|
|
+function handleDelete(index) {
|
|
|
const { id } = formData.value.goods[index]
|
|
|
formData.value.goods = formData.value.goods.filter((item) => item.id !== id)
|
|
|
}
|
|
@@ -152,8 +166,33 @@ id.value && detailTask.run(httpDetail({ id: id.value }))
|
|
|
<BasicDescriptions :columns="orderGoodColumns" :data="detailTask.data" v-if="detailTask.data" />
|
|
|
</ElCollapseItem>
|
|
|
|
|
|
- <!-- && detailTask.data.type == '1' -->
|
|
|
- <ElCollapseItem title="出入库信息确认" name="2" v-if="detailTask.data && detailTask.data.status == '1'">
|
|
|
+ <!-- importInvoiceGoodColumns -->
|
|
|
+ <ElCollapseItem :title="'订单详情'" name="2">
|
|
|
+ <BasicDescriptions v-if="detailTask.data" :columns="importOrderGoodColumns" :data="detailTask.data" />
|
|
|
+ </ElCollapseItem>
|
|
|
+
|
|
|
+ <ElCollapseItem :title="'发票详情'" name="3">
|
|
|
+ <BasicDescriptions v-if="detailTask.data" :columns="importInvoiceGoodColumns" :data="detailTask.data" />
|
|
|
+ </ElCollapseItem>
|
|
|
+
|
|
|
+ <ElCollapseItem title="商品信息" name="4" v-if="detailTask.data">
|
|
|
+ <ElTable size="small" border :data="detailTask.data.ProductRela">
|
|
|
+ <ElTableColumn label="商品ID" prop="product_id" show-overflow-tooltip />
|
|
|
+ <ElTableColumn label="商品编号" prop="skuCode" show-overflow-tooltip />
|
|
|
+ <ElTableColumn label="商品名称" prop="goodName" show-overflow-tooltip />
|
|
|
+ <ElTableColumn label="操作数量" prop="num" show-overflow-tooltip />
|
|
|
+ <ElTableColumn label="操作" width="100px">
|
|
|
+ <template #="scope">
|
|
|
+ <ElTooltip content="查看详情">
|
|
|
+ <ElButton type="primary" link :icon="useRenderIcon('eye-view')"
|
|
|
+ @click="handleShowDetail(scope.row.product_id, scope.$index)" />
|
|
|
+ </ElTooltip>
|
|
|
+ </template>
|
|
|
+ </ElTableColumn>
|
|
|
+ </ElTable>
|
|
|
+ </ElCollapseItem>
|
|
|
+
|
|
|
+ <ElCollapseItem title="出入库信息确认" name="5" v-if="detailTask.data && detailTask.data.status == '1'">
|
|
|
<ElForm ref="formRef" :rules="rules" :model="formData">
|
|
|
<ElFormItem label="操作商品" prop="goods">
|
|
|
<ElTable :span-method="spanMethod" border size="small" :data="formData.goods">
|
|
@@ -208,11 +247,17 @@ id.value && detailTask.run(httpDetail({ id: id.value }))
|
|
|
|
|
|
<ChooseGoodModal v-model:visible="visible" :otherSearchParameter="searchParameter" @submit="handleGoodComfirm" />
|
|
|
|
|
|
- <ChildGoodEditModal
|
|
|
- :data="state.data"
|
|
|
- :index="state.index"
|
|
|
- v-model:visible="state.editVisible"
|
|
|
- @submit="handleEditGood"
|
|
|
- />
|
|
|
+ <ChildGoodEditModal :data="state.data" :index="state.index" v-model:visible="state.editVisible"
|
|
|
+ @submit="handleEditGood" />
|
|
|
+
|
|
|
+ <ElDialog center title="商品详情" v-model="productVisible" style="overflow: hidden">
|
|
|
+ <div v-loading="productDetailTask.loading">
|
|
|
+ <ProductDetail
|
|
|
+ v-if="productDetailTask.data"
|
|
|
+ :data="productDetailTask.data"
|
|
|
+ :num="detailTask.data.ProductRela[productIndex].num"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </ElDialog>
|
|
|
</div>
|
|
|
</template>
|