Commit 26e33634f623a28d626f341a69dff8fd16620205

Authored by jiangwei
1 parent 9c4c170d

库销比展示

src/pages/pms/partPlan/PlanPool/components/AreaTable.tsx
... ... @@ -35,7 +35,7 @@ export default function Index(props: Props = {}) {
35 35 <Column title="区域库" dataIndex="name" fixed="left" />
36 36 <Column title="本次计划数量(个)" dataIndex="cnt" fixed="left" />
37 37 <Column title="计划前库销比" dataIndex="ratio" render={t => (t ? t.toFixed(2) : "--")} />
38   - <Column title="计划后库销比" dataIndex="planeRatio" render={t => (t ? t.toFixed(2) : "--")} />
  38 + <Column title="计划后库销比" dataIndex="planRatio" render={t => (t ? t.toFixed(2) : "--")} />
39 39 <Column title="本次计划金额(元)" dataIndex="thisTimeAmount" />
40 40 <Column title="客户订件数量(个)" render={r => (r.buyCnt ? <a onClick={() => { setCustVisible(true); setItem(r); }}>{r.buyCnt}</a> : r.buyCnt)} />
41 41 <Column title="客户订件金额(元)" dataIndex="buyAmount" />
... ...
src/pages/pms/partPlan/PlanPool/components/PartTable.tsx
... ... @@ -41,7 +41,7 @@ export default function Index(props: Props = {}) {
41 41 <Column title="配件类型" dataIndex="partTypeName" />
42 42  
43 43 <Column title="计划前库销比" dataIndex="ratio" render={t => (t ? t.toFixed(2) : "--")} />
44   - <Column title="计划后库销比" dataIndex="planeRatio" render={t => (t ? t.toFixed(2) : "--")} />
  44 + <Column title="计划后库销比" dataIndex="planRatio" render={t => (t ? t.toFixed(2) : "--")} />
45 45  
46 46 <Column title="本次计划金额(元)" dataIndex="thisTimeAmount" />
47 47 <Column title="客户订件数量(个)" render={r => (r.buyCnt ? <a onClick={() => { setCustVisible(true); setItem(r); }}>{r.buyCnt}</a> : r.buyCnt)} />
... ...
src/pages/pms/partPlan/PlanPool/components/SeriesTable.tsx
... ... @@ -36,7 +36,7 @@ export default function Index(props: Props = {}) {
36 36 <Column title="车系" dataIndex="name" fixed="left" />
37 37 <Column title="本次计划数量(个)" dataIndex="cnt" fixed="left" />
38 38 <Column title="计划前库销比" dataIndex="ratio" render={t => (t ? t.toFixed(2) : "--")} />
39   - <Column title="计划后库销比" dataIndex="planeRatio" render={t => (t ? t.toFixed(2) : "--")} />
  39 + <Column title="计划后库销比" dataIndex="planRatio" render={t => (t ? t.toFixed(2) : "--")} />
40 40  
41 41 <Column title="本次计划金额(元)" dataIndex="thisTimeAmount" />
42 42 <Column title="客户订件数量(个)" render={r => (r.buyCnt ? <a onClick={() => { setCustVisible(true); setItem(r); }}>{r.buyCnt}</a> : r.buyCnt)} />
... ...
src/pages/pms/partPlan/PlanPool/components/StoragePartTable.tsx
... ... @@ -66,7 +66,7 @@ export default function Index(props: Props = {}) {
66 66 <Column title="配件类型" dataIndex="partTypeName" />
67 67  
68 68 <Column title="计划前库销比" dataIndex="ratio" render={t => (t ? t.toFixed(2) : "--")} />
69   - <Column title="计划后库销比" dataIndex="planeRatio" render={t => (t ? t.toFixed(2) : "--")} />
  69 + <Column title="计划后库销比" dataIndex="planRatio" render={t => (t ? t.toFixed(2) : "--")} />
70 70  
71 71 <Column title="本次计划金额(元)" dataIndex="thisTimeAmount" />
72 72 <Column title="客户订件数量(个)" render={r => (r.buyCnt ? <a onClick={() => { setCustVisible(true); setItem(r); }}>{r.buyCnt}</a> : r.buyCnt)} />
... ...
src/pages/pms/partPlan/PlanPool/components/StorageTable.tsx
... ... @@ -35,7 +35,7 @@ export default function Index(props: Props = {}) {
35 35 <Column title="库房" dataIndex="name" fixed="left" />
36 36 <Column title="本次计划数量(个)" dataIndex="cnt" fixed="left" />
37 37 <Column title="计划前库销比" dataIndex="ratio" render={t => (t ? t.toFixed(2) : "--")} />
38   - <Column title="计划后库销比" dataIndex="planeRatio" render={t => (t ? t.toFixed(2) : "--")} />
  38 + <Column title="计划后库销比" dataIndex="planRatio" render={t => (t ? t.toFixed(2) : "--")} />
39 39  
40 40 <Column title="本次计划金额(元)" dataIndex="thisTimeAmount" />
41 41 <Column title="客户订件数量(个)" render={r => (r.buyCnt ? <a onClick={() => { setCustVisible(true); setItem(r); }}>{r.buyCnt}</a> : r.buyCnt)} />
... ...