Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
shenshaokai
jinfa-platform
Commits
67fbfc62
Commit
67fbfc62
authored
Mar 10, 2022
by
wzy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 仓库管理-街道
parent
9e49add3
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
7 deletions
+31
-7
stockSellStorage.ts
src/locales/en-US/stockSellStorage.ts
+1
-0
stockSellStorage.ts
src/locales/ko-KR/stockSellStorage.ts
+1
-0
stockSellStorage.ts
src/locales/zh-CN/stockSellStorage.ts
+1
-0
productModal.tsx
src/pages/commodity/products/productModal.tsx
+8
-6
index.ts
...torage/warehouse/components/WarehouseForm/schema/index.ts
+20
-1
No files found.
src/locales/en-US/stockSellStorage.ts
View file @
67fbfc62
...
...
@@ -75,6 +75,7 @@ export default {
'stockSellStorage.sheng'
:
'- Province -'
,
'stockSellStorage.shi1'
:
'- City -'
,
'stockSellStorage.xianqu'
:
'- County/District -'
,
'stockSellStorage.jiedao'
:
'- Street -'
,
'stockSellStorage.qingshuruxiangxidizhi'
:
'Please enter the detailed address (up to 50 characters, 25 Chinese characters)'
,
'stockSellStorage.cangkufuzhairen'
:
'warehouse manager'
,
'stockSellStorage.lianxidianhua'
:
'Contact number'
,
...
...
src/locales/ko-KR/stockSellStorage.ts
View file @
67fbfc62
...
...
@@ -75,6 +75,7 @@ export default {
'stockSellStorage.sheng'
:
'- 지방 -'
,
'stockSellStorage.shi1'
:
'- 도시 -'
,
'stockSellStorage.xianqu'
:
'- 카운티/지구 -'
,
'stockSellStorage.jiedao'
:
'- 거리 -'
,
'stockSellStorage.qingshuruxiangxidizhi'
:
'상세 주소를 입력하십시오(최대 50자, 25자).'
,
'stockSellStorage.cangkufuzhairen'
:
'창고 담당자'
,
'stockSellStorage.lianxidianhua'
:
'연락처'
,
...
...
src/locales/zh-CN/stockSellStorage.ts
View file @
67fbfc62
...
...
@@ -75,6 +75,7 @@ export default {
'stockSellStorage.sheng'
:
'- 省 -'
,
'stockSellStorage.shi1'
:
'- 市 -'
,
'stockSellStorage.xianqu'
:
'- 县 / 区 -'
,
'stockSellStorage.jiedao'
:
'- 街道 -'
,
'stockSellStorage.qingshuruxiangxidizhi'
:
'请输入详细地址(最长50个字符,25个汉字)'
,
'stockSellStorage.cangkufuzhairen'
:
'仓库负责人'
,
'stockSellStorage.lianxidianhua'
:
'联系电话'
,
...
...
src/pages/commodity/products/productModal.tsx
View file @
67fbfc62
...
...
@@ -53,19 +53,21 @@ export const newSchema = (key: string) => ({
priceType
:
{
type
:
'string'
,
enum
:
[
// {
// label: '所有',
// value: '',
// },
{
label
:
getIntl
().
formatMessage
({
id
:
'commodity.checkProduct.priceType.1'
,
id
:
'commodity.products.schema.fastSchema.priceTypeList.1'
,
}),
value
:
''
,
},
{
label
:
getIntl
().
formatMessage
({
id
:
'commodity.products.schema.fastSchema.priceTypeList.2'
,
}),
value
:
1
,
},
{
label
:
getIntl
().
formatMessage
({
id
:
'commodity.
checkProduct.priceType.2
'
,
id
:
'commodity.
products.schema.fastSchema.priceTypeList.3
'
,
}),
value
:
2
,
},
...
...
src/pages/transaction/stockSellStorage/warehouse/components/WarehouseForm/schema/index.ts
View file @
67fbfc62
...
...
@@ -48,7 +48,7 @@ export const warehouseDetailSchema: ISchema = {
grid
:
true
,
full
:
true
,
autoRow
:
true
,
columns
:
3
,
columns
:
4
,
},
properties
:
{
provinceId
:
{
...
...
@@ -95,6 +95,25 @@ export const warehouseDetailSchema: ISchema = {
'x-component-props'
:
{
placeholder
:
intl
.
formatMessage
({
id
:
'stockSellStorage.xianqu'
}),
},
'x-linkages'
:
[
{
type
:
'value:linkage'
,
condition
:
'{{!!$value}}'
,
origin
:
'areaId'
,
target
:
'streetId'
,
},
],
'x-rules'
:
[{
required
:
true
,
message
:
intl
.
formatMessage
({
id
:
'common.text.pleaseSelect'
})
}]
},
streetId
:
{
type
:
'string'
,
enum
:
[],
'x-component-props'
:
{
placeholder
:
intl
.
formatMessage
({
id
:
'stockSellStorage.jiedao'
}),
},
'x-rules'
:
[{
required
:
true
,
message
:
intl
.
formatMessage
({
id
:
'common.text.pleaseSelect'
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment