*** xapiens has quit IRC | 00:19 | |
*** aguerra has quit IRC | 01:05 | |
Not-be5d | [IDEMPIERE] carlosruiz_globalqss updated IDEMPIERE-3077 status set to "Closed" | 02:06 |
---|---|---|
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3077 | 02:06 |
Not-be5d | [IDEMPIERE] carlosruiz_globalqss updated IDEMPIERE-3083 status set to "Closed" | 02:06 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3083 | 02:07 |
Not-be5d | [IDEMPIERE] carlosruiz_globalqss updated IDEMPIERE-2990 status set to "Closed" | 02:07 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2990 | 02:07 |
Not-be5d | [IDEMPIERE] carlosruiz_globalqss updated IDEMPIERE-3080 status set to "Closed" | 02:07 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3080 | 02:07 |
Not-be5d | [IDEMPIERE] carlosruiz_globalqss updated IDEMPIERE-3058 status set to "Closed" | 02:07 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3058 | 02:07 |
Not-be5d | [IDEMPIERE] carlosruiz_globalqss updated IDEMPIERE-3071 status set to "Closed" | 02:07 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3071 | 02:07 |
*** CarlosRuiz has quit IRC | 03:06 | |
Not-be5d | [IDEMPIERE] rgriepsma created IDEMPIERE-3119 Password rules and forgot password do not mix | 04:03 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3119 | 04:03 |
*** a42niem has joined #idempiere | 05:17 | |
*** nmicoud has joined #idempiere | 06:11 | |
*** KermitTheFragger has joined #idempiere | 07:15 | |
Not-be5d | [IDEMPIERE] pshepetko updated IDEMPIERE-3094 | 07:51 |
Not-be5d | [IDEMPIERE] hieplq, I added manually your patch and checked it. I had this bug again because I think you didn't clean recordSelectedData which contains old items. | 07:51 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3094 | 07:51 |
*** quangtv has joined #idempiere | 09:58 | |
*** testing has joined #idempiere | 11:02 | |
*** testing is now known as Guest96824 | 11:02 | |
Guest96824 | hello | 11:03 |
*** Guest96824 has quit IRC | 11:04 | |
Not-be5d | [IDEMPIERE] hagi updated IDEMPIERE-2347 | 11:04 |
Not-be5d | [IDEMPIERE] Hi, I am Hideaki Hagiwara in Japan. I found that MMatchInv class have reverse() method and use IsPosted() like a MMatchPO.reverse() method And MatchInvReverse and MatchPOReverse that are process classes use isPosted() to check before perform reverse() method. I made patch. Please check IDEMPIERE-2347_2.patch | 11:04 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2347 | 11:04 |
*** CarlosRuiz has joined #idempiere | 11:10 | |
Not-be5d | [IDEMPIERE] hagi updated IDEMPIERE-2347 | 11:23 |
Not-be5d | [IDEMPIERE] Sorry, I can not attach a patch. but very little patch. diff -r 8dabfdd1306d -r d18612e42751 org.adempiere.base/src/org/adempiere/process/MatchInvReverse.java --- a/org.adempiere.base/src/org/adempiere/process/MatchInvReverse.java Mon May 30 15:35:25 2016 +0900 +++ b/org.adempiere.base/src/org/adempiere/process/MatchInvReverse.java Thu Jun 02 19:58:37 2016 +0900 @@ -48,7 +48,7 @@ if (inv.get_ID() != | 11:23 |
Not-be5d | p_M_MatchInv_ID) throw new AdempiereException("@NotFound@ @M_MatchInv_ID@ " + p_M_MatchInv_ID); - if (inv.isPosted()) + if (inv.isProcessed()) { Timestamp reversalDate = Env.getContextAsDate(getCtx(), "#Date"); if (reversalDate == null) { diff -r 8dabfdd1306d -r d18612e42751 org.adempiere.base/src/org/adempiere/process/MatchPOReverse.java --- a/org.adempiere.base/src/org/adempiere/process/MatchPOReverse.java Mon May | 11:23 |
Not-be5d | 30 15:35:25 2016 +0900 +++ b/org.adempiere.base/src/org/adempiere/process/MatchPOReverse.java Thu Jun 02 19:58:37 2016 +0900 @@ -46,7 +46,7 @@ MMatchPO po = new MMatchPO (getCtx(), p_M_MatchPO_ID, get_TrxName()); if (po.get_ID() != p_M_MatchPO_ID) throw new AdempiereException("@NotFound@ @M_MatchPO_ID@ " + p_M_MatchPO_ID); - if (po.isPosted()) + if (po.isProcessed()) { Timestamp reversalDate = | 11:23 |
Not-be5d | Env.getContextAsDate(getCtx(), "#Date"); if (reversalDate == null) { diff -r 8dabfdd1306d -r d18612e42751 org.adempiere.base/src/org/compiere/model/MMatchInv.java --- a/org.adempiere.base/src/org/compiere/model/MMatchInv.java Mon May 30 15:35:25 2016 +0900 +++ b/org.adempiere.base/src/org/compiere/model/MMatchInv.java Thu Jun 02 19:58:37 2016 +0900 @@ -366,7 +367,7 @@ */ public boolean reverse(Timestamp reversalDate) | 11:23 |
Not-be5d | { - if (this.isPosted() && this.getReversal_ID() == 0) + if (this.isProcessed() && this.getReversal_ID() == 0) { MMatchInv reversal = new MMatchInv (getCtx(), 0, get_TrxName()); PO.copyValues(this, reversal); | 11:23 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2347 | 11:23 |
*** aguerra has joined #idempiere | 11:36 | |
Not-be5d | [IDEMPIERE] hagi created IDEMPIERE-3120 Cannot reverse MatchInv-Doc When CLIENT_ACCOUNTING_DISABLED | 11:40 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3120 | 11:40 |
Not-be5d | [IDEMPIERE] hagi updated IDEMPIERE-2347 | 11:43 |
Not-be5d | [IDEMPIERE] Sorry, I can not attach a Patch. So, I created new ticket. IDEMPIERE-3120 | 11:43 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2347 | 11:43 |
*** aguerra has quit IRC | 12:42 | |
*** CarlosRuiz has quit IRC | 13:01 | |
*** KermitTheFragger has quit IRC | 14:28 | |
*** CarlosRuiz has joined #idempiere | 14:32 | |
Not-be5d | [IDEMPIERE] hagi updated IDEMPIERE-3120 Attachment set to "IDEMPIERE-3120.patch" | 14:41 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3120 | 14:41 |
Not-be5d | [IDEMPIERE] hagi updated IDEMPIERE-3120 Attachment set to "None" | 14:41 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3120 | 14:41 |
Not-be5d | [IDEMPIERE] hagi updated IDEMPIERE-3120 description set to "Hi,all. I am Hideaki Hagiwara in Japan. I think same problem IDEMPIERE-2347. I found that MMatchInv class have reverse() method and use IsPosted() like a MMatchPO.reverse() method And MatchInvReverse and MatchPOReverse that are process classes use isPosted() to check before perform reverse() method. But I consider that this problem is not type bug. Order of | 14:47 |
Not-be5d | posting is important for some Cost Accounting. I made patch. Please check it. " | 14:47 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3120 | 14:47 |
Not-be5d | [IDEMPIERE] hagi updated IDEMPIERE-3120 description set to "Hi,all. I am Hideaki Hagiwara in Japan. I think same problem IDEMPIERE-2347. I found that MMatchInv class have reverse() method and use IsPosted() like a MMatchPO.reverse() method And MatchInvReverse and MatchPOReverse that are process classes use isPosted() to check before perform reverse() method. But I consider that this problem is not type bug. Order of | 14:48 |
Not-be5d | posting is important for some Cost Accounting method. I made patch. Please check it. " | 14:48 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3120 | 14:49 |
Not-be5d | [IDEMPIERE] hagi updated IDEMPIERE-3120 description set to "Hi,all. I am Hideaki Hagiwara in Japan. I think same problem IDEMPIERE-2347. I found that MMatchInv class have reverse() method and use IsPosted() like a MMatchPO.reverse() method And MatchInvReverse and MatchPOReverse that are process classes use isPosted() to check before perform reverse() method. But I consider that this problem is not typo bug. Order of | 14:50 |
Not-be5d | posting is important for some Cost Accounting method. I made patch. Please check it. " | 14:50 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3120 | 14:50 |
Not-be5d | [IDEMPIERE] deepak updated IDEMPIERE-2999 Attachment set to "IDEMPIERE-2999_DevelopmentBranch.patch" | 15:34 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2999 | 15:34 |
Not-be5d | [IDEMPIERE] deepak updated IDEMPIERE-2999 | 15:35 |
Not-be5d | [IDEMPIERE] Hello [~hieplq], I added patch IDEMPIERE-2999_DevelopmentBranch.patch from development branch. Please note this is updated patch with some enhancement and issue fix. With Regards, --Deepak Pansheriya | 15:35 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2999 | 15:35 |
Not-be5d | [IDEMPIERE] deepak updated IDEMPIERE-2999 assignee set to "hieplq" | 15:36 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2999 | 15:36 |
Not-be5d | [IDEMPIERE] deepak updated IDEMPIERE-2999 | 15:45 |
Not-be5d | [IDEMPIERE] Tested scenarios 1. Created non instance Attributes with following name Date, Date Time, Time, Integer Attribute Value Type as Reference and reference is same as attribute name. Create Attribute with name Vendor with Attribute Value Type as Reference and reference is Table. Select Refernce key as "C_BPartner Vendors" 2. Add all above attribute on TShirt attribute set 3. go to product record TShirt-GL and | 15:45 |
Not-be5d | click on attribute instance button. you should able to see all above attributes. Select value for each one and save, Attribute description must be shown properly formatted. Test above scenario with instance attribute too. | 15:45 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2999 | 15:45 |
Not-be5d | [IDEMPIERE] deepak updated IDEMPIERE-2999 | 15:46 |
Not-be5d | [IDEMPIERE] Tested scenarios 1. Created non instance Attributes with following name Date, Date Time, Time, Integer Attribute Value Type as Reference and reference is same as attribute name. Create Attribute with name Vendor with Attribute Value Type as Reference and reference is Table. Select Refernce key as "C_BPartner Vendors" 2. Add all above attribute on TShirt attribute set 3. go to product record TShirt-GL and | 15:46 |
Not-be5d | click on attribute instance button. you should able to see all above attributes. Select value for each one and save, Attribute description must be shown properly formatted. 4. Edit attribute instance again and you should able to see all entered value. 5. Change value on each attribute and save it. 6. ASI description should be changed Test above scenario with instance attribute too. | 15:46 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-2999 | 15:46 |
*** nmicoud has quit IRC | 16:07 | |
Not-be5d | [IDEMPIERE] d_ruiz updated IDEMPIERE-3118 Attachment set to "LogoBug.png" | 18:41 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3118 | 18:41 |
Not-be5d | [IDEMPIERE] d_ruiz updated IDEMPIERE-3118 Attachment set to "BigImageOrgInfo.png" | 18:43 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3118 | 18:43 |
*** CarlosRuiz has quit IRC | 18:44 | |
Not-be5d | [IDEMPIERE] d_ruiz updated IDEMPIERE-3118 | 18:44 |
Not-be5d | [IDEMPIERE] Hi, really nice feature. Testing it in the demo site - I saw that the image icon in org info is really small when there's no image. You can barely see it. !LogoBug.png|thumbnail! And when the image is taken, I think it is shown too big (not like in the user window) !BigImageOrgInfo.png|thumbnail! Kind Regards, Diego Ruiz | 18:44 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3118 | 18:44 |
Not-be5d | [IDEMPIERE] d_ruiz updated IDEMPIERE-3118 status set to "Reopened" -resolution set to "None" | 18:44 |
Not-be5d | [IDEMPIERE] http://idempiere.atlassian.net/browse/IDEMPIERE-3118 | 18:44 |
*** a42niem has quit IRC | 20:28 | |
*** CarlosRuiz has joined #idempiere | 22:54 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!