123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573 |
- <template>
- <div class="tenant">
- <!-- <Banner /> -->
- <div class="content">
- <byTable
- :source="sourceList.data"
- :pagination="sourceList.pagination"
- :config="config"
- :loading="loading"
- highlight-current-row
- :selectConfig="selectConfig"
- :table-events="{
- //element talbe事件都能传
- select: select,
- }"
- :action-list="[
- {
- text: '产品组合',
- action: () => openModal('add'),
- },
- ]"
- @get-list="getList"
- >
- <template #slotName="{ item }">
- {{ item.createTime }}
- </template>
- </byTable>
- </div>
- <el-dialog
- :title="modalType == 'add' ? '产品组合' : '组合详情'"
- v-model="dialogVisible"
- width="800"
- v-loading="loading"
- >
- <byForm
- :formConfig="formConfig"
- :formOption="formOption"
- v-model="formData.data"
- :rules="rules"
- ref="byform"
- >
- <template #products>
- <div style="width: 100%">
- <el-button
- type="primary"
- @click="openProduct = true"
- style="margin-bottom: 10px"
- v-if="modalType == 'add'"
- >
- 选择产品
- </el-button>
- <el-table
- :data="formData.data.groupRecordDetailsList"
- show-summary
- :summary-method="getSummaries"
- >
- <el-table-column prop="productName" label="产品名称" />
- <el-table-column
- prop="canSum"
- label="可组合数量"
- v-if="modalType == 'add'"
- />
- <el-table-column prop="groupNum" label="本次组合" min-width="150">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="'groupRecordDetailsList.' + $index + '.groupNum'"
- :rules="rules.groupNum"
- :inline-message="true"
- >
- <el-input-number
- v-model="row.groupNum"
- :precision="0"
- :controls="false"
- :min="0"
- @change="() => changeCanSum(row, $index)"
- onmousewheel="return false;"
- />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column
- prop="zip"
- label="操作"
- width="100"
- v-if="modalType == 'add'"
- >
- <template #default="{ $index }">
- <el-button type="primary" link @click="handleRemove($index)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- </byForm>
- <template #footer v-if="modalType == 'add'">
- <el-button @click="dialogVisible = false" size="large">取 消</el-button>
- <el-button
- type="primary"
- @click="submitForm('byform')"
- size="large"
- :loading="submitLoading"
- >
- 确 定
- </el-button>
- </template>
- </el-dialog>
- <el-dialog
- v-model="openProduct"
- title="选择产品"
- width="70%"
- append-to-body
- >
- <SelectProduct
- :isCombination="true"
- @handleSelect="handleSelect"
- key="a"
- ></SelectProduct>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="openProduct = false">取消</el-button>
- </span>
- </template>
- </el-dialog>
- </div>
- </template>
-
- <script setup>
- /* eslint-disable vue/no-unused-components */
- import { ElMessage, ElMessageBox } from "element-plus";
- import byTable from "@/components/byTable/index";
- import byForm from "@/components/byForm/index";
- import { computed, defineComponent, ref, watch } from "vue";
- import useUserStore from "@/store/modules/user";
- import SelectProduct from "@/components/WDLY/product/SelectProduct";
- const loading = ref(false);
- const submitLoading = ref(false);
- const sourceList = ref({
- data: [],
- pagination: {
- total: 3,
- pageNum: 1,
- pageSize: 10,
- type: "1",
- },
- });
- let dialogVisible = ref(false);
- let openProduct = ref(false);
- let roomDialogVisible = ref(false);
- let modalType = ref("add");
- let rules = ref({
- productWarehouseId: [
- { required: true, message: "请选择半成品所在仓库", trigger: "change" },
- ],
- groupWarehouseId: [
- { required: true, message: "请选择组合后放置仓库", trigger: "change" },
- ],
- groupNum: [{ required: true, message: "请输入分拆数量", trigger: "blur" }],
- });
- const { proxy } = getCurrentInstance();
- const selectConfig = reactive([]);
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "组合编码",
- prop: "productCode",
- },
- },
- {
- attrs: {
- label: "组合名称",
- prop: "productName",
- },
- },
- {
- attrs: {
- label: "规格",
- prop: "productSpec",
- },
- },
- {
- attrs: {
- label: "半成品所在仓库",
- prop: "productWarehouseName",
- },
- },
- {
- attrs: {
- label: "组合后放置仓库",
- prop: "groupWarehouseName",
- },
- },
- {
- attrs: {
- label: "组合数量",
- prop: "groupNum",
- },
- },
- {
- attrs: {
- label: "操作人",
- prop: "createUserName",
- },
- },
- {
- attrs: {
- label: "操作时间",
- prop: "createTime",
- },
- },
- {
- attrs: {
- label: "操作",
- width: "100",
- align: "right",
- },
- // 渲染 el-button,一般用在最后一列。
- renderHTML(row) {
- return [
- {
- attrs: {
- label: "查看",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- getDtl(row);
- },
- },
- ];
- },
- },
- ];
- });
- let formData = reactive({
- data: {},
- treeData: [],
- });
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- });
- const byform = ref(null);
- const treeData = ref([]);
- const formConfig = reactive([
- {
- type: "title",
- title: "仓库信息",
- },
- {
- type: "select",
- prop: "productWarehouseId",
- label: "半成品所在仓库",
- itemWidth: 33,
- data: [],
- },
- {
- type: "select",
- prop: "groupWarehouseId",
- label: "组合后放置仓库",
- itemWidth: 33,
- data: [],
- },
- {
- type: "title",
- title: "组合明细",
- },
- {
- type: "slot",
- slotName: "products",
- },
- ]);
- const getList = async (req) => {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy
- .post("/groupRecordDetails/page", sourceList.value.pagination)
- .then((message) => {
- console.log(message);
- sourceList.value.data = message.rows;
- sourceList.value.pagination.total = message.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- const openModal = () => {
- dialogVisible.value = true;
- modalType.value = "add";
- formConfig[1].disabled = false;
- formConfig[2].disabled = false;
- formData.data = {
- type: "1",
- groupRecordDetailsList: [],
- };
- };
- const submitForm = () => {
- byform.value.handleSubmit((valid) => {
- const list = formData.data.groupRecordDetailsList;
- for (let i = 0; i < list.length; i++) {
- const e = list[i];
- if (e.groupNum == 0) {
- return ElMessage({
- message: "本次组合不能为0!",
- type: "info",
- });
- }
- if (e.groupNum > e.canSum) {
- return ElMessage({
- message: "本次组合不可大于可组合数量!",
- type: "info",
- });
- }
- }
- submitLoading.value = true;
- const data = {
- type: formData.data.type,
- productWarehouseId: formData.data.productWarehouseId,
- groupWarehouseId: formData.data.groupWarehouseId,
- groupRecordDetailsList: list.map((x) => ({
- productId: x.productId,
- groupNum: x.groupNum,
- })),
- };
- proxy.post("/groupRecordDetails/" + modalType.value, data).then(
- (res) => {
- ElMessage({
- message: modalType.value == "add" ? "添加成功" : "编辑成功",
- type: "success",
- });
- dialogVisible.value = false;
- submitLoading.value = false;
- getList();
- },
- (err) => (submitLoading.value = false)
- );
- });
- };
- const getDtl = (row) => {
- modalType.value = "edit";
- proxy
- .post("/groupRecordDetails/detail", { id: row.groupRecordId })
- .then((res) => {
- formConfig[1].disabled = true;
- formConfig[2].disabled = true;
- formData.data.productWarehouseId = row.productWarehouseId;
- formData.data.groupWarehouseId = row.groupWarehouseId;
- formData.data.groupRecordDetailsList = res;
- dialogVisible.value = true;
- });
- };
- const warehouseList = ref([]);
- const warehouseListData = () => {
- // // 币种数据
- proxy
- .post("/warehouse/page", {
- pageNum: 1,
- pageSize: 9999,
- })
- .then((message) => {
- warehouseList.value = message.rows;
- formConfig[1].data = message.rows.map((x) => ({
- label: x.name,
- value: x.id,
- }));
- formConfig[2].data = message.rows.map((x) => ({
- label: x.name,
- value: x.id,
- }));
- });
- };
- getList();
- warehouseListData();
- const handleSelect = (row) => {
- const flag = formData.data.groupRecordDetailsList.some(
- (x) => x.productId === row.id
- );
- if (flag)
- return ElMessage({
- message: "该物品已选择",
- type: "info",
- });
- formData.data.groupRecordDetailsList.push({
- productName: row.name,
- productCode: row.code,
- productSpec: row.spec,
- productId: row.id,
- groupNum: 0,
- });
- return ElMessage({
- message: "选择成功",
- type: "success",
- });
- };
- const handleRemove = (index) => {
- formData.data.groupRecordDetailsList.splice(index, 1);
- return ElMessage({
- message: "删除成功",
- type: "success",
- });
- };
- const stockMapData = reactive({
- data: {},
- });
- watchEffect(() => {
- if (
- formData.data.productWarehouseId &&
- formData.data.groupRecordDetailsList.length > 0
- ) {
- proxy
- .post("/groupRecordDetails/getCombinableQuantity", {
- warehouseId: formData.data.productWarehouseId,
- productIdList: formData.data.groupRecordDetailsList.map(
- (x) => x.productId
- ),
- })
- .then((res) => {
- stockMapData.data = res.stockMap;
- const stockMap = { ...stockMapData.data };
- const list = formData.data.groupRecordDetailsList;
- for (let i = 0; i < list.length; i++) {
- const e = list[i];
- for (const key in res.combinableQuantity) {
- if (e.productId === key) {
- e.needProductIdMap = res.combinableQuantity[key]; //赋值需要的半成品id
- }
- }
- }
- for (let i = 0; i < list.length; i++) {
- const e = list[i];
- const canSumMap = {};
- for (const needKey in e.needProductIdMap) {
- if (stockMap.hasOwnProperty(needKey)) {
- canSumMap[needKey] =
- stockMap[needKey] / e.needProductIdMap[needKey];
- } else {
- canSumMap[needKey] = 0;
- }
- }
- e.canSumArr = Object.values(canSumMap);
- e.canSum = Math.floor(Math.min(...e.canSumArr)); //取出最小值且向下取整
- }
- });
- }
- });
- const changeCanSum = (row, rowIndex) => {
- const list = formData.data.groupRecordDetailsList;
- const stockMap = { ...stockMapData.data };
- if (rowIndex < list.length - 1) {
- for (let i = 0; i < list.length; i++) {
- const e = list[i];
- const canSumMap = {};
- for (const key in e.needProductIdMap) {
- if (stockMap.hasOwnProperty(key)) {
- if (e.groupNum && e.groupNum > 0) {
- stockMap[key] -= e.needProductIdMap[key] * e.groupNum;
- }
- } else {
- canSumMap[key] = 0;
- }
- // canSumMap[key] = stockMap[key] / e.needProductIdMap[key];
- if (row.productId != e.productId) {
- // console.log("aaa");
- canSumMap[key] = stockMap[key] / e.needProductIdMap[key];
- }
- }
- e.canSumArr =
- Object.values(canSumMap).length > 0
- ? Object.values(canSumMap)
- : [...e.canSumArr];
- e.canSum = Math.floor(Math.min(...e.canSumArr)); //取出最小值且向下取整
- }
- } else {
- for (let i = list.length - 1; i >= 0; i--) {
- const e = list[i];
- const canSumMap = {};
- for (const key in e.needProductIdMap) {
- if (stockMap.hasOwnProperty(key)) {
- if (e.groupNum && e.groupNum > 0) {
- stockMap[key] -= e.needProductIdMap[key] * e.groupNum;
- }
- } else {
- canSumMap[key] = 0;
- }
- // canSumMap[key] = stockMap[key] / e.needProductIdMap[key];
- if (row.productId != e.productId) {
- // console.log("aaa");
- canSumMap[key] = stockMap[key] / e.needProductIdMap[key];
- }
- }
- e.canSumArr =
- Object.values(canSumMap).length > 0
- ? Object.values(canSumMap)
- : [...e.canSumArr];
- e.canSum = Math.floor(Math.min(...e.canSumArr)); //取出最小值且向下取整
- }
- }
- // for (let i = 0; i < list.length; i++) {
- // const e = list[i];
- // let canSumMap = {};
- // for (const needKey in e.needProductIdMap) {
- // if (stockMap.hasOwnProperty(needKey)) {
- // if (e.groupNum && e.groupNum > 0) {
- // stockMap[needKey] =
- // stockMap[needKey] - e.needProductIdMap[needKey] * e.groupNum;
- // } else {
- // stockMap[needKey] =
- // stockMap[needKey] - e.needProductIdMap[needKey] * -1;
- // }
- // if (row.productId != e.productId) {
- // canSumMap[needKey] = stockMap[needKey] / e.needProductIdMap[needKey];
- // }
- // } else {
- // canSumMap[needKey] = 0;
- // }
- // }
- // e.canSumArr = Object.values(canSumMap).length
- // ? Object.values(canSumMap)
- // : [...e.canSumArr];
- // e.canSum = Math.floor(Math.min(...e.canSumArr)); //取出最小值且向下取整
- // // e.canSum = e.canSum - 1;
- // }
- };
- const getSummaries = (param) => {
- const { columns, data } = param; //columns是每列的信息,data是每行的信息
- const sums = [];
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = "合计"; //此处是在index=0的这一列显示为“合计”
- return;
- }
- const values = data.map((item) => Number(item[column.property]));
- if (column.property === "canSum" || column.property === "groupNum") {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return prev + curr;
- } else {
- return prev;
- }
- }, 0);
- sums[index];
- }
- });
- return sums;
- };
- </script>
-
- <style lang="scss" scoped>
- .tenant {
- padding: 20px;
- }
- </style>
|