123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962 |
- <template>
- <div>
- <el-card class="box-card">
- <el-tabs v-model="activeName" type="card" @tab-change="changeActiveName">
- <el-tab-pane label="待采购列表" name="first">
- <byTable
- :source="sourceList.data"
- :pagination="sourceList.pagination"
- :config="config"
- :loading="loading"
- :searchConfig="searchConfig"
- highlight-current-row
- @get-list="getList"
- @clickReset="clickReset">
- <template #code="{ item }">
- <div>
- <a style="color: #409eff; cursor: pointer; word-break: break-all" @click="clickCode(item)">{{ item.code }}</a>
- </div>
- </template>
- </byTable>
- </el-tab-pane>
- <el-tab-pane label="采购合同" name="second">
- <byTable
- :source="sourceListTwo.data"
- :pagination="sourceListTwo.pagination"
- :config="configTwo"
- :loading="loading"
- :searchConfig="searchConfigTwo"
- highlight-current-row
- :action-list="[
- {
- text: '导入E10合同',
- action: () => clickImportContract(),
- },
- ]"
- @get-list="getListTwo"
- @clickReset="clickResetTwo">
- <template #typeExpand="{ item }">
- <div style="padding: 0 20px">
- <el-table :data="item.purchaseBomList" :row-style="{ height: '35px' }" header-row-class-name="tableHeader" border>
- <el-table-column label="品号" prop="bomSpecCode" width="120" />
- <el-table-column label="品名" prop="bomSpecName" min-width="240" />
- <el-table-column label="颜色" prop="bomSpecColour" width="180" />
- <el-table-column label="尺寸(长宽高,cm)" width="160">
- <template #default="{ row }">
- <div>{{ row.bomSpecLength }} * {{ row.bomSpecWidth }} * {{ row.bomSpecHeight }}</div>
- </template>
- </el-table-column>
- <el-table-column label="含税单价" prop="unitPrice" width="140" />
- <el-table-column label="税率" prop="taxRate" width="120" />
- <el-table-column label="不含税单价" width="100">
- <template #default="{ row }">
- <div>{{ moneyFormat(Number(Math.round(((row.unitPrice * 100) / (100 + row.taxRate)) * 100) / 100)) }}</div>
- </template>
- </el-table-column>
- <el-table-column label="采购数量" prop="purchaseQuantity" width="120" />
- <el-table-column label="含税小计" align="right" width="140">
- <template #default="{ row }">
- <div>{{ moneyFormat(Number(Math.round(row.unitPrice * row.purchaseQuantity * 100) / 100)) }}</div>
- </template>
- </el-table-column>
- <el-table-column label="不含税小计" align="right" width="140">
- <template #default="{ row }">
- <div>
- {{
- moneyFormat(
- Number(Math.round((Math.round(((row.unitPrice * 100) / (100 + row.taxRate)) * 100) / 100) * row.purchaseQuantity * 100) / 100)
- )
- }}
- </div>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </template>
- <template #code="{ item }">
- <div>
- <a style="color: #409eff; cursor: pointer; word-break: break-all" @click="clickPurchaseCode(item)">{{ item.code }}</a>
- </div>
- </template>
- <template #erpCode="{ item }">
- <div>
- <a style="color: #409eff; cursor: pointer; word-break: break-all" @click="clickPurchaseCode(item)">{{ item.erpCode }}</a>
- </div>
- </template>
- <template #advancePayment="{ item }">
- <div>{{ item.advancePayment }}%</div>
- </template>
- <template #finalPayment="{ item }">
- <div>{{ 100 - item.advancePayment }}%</div>
- </template>
- </byTable>
- </el-tab-pane>
- <el-tab-pane label="采购明细" name="third">
- <byTable
- :source="sourceListThree.data"
- :pagination="sourceListThree.pagination"
- :config="configThree"
- :loading="loading"
- :searchConfig="searchConfigThree"
- highlight-current-row
- @get-list="getListThree"
- @clickReset="clickResetThree">
- <template #size="{ item }">
- <span>{{ `${item.length} * ${item.width} * ${item.height}` }}</span>
- </template>
- </byTable>
- </el-tab-pane>
- </el-tabs>
- </el-card>
- <el-dialog title="打印" v-if="openPrint" v-model="openPrint" width="800px" v-loading="loadingPrint">
- <div style="height: calc(100vh - 174px); overflow-y: auto; overflow-x: hidden">
- <div id="printMe">
- <div class="con">
- <div style="font-size: 24px; font-weight: 700; padding: 16px; text-align: center">福清市胜德体育用品有限公司</div>
- <div style="font-size: 24px; padding: 8px 0 4px 0; text-align: center; border-bottom: 2px solid black">采购合同</div>
- <div style="height: 8px"></div>
- <table cellspacing="0" cellpadding="0" border="0" style="width: 100%; line-height: 24px">
- <tr>
- <td style="width: 50%">
- <span>需方:福清市胜德体育用品有限公司</span>
- </td>
- <td>
- <span>订单号:{{ pdfDetail.purchaseContract.code }}</span>
- </td>
- </tr>
- <tr>
- <td style="width: 50%">
- <span>供方:{{ pdfDetail.supplier.name }}</span>
- </td>
- <td>
- <span>日期:{{ pdfDetail.purchaseContract.createTime }}</span>
- </td>
- </tr>
- </table>
- <div style="height: 8px"></div>
- <table cellspacing="0" cellpadding="0" border="0" class="tableOne">
- <tr>
- <th style="width: 30px">序号</th>
- <th style="width: 100px">品号</th>
- <th style="width: 280px">产品名称</th>
- <th style="width: 45px">数量</th>
- <th style="width: 45px">单价</th>
- <th style="width: 60px">金额</th>
- <th style="width: 110px">交货期</th>
- </tr>
- <template v-if="pdfDetail.purchaseContract.purchaseBomList && pdfDetail.purchaseContract.purchaseBomList.length > 0">
- <tr v-for="(item, index) in pdfDetail.purchaseContract.purchaseBomList" :key="index">
- <td>
- {{ index + 1 }}
- </td>
- <td style="text-align: left; word-break: break-all">
- <span>{{ item.bomSpecCode }}</span>
- </td>
- <td style="text-align: left; word-break: break-all; padding: 0 4px">
- <span>{{ item.bomSpecName }}</span>
- </td>
- <td>
- <span>{{ item.purchaseQuantity }}</span>
- </td>
- <td>
- <span>{{ item.unitPrice }}</span>
- </td>
- <td>
- <span>{{ moneyFormat(Number(Math.round(item.purchaseQuantity * item.unitPrice)), 2) }}</span>
- </td>
- <td style="text-align: left; word-break: break-all">
- <span>{{ pdfDetail.purchaseContract.deliveryDate }}</span>
- </td>
- </tr>
- </template>
- <tr>
- <td>合计:</td>
- <td colspan="2"></td>
- <td>{{ computeQuantity() }}</td>
- <td></td>
- <td>
- <span>{{ moneyFormat(pdfDetail.purchaseContract.totalAmountIncludingTax, 2) }}</span>
- </td>
- <td style="border-right: 0"></td>
- </tr>
- </table>
- <div style="height: 8px"></div>
- <table cellspacing="0" cellpadding="0" border="0" class="tableTwo">
- <tr>
- <td>
- <div crossOrigin="anonymous" class="ql-snow" v-html="limitImg(pdfDetail.purchaseContract.contract)"></div>
- </td>
- </tr>
- </table>
- <div style="height: 32px"></div>
- <table cellspacing="0" cellpadding="0" border="0" class="tableThree">
- <tr>
- <td style="width: 50%; position: relative; padding-right: 4px">
- <div>
- <span>需方(签章):福清市胜德体育用品有限公司</span>
- </div>
- <div style="position: absolute; top: -50px; left: 20px">
- <img
- style="width: 160px; height: 160px"
- :src="'http://www.printmat.cn:8181/file/upload/2023/02/24/20230224180954A0974981a85a2400425eb03c2c3f588a9711.png'"
- alt=""
- srcset="" />
- </div>
- </td>
- <td style="padding-left: 4px">
- <span>供方(签章):{{ pdfDetail.supplier.name }}</span>
- </td>
- </tr>
- <tr>
- <td style="width: 50%; padding-right: 4px">
- <span>税 号:91350181MA8TYY2T6D</span>
- </td>
- <td style="padding-left: 4px">
- <span>税 号:{{ pdfDetail.supplier.dutyNumber }}</span>
- </td>
- </tr>
- <tr>
- <td style="width: 50%; padding-right: 4px">
- <span>开 户:中国工商银行股份有限公司福清高山侨乡支行</span>
- </td>
- <td style="padding-left: 4px">
- <span>开 户:{{ pdfDetail.supplier.bank }}</span>
- </td>
- </tr>
- <tr>
- <td style="width: 50%; padding-right: 4px">
- <span>账 号:1402073809100001586</span>
- </td>
- <td style="padding-left: 4px">
- <span>账 号:{{ pdfDetail.supplier.bankAccountNumber }}</span>
- </td>
- </tr>
- <tr>
- <td style="width: 50%; padding-right: 4px">
- <span>地 址:福建省福州市福清市三山镇横坑村金园路18号3号楼4层</span>
- </td>
- <td style="padding-left: 4px">
- <span>地 址:{{ pdfDetail.supplier.province }} {{ pdfDetail.supplier.city }} {{ pdfDetail.supplier.detailedAddress }}</span>
- </td>
- </tr>
- <tr>
- <td style="width: 50%; padding-right: 4px">
- <span>电 话:0591-22852156</span>
- </td>
- <td style="padding-left: 4px">
- <span>电 话:{{ pdfDetail.supplier.companyTelephone }}</span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- <div style="text-align: center; margin: 10px">
- <el-button @click="openPrint = false" size="large">取消</el-button>
- <el-button type="primary" v-print="printObj" size="large">打印</el-button>
- </div>
- </el-dialog>
- <el-dialog title="导入E10合同" v-if="openUpload" v-model="openUpload" width="600">
- <div v-loading="loadingUpload">
- <el-upload :show-file-list="false" action="##" :http-request="uploadServerLog" :before-upload="handleBeforeUpload">
- <el-button style="background: #20b2aa; color: #fff; border: 1px solid #20b2aa">上传</el-button>
- </el-upload>
- <div style="text-align: center; margin: 10px">
- <el-button @click="openUpload = false" size="large">关 闭</el-button>
- </div>
- </div>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import byTable from "/src/components/byTable/index";
- import { ElMessage, ElMessageBox } from "element-plus";
- import { flowStatus } from "/src/utils/flowStatus";
- const { proxy } = getCurrentInstance();
- const activeName = ref("first");
- const sourceList = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- code: "",
- beginTime: "",
- endTime: "",
- flowStatus: "2",
- },
- });
- const sourceListTwo = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- code: "",
- flowStatus: "",
- status: "",
- supplierName: "",
- },
- });
- const sourceListThree = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- purchaseCode: "",
- bomSpecCode: "",
- bomSpecName: "",
- },
- });
- const loading = ref(false);
- const searchConfig = computed(() => {
- return [
- {
- type: "input",
- prop: "code",
- label: "申购单号",
- },
- {
- type: "date",
- propList: ["beginTime", "endTime"],
- label: "申购日期",
- },
- ];
- });
- const searchConfigTwo = computed(() => {
- return [
- {
- type: "input",
- prop: "code",
- label: "采购单号",
- },
- {
- type: "select",
- prop: "flowStatus",
- data: flowStatus(),
- label: "流程状态",
- },
- {
- type: "select",
- prop: "status",
- data: proxy.useUserStore().allDict["purchase_status"],
- label: "采购状态",
- },
- {
- type: "input",
- prop: "supplierName",
- label: "供应商",
- },
- ];
- });
- const searchConfigThree = computed(() => {
- return [
- {
- type: "input",
- prop: "purchaseCode",
- label: "采购单号",
- },
- {
- type: "input",
- prop: "bomSpecCode",
- label: "BOM品号",
- },
- {
- type: "input",
- prop: "bomSpecName",
- label: "BOM品名",
- },
- ];
- });
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "申购单号",
- slot: "code",
- width: 220,
- },
- },
- {
- attrs: {
- label: "申购时间",
- prop: "applyTime",
- align: "center",
- width: 160,
- },
- },
- {
- attrs: {
- label: "申购人",
- prop: "applyName",
- width: 160,
- },
- },
- {
- attrs: {
- label: "申购说明",
- prop: "remark",
- },
- },
- {
- attrs: {
- label: "操作",
- width: 80,
- align: "center",
- fixed: "right",
- },
- renderHTML(row) {
- return [
- {
- attrs: {
- label: "采购",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickPurchase(row);
- },
- },
- ];
- },
- },
- ];
- });
- const configTwo = computed(() => {
- return [
- {
- type: "expand",
- attrs: {
- label: " ",
- slot: "typeExpand",
- width: 50,
- },
- },
- {
- attrs: {
- label: "采购单号",
- slot: "code",
- width: 160,
- },
- },
- {
- attrs: {
- label: "申购单号",
- prop: "applyBuyCode",
- width: 160,
- },
- },
- {
- attrs: {
- label: "E10单号",
- slot: "erpCode",
- width: 160,
- },
- },
- {
- attrs: {
- label: "状态",
- prop: "flowStatus",
- width: 100,
- },
- render(val) {
- return proxy.dictKeyValue(val, flowStatus());
- },
- },
- {
- attrs: {
- label: "采购状态",
- prop: "status",
- width: 100,
- },
- render(val) {
- return proxy.dictKeyValue(val, proxy.useUserStore().allDict["purchase_status"]);
- },
- },
- {
- attrs: {
- label: "币种",
- prop: "currency",
- width: 100,
- },
- render(val) {
- return proxy.dictKeyValue(val, proxy.useUserStore().allDict["currency"]);
- },
- },
- {
- attrs: {
- label: "预付款",
- slot: "advancePayment",
- width: 80,
- },
- },
- {
- attrs: {
- label: "尾款",
- slot: "finalPayment",
- width: 80,
- },
- },
- {
- attrs: {
- label: "含税总金额",
- prop: "totalAmountIncludingTax",
- width: 120,
- align: "right",
- },
- },
- {
- attrs: {
- label: "不含税总金额",
- prop: "totalAmountExcludingTax",
- width: 120,
- align: "right",
- },
- },
- {
- attrs: {
- label: "结算方式",
- prop: "settlementMethod",
- width: 120,
- },
- render(val) {
- return proxy.dictKeyValue(val, proxy.useUserStore().allDict["settlement_method"]);
- },
- },
- {
- attrs: {
- label: "发票类型",
- prop: "invoiceType",
- width: 140,
- },
- render(val) {
- return proxy.dictKeyValue(val, proxy.useUserStore().allDict["invoice_type"]);
- },
- },
- {
- attrs: {
- label: "交期",
- prop: "deliveryDate",
- width: 160,
- },
- },
- {
- attrs: {
- label: "供应商",
- prop: "supplierName",
- "min-width": 160,
- },
- },
- {
- attrs: {
- label: "创建时间",
- prop: "createTime",
- width: 160,
- },
- },
- {
- attrs: {
- label: "操作",
- width: 140,
- align: "center",
- fixed: "right",
- },
- renderHTML(row) {
- return [
- row.flowStatus == 2
- ? {
- attrs: {
- label: "打印",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickPrint(row);
- },
- }
- : {},
- row.flowStatus == 0 || row.flowStatus == 3
- ? {
- attrs: {
- label: "编辑",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickUpdate(row);
- },
- }
- : {},
- row.flowStatus == 0 || row.flowStatus == 3
- ? {
- attrs: {
- label: "删除",
- type: "danger",
- text: true,
- },
- el: "button",
- click() {
- clickDelete(row);
- },
- }
- : {},
- row.status == 20
- ? {
- attrs: {
- label: "终止合同",
- type: "danger",
- text: true,
- },
- el: "button",
- click() {
- clickRemove(row);
- },
- }
- : {},
- ];
- },
- },
- ];
- });
- const configThree = computed(() => {
- return [
- {
- attrs: {
- label: "采购单号",
- prop: "purchaseCode",
- width: 160,
- },
- },
- {
- attrs: {
- label: "BOM品号",
- prop: "bomSpecCode",
- width: 180,
- },
- },
- {
- attrs: {
- label: "BOM品名",
- prop: "bomSpecName",
- "min-width": 240,
- },
- },
- {
- attrs: {
- label: "尺寸(长宽高,cm)",
- slot: "size",
- width: 160,
- },
- },
- {
- attrs: {
- label: "含税单价",
- prop: "unitPrice",
- width: 120,
- },
- },
- {
- attrs: {
- label: "采购数量",
- prop: "purchaseQuantity",
- width: 120,
- },
- },
- {
- attrs: {
- label: "已到货数量",
- prop: "arrivalQuantity",
- width: 120,
- },
- },
- {
- attrs: {
- label: "在途数量",
- prop: "inTransitQuantity",
- width: 120,
- },
- },
- {
- attrs: {
- label: "已退货数量",
- prop: "returnQuantity",
- width: 120,
- },
- },
- ];
- });
- const getList = (req) => {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy.post("/applyBuy/page", sourceList.value.pagination).then((res) => {
- sourceList.value.data = res.rows;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- getList();
- const clickReset = () => {
- getList("");
- };
- const getListTwo = (req, status) => {
- if (status) {
- sourceListTwo.value.pagination = {
- pageNum: sourceListTwo.value.pagination.pageNum,
- pageSize: sourceListTwo.value.pagination.pageSize,
- };
- } else {
- sourceListTwo.value.pagination = { ...sourceListTwo.value.pagination, ...req };
- }
- loading.value = true;
- proxy.post("/purchase/page", sourceListTwo.value.pagination).then((res) => {
- sourceListTwo.value.data = res.rows;
- sourceListTwo.value.pagination.total = res.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- const clickResetTwo = () => {
- getListTwo("", true);
- };
- const getListThree = (req, status) => {
- if (status) {
- sourceListThree.value.pagination = {
- pageNum: sourceListThree.value.pagination.pageNum,
- pageSize: sourceListThree.value.pagination.pageSize,
- };
- } else {
- sourceListThree.value.pagination = { ...sourceListThree.value.pagination, ...req };
- }
- loading.value = true;
- proxy.post("/purchaseBom/purchaseDetailsPage", sourceListThree.value.pagination).then((res) => {
- sourceListThree.value.data = res.rows;
- sourceListThree.value.pagination.total = res.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- const clickResetThree = () => {
- getListThree("", true);
- };
- const changeActiveName = (val) => {
- if (val === "first") {
- getList();
- } else if (val === "second") {
- getListTwo();
- } else {
- getListThree();
- }
- };
- const clickCode = (item) => {
- proxy.$router.replace({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: "apply_buy",
- flowName: "申购流程",
- processType: "20",
- id: item.id,
- flowId: item.flowId,
- random: proxy.random(),
- },
- });
- };
- const clickPurchaseCode = (item) => {
- proxy.$router.replace({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: "purchase",
- flowName: "采购流程",
- processType: "20",
- id: item.id,
- flowId: item.flowId,
- random: proxy.random(),
- },
- });
- };
- const clickPurchase = (item) => {
- proxy.$router.replace({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: "purchase",
- flowName: "采购流程",
- random: proxy.random(),
- subscribeId: item.id,
- },
- });
- };
- const clickUpdate = (item) => {
- proxy.$router.replace({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: "purchase",
- flowName: "采购流程",
- processType: "40",
- id: item.id,
- random: proxy.random(),
- },
- });
- };
- const clickDelete = (row) => {
- ElMessageBox.confirm("你是否确认此操作", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- proxy.post("/purchase/delete", { id: row.id }).then(() => {
- ElMessage({ message: "删除成功", type: "success" });
- getListTwo();
- });
- })
- .catch(() => {});
- };
- const clickRemove = (row) => {
- ElMessageBox.confirm("你是否确认此操作", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- proxy.post("/purchase/purchaseTermination", { id: row.id }).then(() => {
- ElMessage({ message: "终止成功", type: "success" });
- getListTwo();
- });
- })
- .catch(() => {});
- };
- const openPrint = ref(false);
- const printObj = ref({
- id: "printMe",
- popTitle: "",
- extraCss: "https://cdn.bootcdn.net/ajax/libs/animate.css/4.1.1/animate.compat.css, https://cdn.bootcdn.net/ajax/libs/hover.css/2.3.1/css/hover-min.css",
- extraHead: '<meta http-equiv="Content-Language"content="zh-cn"/>',
- });
- const pdfDetail = ref({
- purchaseContract: {},
- supplier: {},
- });
- const loadingPrint = ref(false);
- const clickPrint = async (row) => {
- pdfDetail.value = {
- purchaseContract: {},
- supplier: {},
- };
- openPrint.value = true;
- loadingPrint.value = true;
- let supplier = await proxy.post("/supplier/detail", { id: row.supplierId }).then((res) => {
- pdfDetail.value.supplier = res;
- });
- let purchase = await proxy.post("/purchase/detail", { id: row.id }).then((res) => {
- pdfDetail.value.purchaseContract = res;
- });
- loadingPrint.value = false;
- };
- const limitImg = (text) => {
- if (text) {
- return text.replace(/<img/g, '<img style="max-width: 98%;"');
- } else {
- return text;
- }
- };
- const computeQuantity = () => {
- let num = 0;
- if (pdfDetail.value.purchaseContract.purchaseBomList && pdfDetail.value.purchaseContract.purchaseBomList.length > 0) {
- for (let i = 0; i < pdfDetail.value.purchaseContract.purchaseBomList.length; i++) {
- if (pdfDetail.value.purchaseContract.purchaseBomList[i].purchaseQuantity) {
- num = Number(Math.round(num + pdfDetail.value.purchaseContract.purchaseBomList[i].purchaseQuantity));
- }
- }
- }
- return num;
- };
- const openUpload = ref(false);
- const loadingUpload = ref(false);
- const clickImportContract = () => {
- loadingUpload.value = false;
- openUpload.value = true;
- };
- const handleBeforeUpload = () => {
- loadingUpload.value = true;
- };
- const uploadServerLog = (params) => {
- let file = params.file;
- let formData = new FormData();
- formData.append("file", file);
- proxy.postUploadFile("/purchase/purchaseImport", formData).then(
- () => {
- ElMessage({ message: "导入成功", type: "success" });
- openUpload.value = false;
- getListTwo();
- },
- (err) => {
- console.log(err);
- loadingUpload.value = false;
- }
- );
- };
- </script>
- <style lang="scss" scoped>
- ::v-deep(.el-input-number .el-input__inner) {
- text-align: left;
- }
- ::v-deep(.el-table__expand-icon) {
- display: grid;
- place-items: center;
- }
- :deep(.el-dialog) {
- margin-top: 10px !important;
- margin-bottom: 10px !important;
- }
- .con {
- font-family: "Times New Roman", "SimSun" !important;
- color: black !important;
- font-size: 12px !important;
- text-align: left;
- background-color: white;
- padding: 16px;
- }
- .tableOne {
- border: 1px solid black;
- line-height: 18px;
- overflow: auto;
- width: 100%;
- }
- .tableOne th {
- font-weight: 700;
- border-right: 1px solid black;
- text-align: center;
- }
- .tableOne td {
- border-right: 1px solid black;
- border-top: 1px solid black;
- text-align: center;
- }
- .tableTwo {
- width: 100%;
- line-height: 18px;
- word-break: break-all;
- }
- .tableTwo td {
- vertical-align: top;
- }
- .tableThree {
- width: 100%;
- line-height: 24px;
- word-break: break-all;
- }
- .tableThree td {
- vertical-align: top;
- }
- </style>
|