fix: ticketEditMana i18n label
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
This commit is contained in:
parent
112dcca245
commit
2bdc05951a
|
@ -89,7 +89,7 @@ defineExpose({ save });
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="newPrice" class="column items-center q-mt-lg">
|
<div v-if="newPrice" class="column items-center q-mt-lg">
|
||||||
<span class="text-primary">{{ t('New price') }}</span>
|
<span class="text-primary">{{ t('basicData.newPrice') }}</span>
|
||||||
<span class="text-subtitle1">{{ toCurrency(newPrice) }}</span>
|
<span class="text-subtitle1">{{ toCurrency(newPrice) }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -135,3 +135,4 @@ defineExpose({ save });
|
||||||
min-width: 230px;
|
min-width: 230px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
<
|
||||||
|
|
|
@ -314,7 +314,7 @@ const changePrice = async (sale) => {
|
||||||
const updatePrice = async (sale, newPrice) => {
|
const updatePrice = async (sale, newPrice) => {
|
||||||
try {
|
try {
|
||||||
await axios.post(`Sales/${sale.id}/updatePrice`, {
|
await axios.post(`Sales/${sale.id}/updatePrice`, {
|
||||||
newPrice: newPrice,
|
newPrice,
|
||||||
componentId: componentId.value,
|
componentId: componentId.value,
|
||||||
});
|
});
|
||||||
notify('globals.dataSaved', 'positive');
|
notify('globals.dataSaved', 'positive');
|
||||||
|
|
Loading…
Reference in New Issue