Example #1
0
	def from_compressed(self, data, docname):
		"""
		Expand called from client
		"""
		from webnotes.model.utils import expand
		self.docs = expand(data)
		self.objectify(docname)
Example #2
0
    def from_compressed(self, data, docname):
        """
			Expand called from client
		"""
        from webnotes.model.utils import expand
        self.docs = expand(data)
        self.objectify(docname)
Example #3
0
 def from_compressed(self, data, docname):
     from webnotes.model.utils import expand
     self.docs = expand(data)
     self.set_doclist(self.docs)
Example #4
0
	def from_compressed(self, data, docname):
		from webnotes.model.utils import expand
		self.set_doclist(expand(data))