123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- <script>
- import useColumns from "./columns";
- import { EXIST } from "@/api/business/purchase/catalogue";
- import { ITEM, SAVE } from "@/api/business/purchase/apply";
- import { tax, unit, currency } from "@/components/popover-select-v2/fetch";
- const fetchExist = async (prop) => {
- try {
- // try
- const { code, data } = await EXIST(prop);
- if (code === 200) return data;
- } catch (err) {
- // catch
- console.error(err);
- } finally {
- // finally
- }
- };
- export default {
- name: "EditDrawer",
- props: {
- dict: {
- type: Object,
- },
- selectData: {
- type: [Array],
- require: true,
- },
- },
- components: {
- ElSuperForm: () => import("@/components/super-form/index.vue"),
- ElSuperTable: () => import("@/components/super-table/index.vue"),
- ElPopoverSelectV2: () => import("@/components/popover-select-v2/index.vue"),
- },
- data() {
- const {
- TabColumns,
- TableColumns,
- TabColumns: [
- {
- item: { key: tabName },
- },
- ],
- } = useColumns();
- const rules = this.$init.rules([...TabColumns, ...TableColumns]);
- const params = this.$init.params([...TabColumns, ...TableColumns]);
- return {
- title: "编 辑",
- width: "100%",
- visible: false,
- loading: false,
- rules: rules,
- params: params,
- tabName: tabName,
- TabColumns: TabColumns,
- TableColumns: TableColumns,
- };
- },
- computed: {
- disabled: {
- get() {
- const {
- selectData,
- selectData: [{ status } = {}],
- } = this.$props;
- if (selectData.length !== 1) {
- return true;
- }
- if (selectData.length === 1 && status === "1") {
- return true;
- }
- if (selectData.length === 1 && status === "2") {
- return true;
- }
- },
- set() {},
- },
- priceApply: {
- get() {
- this.params.priceApplyItems = this.params.priceApplyItems.map(
- (item, index) => ({
- ...item,
- $index: index,
- })
- );
- return {
- priceApplyItems: this.params.priceApplyItems.filter(
- ({ delFlag }) => delFlag !== "2"
- ),
- };
- },
- set() {},
- },
- },
- watch: {},
- methods: {
- //
- async changeMaterialName(prop) {
- const { selectData } = prop;
- const {
- puOrg,
- customer,
- supplier,
- currency,
- currencyCode,
- currencyName,
- } = this.params;
- const { nickName: createByName } = this.$store.state.user;
- if (selectData.length) {
- this.params[this.tabName].splice(-1);
- }
- for (const item of selectData) {
- this.loading = true;
- const { tax: taxName, unitName, code: materialCode } = item;
- // task 1
- const { ntaxrate } = await tax(taxName);
- // task 2
- const {
- id: puUnit,
- code: puUnitCode,
- name: puUnitName,
- } = await unit(unitName);
- // task 3
- const {
- recentlyPrice = "0",
- isApprovalFirst = "N",
- isPriceAdjustment = "N",
- } = await fetchExist({ puOrg, customer, supplier, materialCode });
- this.loading = false;
- await this.onRowAdd(this.tabName, {
- ...item,
- currency: currency,
- currencyCode: currencyCode,
- currencyName: currencyName,
- unit: puUnit,
- unitCode: puUnitCode,
- unitName: puUnitName,
- puUnit: puUnit,
- puUnitCode: puUnitCode,
- puUnitName: puUnitName,
- recentlyPrice,
- isApprovalFirst,
- isPriceAdjustment,
- tax: Number(ntaxrate === "0E-8" ? 0 : ntaxrate).toFixed(6),
- createByName: createByName,
- updateByName: createByName,
- });
- }
- },
- //
- async fetchItem(prop) {
- try {
- // try
- this.loading = true;
- const { tabName, TabColumns } = this;
- const { TableColumns } = TabColumns.find(
- ({ item: { key } }) => key === tabName
- );
- const { code, data } = await ITEM(prop);
- if (code === 200) {
- this.params = data;
- this.params.priceApplyItems = data.priceApplyItems.map((item) => ({
- ...this.$init.params(TableColumns),
- ...item,
- }));
- return true;
- } else {
- return false;
- }
- } catch (err) {
- // catch
- console.error(err);
- } finally {
- // finally
- this.loading = false;
- }
- },
- //
- async onOpen() {
- const {
- selectData: [{ id }],
- } = this.$props;
- this.visible = await this.fetchItem(id);
- },
- //
- async onHide() {
- const { TabColumns, TableColumns } = useColumns();
- this.visible = false;
- this.params = this.$init.params([...TabColumns, ...TableColumns]);
- },
- //
- async onRowAdd(prop, pushParams = {}) {
- const {
- $notify,
- TabColumns,
- params: { puOrgName, supplierName },
- } = this;
- if (!supplierName) {
- return $notify.info("请选择供应商");
- }
- if (!puOrgName) {
- return $notify.info("请选择采购组织");
- }
- const { TableColumns } = TabColumns.find(
- ({ item: { key } }) => key === prop
- );
- this.params[prop].push({
- delFlag: "0",
- ...this.$init.params(TableColumns),
- ...pushParams,
- });
- },
- //
- async onRowRemove(prop, scope) {
- const {
- row: { $index },
- } = scope;
- this.params[prop] = this.params[prop].map((item, index) => ({
- ...item,
- delFlag: index === $index ? "2" : item.delFlag,
- }));
- },
- //
- async useSubmit(prop) {
- this.$refs[prop].validate(async (valid) => {
- console.log(this.params);
- if (valid) {
- try {
- this.loading = true;
- this.params.priceApplyItems = this.params.priceApplyItems.filter(
- (item) => item.materialName
- );
- const { msg, code } = await SAVE(this.params);
- if (code === 200) {
- this.onHide();
- this.$emit("success");
- this.$notify.success(msg);
- }
- } catch (err) {
- // catch
- console.error(err);
- } finally {
- // finally
- this.loading = false;
- }
- } else {
- return false;
- }
- });
- },
- },
- created() {},
- mounted() {},
- destroyed() {},
- };
- </script>
- <template>
- <el-button
- v-bind="$attrs"
- v-on="$listeners"
- :disabled="disabled"
- @click="onOpen"
- >
- {{ title }}
- <el-drawer
- :show-close="false"
- :size="width"
- :title="title"
- :visible.sync="visible"
- append-to-body
- destroy-on-close
- @close="onHide"
- >
- <template slot="title">
- <span>{{ title }}</span>
- <el-button
- type="primary"
- :size="$attrs.size"
- :loading="loading"
- @click="useSubmit('superForm')"
- >
- 确 认
- </el-button>
- <el-button :size="$attrs.size" :loading="loading" @click="onHide">
- 取 消
- </el-button>
- </template>
- <el-super-form
- v-model="params"
- :dict="dict"
- :rules="rules"
- :size="$attrs.size"
- :columns="TableColumns"
- ref="superForm"
- label-width="auto"
- label-position="right"
- style="padding: 18px"
- >
- </el-super-form>
- <el-tabs v-model="tabName" style="padding: 0 18px 18px">
- <el-tab-pane
- v-for="({ item, TableColumns: columns }, index) in TabColumns"
- :key="index"
- :label="item.title"
- :name="item.key"
- lazy
- ><div v-loading="loading" style="height: 600px; display: flex">
- <el-super-table
- v-model="priceApply[item.key]"
- :dict="dict"
- :ref="tabName"
- :columns="columns"
- :size="$attrs.size"
- >
- <template slot="materialName" slot-scope="scope">
- <component
- v-bind="scope.attr"
- v-model="scope.row[scope.item.key]"
- :size="$attrs.size"
- :source.sync="scope.row"
- @change="changeMaterialName({ ...scope, selectData: $event })"
- >
- </component>
- </template>
- <el-table-column fixed="right" label="操作" width="100">
- <template slot="header" slot-scope="scope">
- <el-button :size="$attrs.size" @click="onRowAdd(tabName)">
- 新增
- </el-button>
- </template>
- <template slot-scope="scope">
- <el-button
- :size="$attrs.size"
- @click.native.prevent="onRowRemove(tabName, scope)"
- >
- 删除
- </el-button>
- </template>
- </el-table-column>
- </el-super-table>
- </div>
- </el-tab-pane>
- </el-tabs>
- </el-drawer>
- </el-button>
- </template>
- <style scoped>
- ::v-deep .el-table__row.is-hidden {
- display: none;
- }
- </style>
|