Merge pull request 'Fix Product receipt form scroll issue' (#102) from feb06 into main
Reviewed-on: Pozomind/pozo-retail-app#102
This commit is contained in:
commit
6e269ca679
|
|
@ -1715,7 +1715,7 @@ const StockForm = ({ formType }) => {
|
|||
title: 'Amount per piece',
|
||||
dataIndex: 'OnePcsPrice',
|
||||
key: 'OnePcsPrice',
|
||||
width: 70,
|
||||
width: 125,
|
||||
editable: true,
|
||||
render: (_, record, index) => {
|
||||
return (
|
||||
|
|
@ -1751,7 +1751,7 @@ const StockForm = ({ formType }) => {
|
|||
title: 'Number of piece',
|
||||
dataIndex: 'NoOfPcs',
|
||||
key: 'NoOfPcs',
|
||||
width: 70,
|
||||
width: 125,
|
||||
editable: true,
|
||||
render: (_, record, index) => {
|
||||
return (
|
||||
|
|
@ -1784,7 +1784,7 @@ const StockForm = ({ formType }) => {
|
|||
title: 'Wholesale price',
|
||||
dataIndex: 'WhSalePrice',
|
||||
key: 'WhSalePrice',
|
||||
width: 70,
|
||||
width: 125,
|
||||
editable: true,
|
||||
render: (_, record) => {
|
||||
return (
|
||||
|
|
@ -1821,6 +1821,7 @@ const StockForm = ({ formType }) => {
|
|||
dataIndex: 'ManufDate',
|
||||
key: 'ManufDate',
|
||||
editable: true,
|
||||
width: 100,
|
||||
render: (text, record, index) => {
|
||||
return (
|
||||
<DatePicProd
|
||||
|
|
@ -1856,6 +1857,7 @@ const StockForm = ({ formType }) => {
|
|||
dataIndex: 'ExpDate',
|
||||
key: 'ExpDate',
|
||||
editable: true,
|
||||
width: 100,
|
||||
render: (text, record, index) => {
|
||||
return (
|
||||
<DatePicProd
|
||||
|
|
@ -1879,7 +1881,8 @@ const StockForm = ({ formType }) => {
|
|||
dataIndex: 'Hsn',
|
||||
key: 'Hsn',
|
||||
editable: true,
|
||||
// width: 130,
|
||||
width: 100,
|
||||
align: 'center',
|
||||
render: (text, record, index) => {
|
||||
return (
|
||||
<Input
|
||||
|
|
@ -1911,6 +1914,8 @@ const StockForm = ({ formType }) => {
|
|||
dataIndex: 'Model',
|
||||
key: 'Model',
|
||||
editable: true,
|
||||
width: 100,
|
||||
align: 'center',
|
||||
render: (text, record, index) => {
|
||||
return (
|
||||
<Input
|
||||
|
|
@ -1942,6 +1947,8 @@ const StockForm = ({ formType }) => {
|
|||
title: 'Batch',
|
||||
dataIndex: 'Batch',
|
||||
key: 'Batch',
|
||||
width: 100,
|
||||
align: 'center',
|
||||
editable: true,
|
||||
render: (text, record, index) => {
|
||||
return (
|
||||
|
|
@ -1976,6 +1983,8 @@ const StockForm = ({ formType }) => {
|
|||
dataIndex: 'RejectedQty',
|
||||
key: 'RejectedQty',
|
||||
editable: true,
|
||||
width: 100,
|
||||
align: 'center',
|
||||
render: (text, record, index) => {
|
||||
return (
|
||||
<Input
|
||||
|
|
@ -2034,6 +2043,8 @@ const StockForm = ({ formType }) => {
|
|||
dataIndex: 'Freeqty',
|
||||
key: 'Freeqty',
|
||||
editable: true,
|
||||
width: 100,
|
||||
align: 'center',
|
||||
render: (text, record) => {
|
||||
return (
|
||||
<Input
|
||||
|
|
|
|||
Loading…
Reference in New Issue