123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581 |
- <template>
- <div style="width: 100%; padding: 0px 15px">
- <el-form
- :model="formData.data"
- :rules="rules"
- ref="formDom"
- label-position="top"
- :disabled="judgeStatus()"
- >
- <div class="_t">基础信息</div>
- <el-row :gutter="10">
- <el-col :span="6">
- <el-form-item label="采购部门" prop="deptName">
- <el-input v-model="formData.data.deptName" placeholder="请输入">
- </el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="采购人" prop="purchaseName">
- <el-input v-model="formData.data.purchaseName" placeholder="请输入">
- </el-input>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="采购时间" prop="purchaseTime">
- <el-date-picker
- v-model="formData.data.purchaseTime"
- type="datetime"
- placeholder="请选择"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="10">
- <el-col :span="8">
- <el-form-item label="供应商" prop="supplyId">
- <el-select
- v-model="formData.data.supplyId"
- placeholder="请选择"
- @change="handleChangeSupplier"
- filterable
- style="width: 100%"
- >
- <el-option
- v-for="item in supplierData"
- :label="item.name"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-form-item label="采购说明" prop="purchaseContent">
- <el-input
- v-model="formData.data.purchaseContent"
- placeholder="请输入"
- type="textarea"
- >
- </el-input>
- </el-form-item>
- <div class="_t">采购明细</div>
- <el-form-item>
- <el-button
- type="primary"
- @click="openProduct = true"
- style="margin: 10px 0"
- v-if="ids.length == 0"
- >
- 添加货品
- </el-button>
- <el-table :data="formData.data.purchaseDetailList">
- <el-table-column
- prop="goodType"
- label="货品类型"
- :formatter="(row) => (row.goodType == 1 ? '产品' : '物料')"
- />
- <el-table-column prop="productCode" label="货品编码" />
- <el-table-column prop="productName" label="货品名称" />
- <el-table-column prop="productSpec" label="规格型号" />
- <el-table-column
- prop="productUnit"
- label="单位"
- :formatter="(row) => dictValueLabel(row.productUnit, productUnit)"
- />
- <el-table-column
- prop="subscribeCount"
- label="申购数量"
- v-if="ids.length > 0"
- />
- <el-table-column
- prop="purchaseCount"
- label="已采购数量"
- v-if="ids.length > 0"
- />
- <el-table-column prop="count" label="本次采购" min-width="150">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="'purchaseDetailList.' + $index + '.count'"
- :rules="rules.count"
- :inline-message="true"
- >
- <el-input-number
- onmousewheel="return false;"
- v-model="row.count"
- :precision="4"
- :controls="false"
- :min="0"
- @change="handleChangeAmount"
- />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column prop="price" label="单价" min-width="150">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="'purchaseDetailList.' + $index + '.price'"
- :rules="rules.price"
- :inline-message="true"
- >
- <el-input-number
- onmousewheel="return false;"
- v-model="row.price"
- :precision="4"
- :controls="false"
- :min="0"
- @change="handleChangeAmount"
- />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column prop="amount" label="金额" />
- <el-table-column prop="zip" label="操作" width="100">
- <template #default="{ $index }">
- <el-button
- type="primary"
- link
- @click="handleRemove($index, 20)"
- :disabled="formData.data.purchaseDetailList.length === 1"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </el-form-item>
- <el-row>
- <el-col :span="4">
- <el-form-item label="商品金额小计" prop="productAmount">
- <el-input
- v-model="formData.data.productAmount"
- placeholder="请输入"
- disabled
- />
- </el-form-item>
- </el-col>
- </el-row>
- <div class="_t">其他收费项目</div>
- <el-form-item>
- <el-button type="primary" style="margin: 10px 0" @click="handleAdd">
- 添加
- </el-button>
- <el-table :data="formData.data.otherFeeList">
- <el-table-column prop="name" label="收费项目" min-width="150">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="'otherFeeList.' + $index + '.name'"
- :rules="rulesOne.name"
- :inline-message="true"
- >
- <el-autocomplete
- v-model="row.name"
- :fetch-suggestions="querySearchPerson"
- clearable
- class="inline-input w-50"
- placeholder="请输入"
- @select="(val) => handlePerson(val, $index)"
- >
- </el-autocomplete>
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column prop="price" label="金额" min-width="150">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="'otherFeeList.' + $index + '.price'"
- :rules="rulesOne.price"
- :inline-message="true"
- >
- <el-input-number
- v-model="row.price"
- :precision="4"
- :controls="false"
- @change="handleChangeAmount"
- />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column prop="remark" label="备注" min-width="150">
- <template #default="{ row, $index }">
- <el-form-item
- :prop="'otherFeeList.' + $index + '.remark'"
- :inline-message="true"
- >
- <el-input v-model="row.remark" placeholder="请输入" />
- </el-form-item>
- </template>
- </el-table-column>
- <el-table-column prop="zip" label="操作" width="100">
- <template #default="{ $index }">
- <el-button type="primary" link @click="handleRemove($index, 10)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </el-form-item>
- <el-row>
- <el-col :span="4">
- <el-form-item label="其他收费小计" prop="otherAmount">
- <el-input
- v-model="formData.data.otherAmount"
- placeholder="请输入"
- disabled
- />
- </el-form-item>
- </el-col>
- </el-row>
- <!-- <div class="_t">采购总金额</div> -->
- <el-row>
- <el-col :span="4">
- <el-form-item label="采购总金额" prop="amount">
- <el-input
- v-model="formData.data.amount"
- placeholder="请输入"
- disabled
- />
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <el-dialog
- v-model="openProduct"
- title="选择货品"
- width="70%"
- append-to-body
- >
- <SelectGoods
- @cancel="openProduct = false"
- @pushGoods="pushGoods"
- ></SelectGoods>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import SelectGoods from "@/components/product/SelectGoods";
- import { ElMessage, ElMessageBox } from "element-plus";
- import useUserStore from "@/store/modules/user";
- const route = useRoute();
- const { proxy } = getCurrentInstance();
- // 接收父组件的传值
- const props = defineProps({
- queryData: String,
- });
- let formData = reactive({
- data: {
- purchaseTime: "",
- purchaseDetailList: [],
- otherFeeList: [],
- },
- });
- let rules = ref({
- deptName: [{ required: true, message: "请输入采购部门", trigger: "blur" }],
- purchaseName: [
- { required: true, message: "请输入采购人名称", trigger: "blur" },
- ],
- purchaseTime: [
- { required: true, message: "请选择采购时间", trigger: "change" },
- ],
- supplyId: [{ required: true, message: "请选择供应商", trigger: "change" }],
- count: [{ required: true, message: "请输入本次采购数量", trigger: "blur" }],
- price: [{ required: true, message: "请输入单价", trigger: "blur" }],
- remark: [{ required: true, message: "请输入备注", trigger: "blur" }],
- });
- let rulesOne = ref({
- name: [{ required: true, message: "请输入名称", trigger: "blur" }],
- price: [{ required: true, message: "请输入金额", trigger: "blur" }],
- });
- let openProduct = ref(false);
- // 物品相应逻辑
- const handleRemove = (index, type) => {
- if (type === 20) {
- formData.data.purchaseDetailList.splice(index, 1);
- return ElMessage({
- message: "删除成功!",
- type: "success",
- });
- } else {
- formData.data.otherFeeList.splice(index, 1);
- }
- handleChangeAmount();
- };
- const handleAdd = () => {
- formData.data.otherFeeList.push({
- name: "",
- price: undefined,
- remark: "",
- });
- };
- const pushGoods = (goods) => {
- const arr = goods.map((x) => ({
- goodType: x.goodType,
- productCode: x.code,
- productName: x.name,
- productSpec: x.spec,
- productUnit: x.unit,
- count: 0,
- price: 0,
- bussinessId: x.id,
- amount: 0,
- }));
- formData.data.purchaseDetailList =
- formData.data.purchaseDetailList.concat(arr);
- openProduct.value = false;
- return ElMessage({
- message: "添加成功!",
- type: "success",
- });
- };
- // 提交方法
- const formDom = ref(null);
- const handleSubmit = async () => {
- const vaild = await formDom.value.validate();
- if (vaild) {
- if (formData.data.purchaseDetailList.length > 0) {
- const list = formData.data.purchaseDetailList;
- for (let i = 0; i < list.length; i++) {
- const e = list[i];
- if (ids.value.length > 0) {
- if (Number(e.subscribeCount) - Number(e.purchaseCount) > 0) {
- if (e.count == 0) {
- ElMessage({
- message: "本次采购数量不能为0!",
- type: "info",
- });
- return false;
- }
- }
- // if (e.count + Number(e.purchaseCount) > Number(e.subscribeCount)) {
- // ElMessage({
- // message: "本次采购数量和已采购数量和不可大于申购数量!",
- // type: "info",
- // });
- // return false;
- // }
- } else {
- if (e.count == 0) {
- ElMessage({
- message: "本次采购数量不能为0!",
- type: "info",
- });
- return false;
- }
- }
- }
- return true;
- }
- ElMessage({
- message: "请添加采购明细!",
- type: "info",
- });
- return false;
- }
- return false;
- };
- // 获取用户信息并赋默认值
- const userInfo = useUserStore().user;
- onMounted(() => {
- formData.data.purchaseTime = proxy.parseTime(new Date());
- formData.data.deptName = userInfo.dept.deptName;
- formData.data.purchaseName = userInfo.nickName;
- getSupplierList();
- if (props.queryData.ids) {
- ids.value = props.queryData.ids.split(",") || [];
- getDetails();
- }
- });
- const ids = ref([]);
- const getDetails = () => {
- if (props.queryData.type && props.queryData.type === "handoverSlip") {
- proxy.post("/contractProduct/getListDetail", ids.value).then((res) => {
- formData.data.purchaseDetailList = res.map((x) => {
- delete x.id;
- return {
- ...x,
- subscribeCount: x.sumPackQuantity,
- purchaseCount: x.sumPurchaseCount || 0,
- count: x.expendQuantity || 0,
- price: null,
- amount: null,
- };
- });
- });
- } else {
- proxy.post("/subscribeDetail/detail", { ids: ids.value }).then((res) => {
- formData.data.purchaseDetailList = res.map((x) => ({
- bussinessId: x.bussinessId,
- goodType: x.productDefinition,
- productCode: x.productCode,
- productName: x.productName,
- productSpec: x.productSpec,
- productUnit: x.productUnit,
- purchaseCount: x.purchaseCount,
- subscribeCount: x.count,
- count: 0,
- price: null,
- amount: null,
- }));
- });
- }
- };
- // 获取供应商数据
- const supplierData = ref([]);
- const otherFeeListData = ref([]);
- const getSupplierList = async (req) => {
- proxy
- .post("/supplierInfo/page", { pageNum: 1, pageSize: 9999 })
- .then((res) => {
- supplierData.value = res.rows;
- });
- };
- // 供应商改变逻辑
- const handleChangeSupplier = (val) => {
- const ids = formData.data.purchaseDetailList.map((x) => x.bussinessId);
- proxy
- .post("/supplierPrice/getSupplierPriceByProductIds", {
- supplierInfoId: val,
- productIdList: ids,
- })
- .then((res) => {
- if (res && Object.keys(res).length > 0) {
- for (let i = 0; i < formData.data.purchaseDetailList.length; i++) {
- const e = formData.data.purchaseDetailList[i];
- for (const key in res) {
- if (e.bussinessId === key) {
- e.price = Number(res[key]);
- }
- }
- }
- } else {
- for (let i = 0; i < formData.data.purchaseDetailList.length; i++) {
- const e = formData.data.purchaseDetailList[i];
- e.price = 0;
- }
- }
- handleChangeAmount();
- });
- };
- const handleChangeProductAmount = () => {
- let sum = 0;
- for (let i = 0; i < formData.data.purchaseDetailList.length; i++) {
- const e = formData.data.purchaseDetailList[i];
- e.amount = parseFloat(e.count * e.price).toFixed(4);
- sum += Number(e.amount);
- }
- formData.data.productAmount = parseFloat(sum).toFixed(4);
- };
- const handleChangeOtherAmount = () => {
- let sum = 0;
- for (let i = 0; i < formData.data.otherFeeList.length; i++) {
- const e = formData.data.otherFeeList[i];
- sum += Number(e.price);
- }
- formData.data.otherAmount = parseFloat(sum).toFixed(4);
- };
- // 计算采购总金额
- const handleChangeAmount = () => {
- handleChangeProductAmount();
- handleChangeOtherAmount();
- let sum = 0;
- for (let i = 0; i < formData.data.purchaseDetailList.length; i++) {
- const e = formData.data.purchaseDetailList[i];
- e.amount = parseFloat(e.count * e.price).toFixed(4);
- sum += Number(e.amount);
- }
- for (let i = 0; i < formData.data.otherFeeList.length; i++) {
- const e = formData.data.otherFeeList[i];
- sum += Number(e.price);
- }
- formData.data.amount = parseFloat(sum).toFixed(4);
- };
- const productUnit = ref([]);
- const getDict = () => {
- proxy.getDictOne(["unit"]).then((res) => {
- productUnit.value = res["unit"].map((x) => ({
- label: x.dictValue,
- value: x.dictKey,
- }));
- });
- proxy.get("/purchaseOtherFee/listName").then((res) => {
- otherFeeListData.value = res.data.map((x) => ({ ...x, value: x.name }));
- });
- };
- getDict();
- const createFilter = (queryString) => {
- return (restaurant) => {
- return (
- restaurant.value.toLowerCase().indexOf(queryString.toLowerCase()) === 0
- );
- };
- };
- const querySearchPerson = (queryString, callback) => {
- const results = queryString
- ? otherFeeListData.value.filter(createFilter(queryString))
- : otherFeeListData.value;
- callback(results);
- };
- const handlePerson = (item, index) => {
- formData.data.otherFeeList[index].name = item.name;
- formData.data.otherFeeList[index].price = item.price ? item.price : 0;
- formData.data.otherFeeList[index].remark = item.remark ? item.remark : "";
- };
- watch(
- props.queryData,
- () => {
- if (
- props.queryData &&
- (route.query.processType == 10 || route.query.processType == 20)
- ) {
- for (const key in props.queryData) {
- formData.data[key] = props.queryData[key];
- }
- }
- },
- {
- deep: true,
- }
- );
- const judgeStatus = () => {
- if (props.queryData.recordList && props.queryData.recordList.length > 0) {
- let data = props.queryData.recordList.filter(
- (item) => item.status === 2 && item.nodeType !== 1
- );
- if (data && data.length > 0) {
- return true;
- }
- }
- return false;
- };
- const getFormData = () => {
- return formData.data;
- };
- // 向父组件暴露
- defineExpose({
- getFormData,
- handleSubmit,
- });
- </script>
- <style lang="scss" scoped>
- ._t {
- margin-bottom: 5px;
- font-size: 14px;
- }
- </style>
|