Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
drp
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Administrator
drp
Commits
f2a829ce
Commit
f2a829ce
authored
Mar 18, 2015
by
reedmi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决出库单与入库单的冲突问题
parent
2c69c296
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
138 additions
and
94 deletions
+138
-94
src/main/webapp/drp/app/controller/projects/invoices/StockInInvoiceController.js
.../controller/projects/invoices/StockInInvoiceController.js
+47
-43
src/main/webapp/drp/app/controller/projects/invoices/StockOutInvoiceController.js
...controller/projects/invoices/StockOutInvoiceController.js
+46
-41
src/main/webapp/drp/app/view/projects/invoices/StockOutInvoiceView.js
...app/drp/app/view/projects/invoices/StockOutInvoiceView.js
+1
-10
src/main/webapp/drp/app/view/resources/StockInWareWin.js
src/main/webapp/drp/app/view/resources/StockInWareWin.js
+22
-0
src/main/webapp/drp/app/view/resources/StockOutWareWin.js
src/main/webapp/drp/app/view/resources/StockOutWareWin.js
+22
-0
No files found.
src/main/webapp/drp/app/controller/projects/invoices/StockInInvoiceController.js
View file @
f2a829ce
This diff is collapsed.
Click to expand it.
src/main/webapp/drp/app/controller/projects/invoices/StockOutInvoiceController.js
View file @
f2a829ce
This diff is collapsed.
Click to expand it.
src/main/webapp/drp/app/view/projects/invoices/StockOutInvoiceView.js
View file @
f2a829ce
...
...
@@ -18,7 +18,6 @@ Ext.define('drp.app.view.projects.invoices.StockOutInvoiceView', {
listeners
:
{
selectionchange
:
function
(
sm
,
selections
)
{
me
.
down
(
'
#deleteOutInvoice_btn
'
).
setDisabled
(
selections
.
length
==
0
);
me
.
down
(
'
#submitOutInvoice_btn
'
).
setDisabled
(
selections
.
length
==
0
);
}
}
});
...
...
@@ -190,15 +189,7 @@ Ext.define('drp.app.view.projects.invoices.StockOutInvoiceView', {
itemId
:
'
deleteOutInvoice_btn
'
,
disabled
:
true
,
text
:
'
删除
'
}
/*, {
itemId : 'submitOutInvoice_btn',
disabled : true,
text : '提交审核',
icon : 'resources/images/icons/database_save.png',
menu : {
items : menuItems
}
}*/
]
}]
}]
}]
...
...
src/main/webapp/drp/app/view/resources/StockInWareWin.js
0 → 100644
View file @
f2a829ce
Ext
.
define
(
'
drp.app.view.resources.StockInWareWin
'
,
{
extend
:
'
Ext.window.Window
'
,
alias
:
'
widget.stockinwarewin
'
,
height
:
520
,
width
:
920
,
constrain
:
true
,
modal
:
true
,
closeAction
:
'
hide
'
,
resizable
:
false
,
layout
:
{
type
:
'
fit
'
},
items
:
[{
xtype
:
'
panel
'
,
layout
:
'
fit
'
,
items
:[{
xtype
:
'
wareview
'
,
title
:
''
,
closable
:
false
}]
}]
});
\ No newline at end of file
src/main/webapp/drp/app/view/resources/StockOutWareWin.js
0 → 100644
View file @
f2a829ce
Ext
.
define
(
'
drp.app.view.resources.StockOutWareWin
'
,
{
extend
:
'
Ext.window.Window
'
,
alias
:
'
widget.stockoutwarewin
'
,
height
:
520
,
width
:
920
,
constrain
:
true
,
modal
:
true
,
closeAction
:
'
hide
'
,
resizable
:
false
,
layout
:
{
type
:
'
fit
'
},
items
:
[{
xtype
:
'
panel
'
,
layout
:
'
fit
'
,
items
:[{
xtype
:
'
wareview
'
,
title
:
''
,
closable
:
false
}]
}]
});
\ No newline at end of file
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