Browse Source

FWHL-97

hella_online_20241212_pandian
王宇飞 2 months ago
parent
commit
5c692c425c
  1. 54
      src/locales/en-US.ts
  2. 54
      src/locales/zh-CN.ts
  3. 10
      src/views/wms/supplierManage/supplierApbalance/supplierApbalanceMain/index.vue

54
src/locales/en-US.ts

@ -1298,7 +1298,59 @@ export default {
:'Return of invoice', :'Return of invoice',
: 'The invoice has been successfully forwarded', : 'The invoice has been successfully forwarded',
: 'Last Updated By', : 'Last Updated By',
:'The range of invoices is' :'The range of invoices is',
: 'Schedule to be invoiced data query',
: 'Discrete invoicing data query',
: 'Pending invoicing delete data query',
: 'Purchase discrete order view',
: 'Supplier reconciliation management',
: 'Confirmation date management',
: 'month',
: 'date',
: 'company code',
: 'month',
: 'day',
: 'year',
: 'monthly',
: 'Amount payable payable',
: 'Other amounts payable',
: 'Amount paid in advance',
: 'Provisional estimated amount',
: 'Provisional estimated balance',
: 'Amount of activity',
: 'Print start time',
: 'Print end time',
: 'Total number of bills',
: 'Actual invoice quantity',
: 'Invoice application number',
: 'Read state',
: 'Total spread',
: 'Invoice amount not taxed',
: 'Invoice tax amount',
: 'Invoice value and tax total',
: 'Untaxed residuals',
: 'The tax tail difference',
: 'Spread sum tail spread',
: 'Total difference in value and tax',
: 'Financial Voucher No.',
: 'Supplier maintenance tax',
: 'supplier maintains the untaxed amount',
: 'Total supplier maintenance price and tax',
: 'Date of return',
: 'Notes',
: 'Turn voucher number',
: 'Credential Description',
: 'recovery',
: 'Partial billing',
: 'The invoice is being transferred',
: 'confirmation',
: 'Please select Year',
: 'Please select month',
: 'Please select day',
: 'Details of callback letter',
: 'Resume',
: 'more'
}, },

54
src/locales/zh-CN.ts

@ -1296,7 +1296,59 @@ export default {
:'发票回转', :'发票回转',
: '发票回转成功', : '发票回转成功',
:'最后更新人', :'最后更新人',
:'可开票数量范围是' :'可开票数量范围是',
: '日程待开票数据查询',
: '离散待开票数据查询',
: '待开票删除数据查询',
: '采购离散订单查看',
: '供应商对账管理',
: '询证函日期管理',
: '月份',
: '日期',
: '公司代码',
: '月',
: '日',
: '年度',
: '月度',
: '应付挂账金额',
: '其他应付金额',
: '预付金额',
: '暂估金额',
: '暂估余额',
: '活动金额',
: '打印开始时间',
: '打印结束时间',
: '票据总数',
: '实际开票数量',
: '发票申请单号',
: '已读状态',
: '价差合计',
: '发票未税金额',
: '发票税额',
: '发票价税合计',
: '未税尾差',
: '税额尾差',
: '价差合计尾差',
: '价税合计尾差',
: '财务凭证号',
: '供应商维护税额',
: '供应商维护未税金额',
: '供应商维护价税合计',
: '回转日期',
: '说明',
: '回转凭证号',
: '凭证描述',
: '恢复',
: '部分开票',
: '发票回转中',
: '询证',
: '请选择年',
: '请选择月',
: '请选择日',
: '回调函明细',
: '履历表',
: '更多'
}, },
} }

10
src/views/wms/supplierManage/supplierApbalance/supplierApbalanceMain/index.vue

@ -3,24 +3,24 @@
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<Search ref="searchRef" :schema="SupplierApbalanceMain.allSchemas.searchSchema" @search="searchClick" @reset="resetClick" > <Search ref="searchRef" :schema="SupplierApbalanceMain.allSchemas.searchSchema" @search="searchClick" @reset="resetClick" >
<template #year> <template #year>
<el-select v-model="year" placeholder="请选择年" @change="(value)=>selectChange(value,'year')"> <el-select v-model="year" :placeholder="t(`ts.请选择年`)" @change="(value)=>selectChange(value,'year')">
<el-option v-for="dict in yearList" :key="dict.value" :label="dict.label" :value="dict.value"/> <el-option v-for="dict in yearList" :key="dict.value" :label="dict.label" :value="dict.value"/>
</el-select> </el-select>
</template> </template>
<template #month> <template #month>
<el-select v-model="month" placeholder="请选择月" @change="(value)=>selectChange(value,'month')"> <el-select v-model="month" :placeholder="t(`ts.请选择月`)" @change="(value)=>selectChange(value,'month')">
<el-option v-for="dict in monthList" :key="dict.value" :label="dict.label" :value="dict.value"/> <el-option v-for="dict in monthList" :key="dict.value" :label="dict.label" :value="dict.value"/>
</el-select> </el-select>
</template> </template>
<template #day> <template #day>
<el-select v-model="day" placeholder="请选择日" @change="(value)=>selectChange(value,'day')"> <el-select v-model="day" :placeholder="t(`ts.请选择日`)" @change="(value)=>selectChange(value,'day')">
<el-option v-for="dict in dayList" :key="dict.value" :label="dict.label" :value="dict.value"/> <el-option v-for="dict in dayList" :key="dict.value" :label="dict.label" :value="dict.value"/>
</el-select> </el-select>
</template> </template>
<template #actionMoreTop> <template #actionMoreTop>
<el-button type="primary" @click="confirmationHandle"> <el-button type="primary" @click="confirmationHandle">
<Icon class="mr-5px" icon="ep:" /> <Icon class="mr-5px" icon="ep:" />
询证 {{t(`ts.询证`)}}
<Icon class="ml-5px" icon="ep:" /> <Icon class="ml-5px" icon="ep:" />
</el-button> </el-button>
</template> </template>
@ -86,7 +86,7 @@
:detailButtonIsShowDelete=false :detailButtonIsShowDelete=false
:slotDetailTabList="[ :slotDetailTabList="[
{ {
label: '回调函明细', label: t(`ts.回调函明细`),
prop: 'adjustment' prop: 'adjustment'
} }
]" ]"

Loading…
Cancel
Save