fix(WarehouseTransfer): set item cost to form entries.

This commit is contained in:
a.bouhuolia
2022-03-20 19:00:50 +02:00
parent 23261e975d
commit 928e903fe0
7 changed files with 76 additions and 18 deletions

View File

@@ -98,7 +98,7 @@ export const useWarehouseTransferTableColumns = () => {
disableSortBy: true,
Cell: SourceWarehouseAccessorCell,
align: 'right',
width: 120,
width: 100,
},
{
id: 'destination_warehouse',
@@ -107,7 +107,7 @@ export const useWarehouseTransferTableColumns = () => {
Cell: DistentionWarehouseAccessorCell,
disableSortBy: true,
align: 'right',
width: 120,
width: 100,
},
{
Header: intl.get('warehouse_transfer.column.transfer_quantity'),
@@ -120,10 +120,9 @@ export const useWarehouseTransferTableColumns = () => {
{
Header: intl.get('warehouse_transfer.column.cost_price'),
accessor: 'cost',
Cell: MoneyFieldCell,
disableSortBy: true,
align: 'right',
width: 100,
width: 80,
},
{
Header: '',
@@ -136,4 +135,4 @@ export const useWarehouseTransferTableColumns = () => {
],
[],
);
};
};