StokcForm

This commit is contained in:
Your Name 2026-02-09 10:11:39 +05:30
parent ca56cced6e
commit 480f34bdf5
1 changed files with 15 additions and 4 deletions

View File

@ -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